create-kumiko-app 0.4.57 → 0.4.59
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.
- package/feature-manifest.json +33 -2
- package/package.json +3 -3
package/feature-manifest.json
CHANGED
|
@@ -1775,14 +1775,21 @@
|
|
|
1775
1775
|
},
|
|
1776
1776
|
{
|
|
1777
1777
|
"name": "user-data-rights-defaults",
|
|
1778
|
-
"description": "Registers ready-made `EXT_USER_DATA` export and delete hooks for the
|
|
1778
|
+
"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.",
|
|
1779
1779
|
"toggleableDefault": null,
|
|
1780
1780
|
"requires": [
|
|
1781
1781
|
"user",
|
|
1782
1782
|
"files",
|
|
1783
1783
|
"user-data-rights"
|
|
1784
1784
|
],
|
|
1785
|
-
"optionalRequires": [
|
|
1785
|
+
"optionalRequires": [
|
|
1786
|
+
"sessions",
|
|
1787
|
+
"personal-access-tokens",
|
|
1788
|
+
"channel-in-app",
|
|
1789
|
+
"tenant",
|
|
1790
|
+
"delivery",
|
|
1791
|
+
"config"
|
|
1792
|
+
],
|
|
1786
1793
|
"configReads": [],
|
|
1787
1794
|
"exposesApis": [],
|
|
1788
1795
|
"usesApis": [],
|
|
@@ -1794,6 +1801,30 @@
|
|
|
1794
1801
|
{
|
|
1795
1802
|
"extensionName": "userData",
|
|
1796
1803
|
"entityName": "fileRef"
|
|
1804
|
+
},
|
|
1805
|
+
{
|
|
1806
|
+
"extensionName": "userData",
|
|
1807
|
+
"entityName": "user-session"
|
|
1808
|
+
},
|
|
1809
|
+
{
|
|
1810
|
+
"extensionName": "userData",
|
|
1811
|
+
"entityName": "api-token"
|
|
1812
|
+
},
|
|
1813
|
+
{
|
|
1814
|
+
"extensionName": "userData",
|
|
1815
|
+
"entityName": "in-app-message"
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
"extensionName": "userData",
|
|
1819
|
+
"entityName": "tenant-invitation"
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
"extensionName": "userData",
|
|
1823
|
+
"entityName": "notification-preference"
|
|
1824
|
+
},
|
|
1825
|
+
{
|
|
1826
|
+
"extensionName": "userData",
|
|
1827
|
+
"entityName": "config-value"
|
|
1797
1828
|
}
|
|
1798
1829
|
],
|
|
1799
1830
|
"configKeys": [],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-kumiko-app",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.59",
|
|
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.
|
|
34
|
-
"@cosmicdrift/kumiko-framework": "0.
|
|
33
|
+
"@cosmicdrift/kumiko-dev-server": "0.116.1",
|
|
34
|
+
"@cosmicdrift/kumiko-framework": "0.116.1",
|
|
35
35
|
"@inquirer/core": "^10.0.0",
|
|
36
36
|
"@inquirer/prompts": "^7.4.0"
|
|
37
37
|
},
|