create-kumiko-app 0.4.62 → 0.4.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1795,7 +1795,7 @@
1795
1795
  },
1796
1796
  {
1797
1797
  "name": "user-data-rights-defaults",
1798
- "description": "Registers ready-made `EXT_USER_DATA` export and delete hooks for the bundled entities that hold per-user data: `user` (delete strategy sets email to `deleted-<id>@anonymized.invalid`, nulls `passwordHash`, sets status to `Deleted`; anonymize strategy sets email to `anonymized-<id>@anonymized.invalid` without touching `passwordHash`), `fileRef` (delete removes both the DB row and the storage binary), plus — gated on the source feature being mounted — `user-session` (ip/userAgent, hard-delete), `api-token` (hard-delete = revoke), `in-app-message` (hard-delete), `tenant-invitation` (invitee email forgotten/pseudonymized, inviter link severed), `notification-preference` and user-scoped `config-value` (purged via the forget verb). Mount this alongside `user-data-rights` for standard GDPR compliance; omit it only if your app needs custom anonymization logic for these entities.",
1798
+ "description": "Registers ready-made `EXT_USER_DATA` export and delete hooks for the bundled entities that hold per-user data: `user` (delete strategy sets email to `deleted-<id>@anonymized.invalid`, nulls `passwordHash`, sets status to `Deleted`; anonymize strategy sets email to `anonymized-<id>@anonymized.invalid` without touching `passwordHash`), `fileRef` (delete removes both the DB row and the storage binary), plus — gated on the source feature being mounted — `user-session` (ip/userAgent, hard-delete), `api-token` (hard-delete = revoke), `in-app-message` (hard-delete), `tenant-invitation` (invitee email forgotten/pseudonymized, inviter link severed), `notification-preference` and user-scoped `config-value` (purged via the forget verb), plus export-only hooks for the events-only aggregates `delivery-attempt` (recipientAddress) and `job-run` (payload) whose erasure runs via crypto-shredding. Mount this alongside `user-data-rights` for standard GDPR compliance; omit it only if your app needs custom anonymization logic for these entities.",
1799
1799
  "toggleableDefault": null,
1800
1800
  "requires": [
1801
1801
  "user",
@@ -1808,7 +1808,8 @@
1808
1808
  "channel-in-app",
1809
1809
  "tenant",
1810
1810
  "delivery",
1811
- "config"
1811
+ "config",
1812
+ "jobs"
1812
1813
  ],
1813
1814
  "configReads": [],
1814
1815
  "exposesApis": [],
@@ -1845,6 +1846,14 @@
1845
1846
  {
1846
1847
  "extensionName": "userData",
1847
1848
  "entityName": "config-value"
1849
+ },
1850
+ {
1851
+ "extensionName": "userData",
1852
+ "entityName": "delivery-attempt"
1853
+ },
1854
+ {
1855
+ "extensionName": "userData",
1856
+ "entityName": "job-run"
1848
1857
  }
1849
1858
  ],
1850
1859
  "configKeys": [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kumiko-app",
3
- "version": "0.4.62",
3
+ "version": "0.4.64",
4
4
  "description": "`bun create kumiko-app <name>` — scaffold a new Kumiko app with an interactive feature picker.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -30,8 +30,8 @@
30
30
  "vendor:manifest": "bun run scripts/vendor-manifest.ts"
31
31
  },
32
32
  "dependencies": {
33
- "@cosmicdrift/kumiko-dev-server": "0.119.0",
34
- "@cosmicdrift/kumiko-framework": "0.119.0",
33
+ "@cosmicdrift/kumiko-dev-server": "0.121.0",
34
+ "@cosmicdrift/kumiko-framework": "0.121.0",
35
35
  "@inquirer/core": "^10.0.0",
36
36
  "@inquirer/prompts": "^7.4.0"
37
37
  },