create-kumiko-app 0.4.244 → 0.4.246
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 +38 -3
- package/package.json +4 -4
package/feature-manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"source": "samples/apps/use-all-bundled APP_FEATURES (composeFeatures includeBundled + signup)",
|
|
3
|
-
"featureCount":
|
|
3
|
+
"featureCount": 69,
|
|
4
4
|
"features": [
|
|
5
5
|
{
|
|
6
6
|
"name": "admin-shell",
|
|
@@ -31,7 +31,9 @@
|
|
|
31
31
|
"name": "audit",
|
|
32
32
|
"description": "Exposes the framework's event store as a paginated, filterable audit log via the `audit:query:list` handler (accessible to `Admin` and `SystemAdmin` roles). No separate table or projection — the event store is the audit trail by construction: every entity write already records who, when, what entity, and the event payload with PII stripped. Filter by `aggregateType`, `aggregateId`, `eventType`, `userId`, or time range.",
|
|
33
33
|
"toggleableDefault": null,
|
|
34
|
-
"requires": [
|
|
34
|
+
"requires": [
|
|
35
|
+
"tenant"
|
|
36
|
+
],
|
|
35
37
|
"optionalRequires": [],
|
|
36
38
|
"configReads": [],
|
|
37
39
|
"exposesApis": [],
|
|
@@ -921,6 +923,38 @@
|
|
|
921
923
|
"recommended": false
|
|
922
924
|
}
|
|
923
925
|
},
|
|
926
|
+
{
|
|
927
|
+
"name": "files-tenant-data",
|
|
928
|
+
"description": "GDPR coverage for the `files` feature's `fileRef` entity: tenant-destroy row purge (EXT_TENANT_DATA) and full storage-prefix binary wipe (EXT_STORAGE_PROVIDER), plus a manual backfill/GC job that sweeps derivatives orphaned by a forget/tenant-destroy that ran before #2461 wired binary cleanup into those flows. Requires `tenant-lifecycle`, optionalRequires `files`.",
|
|
929
|
+
"toggleableDefault": null,
|
|
930
|
+
"requires": [
|
|
931
|
+
"tenant-lifecycle"
|
|
932
|
+
],
|
|
933
|
+
"optionalRequires": [
|
|
934
|
+
"files"
|
|
935
|
+
],
|
|
936
|
+
"configReads": [],
|
|
937
|
+
"exposesApis": [],
|
|
938
|
+
"usesApis": [],
|
|
939
|
+
"extensionsUsed": [
|
|
940
|
+
{
|
|
941
|
+
"extensionName": "tenantData",
|
|
942
|
+
"entityName": "fileRef"
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"extensionName": "storageProvider",
|
|
946
|
+
"entityName": "fileRef"
|
|
947
|
+
}
|
|
948
|
+
],
|
|
949
|
+
"configKeys": [],
|
|
950
|
+
"secrets": [],
|
|
951
|
+
"writeHandlers": [],
|
|
952
|
+
"uiHints": {
|
|
953
|
+
"displayLabel": "Files · Tenant-Destroy & Derivative GC",
|
|
954
|
+
"category": "compliance",
|
|
955
|
+
"recommended": false
|
|
956
|
+
}
|
|
957
|
+
},
|
|
924
958
|
{
|
|
925
959
|
"name": "folders",
|
|
926
960
|
"description": "Generic, host-agnostic hierarchical folders for any entity. Owns two event-sourced entities — the per-tenant `folder` tree (`read_folders`, self-referential via parentId) and SINGLE-membership `folder-assignment` rows keyed by (entityType, entityId) (`read_folder_assignments`) — so filing an entity adds NO column to the host and needs no relational pivot or JOIN. The folder catalog uses the generic entity handlers (create, update [= rename, optimistic-locked], delete, list, detail); set-folder puts/moves an entity into a folder (one folder per entity) and clear-folder unfiles it (both idempotent). Read which folder an entity is in, or which entities a folder holds, by listing `folder-assignment` filtered on `entityId` or `folderId`. Every path uses one access rule — adopt the host's model with createFoldersFeature({ access: { openToAll: true } }) or pin roles. Pass { toggleable: { default: false } } to make the whole feature tier-gatable via the tier-engine (no host hook).",
|
|
@@ -2468,7 +2502,8 @@
|
|
|
2468
2502
|
"computed": false,
|
|
2469
2503
|
"options": [
|
|
2470
2504
|
"de",
|
|
2471
|
-
"en"
|
|
2505
|
+
"en",
|
|
2506
|
+
"es"
|
|
2472
2507
|
],
|
|
2473
2508
|
"bounds": null,
|
|
2474
2509
|
"pattern": null,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-kumiko-app",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.246",
|
|
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>",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@cosmicdrift/kumiko-dev-server": "0.
|
|
31
|
-
"@cosmicdrift/kumiko-framework": "0.
|
|
32
|
-
"@cosmicdrift/kumiko-server-runtime": "0.
|
|
30
|
+
"@cosmicdrift/kumiko-dev-server": "0.223.0",
|
|
31
|
+
"@cosmicdrift/kumiko-framework": "0.223.0",
|
|
32
|
+
"@cosmicdrift/kumiko-server-runtime": "0.223.0",
|
|
33
33
|
"@inquirer/core": "^10.0.0",
|
|
34
34
|
"@inquirer/prompts": "^7.4.0"
|
|
35
35
|
},
|