feat: add full ZIP bundle export with sensitive data toggle (Closes #149) (#155)

This commit was merged in pull request #155.
This commit is contained in:
2026-04-09 20:23:52 +02:00
parent aee5040720
commit 27cb708a5f
5 changed files with 327 additions and 22 deletions
+4
View File
@@ -83,6 +83,10 @@ return [
['name' => 'export#fees', 'url' => '/api/v1/export/fees', 'verb' => 'GET'],
['name' => 'export#birthdays', 'url' => '/api/v1/export/birthdays', 'verb' => 'GET'],
// ── Full bundle export (Issue #149) ────────────────────────
['name' => 'export#bundle', 'url' => '/api/v1/export/bundle', 'verb' => 'GET'],
['name' => 'export#bundleSensitive', 'url' => '/api/v1/export/bundle/sensitive', 'verb' => 'POST'],
// ── Per-entity export (Issue #148) ─────────────────────────
['name' => 'export#entityTypes', 'url' => '/api/v1/export/entity-types', 'verb' => 'GET'],
['name' => 'export#entity', 'url' => '/api/v1/export/entity/{type}', 'verb' => 'GET'],