create-kumiko-app 0.4.167 → 0.4.168
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 +45 -1
- 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": 61,
|
|
4
4
|
"features": [
|
|
5
5
|
{
|
|
6
6
|
"name": "admin-shell",
|
|
@@ -1437,6 +1437,50 @@
|
|
|
1437
1437
|
"recommended": false
|
|
1438
1438
|
}
|
|
1439
1439
|
},
|
|
1440
|
+
{
|
|
1441
|
+
"name": "notes-history",
|
|
1442
|
+
"description": "Generic, host-agnostic, append-only note history for any entity. Owns one event-sourced entity, `note-entry` (`read_note_entries`), keyed by (entityType, entityId) — so attaching notes adds NO column to the host entity and needs no relational pivot or JOIN. Provides a `create` write-handler (author stamped server-side from the caller, never client-supplied) and a `list` query filterable on entityId. Deliberately append-only: no update or delete handler is registered — a correction is a new entry, not an edit, so who-said-what-when stays reconstructable. Every path uses one access rule — adopt the host's model with createNotesHistoryFeature({ access: { openToAll: true } }) or pin roles with createNotesHistoryFeature({ roles }).",
|
|
1443
|
+
"toggleableDefault": null,
|
|
1444
|
+
"requires": [],
|
|
1445
|
+
"optionalRequires": [],
|
|
1446
|
+
"configReads": [],
|
|
1447
|
+
"exposesApis": [],
|
|
1448
|
+
"usesApis": [],
|
|
1449
|
+
"extensionsUsed": [],
|
|
1450
|
+
"configKeys": [],
|
|
1451
|
+
"secrets": [],
|
|
1452
|
+
"writeHandlers": [
|
|
1453
|
+
"notes-history:write:add-note"
|
|
1454
|
+
],
|
|
1455
|
+
"uiHints": {
|
|
1456
|
+
"displayLabel": "Notes",
|
|
1457
|
+
"category": "data",
|
|
1458
|
+
"recommended": false
|
|
1459
|
+
}
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
"name": "notes-history-user-data",
|
|
1463
|
+
"description": "GDPR (Art. 20 export / Art. 17 erasure) coverage for the `notes-history` feature's `note-entry` entity. Mounts the EXT_USER_DATA export hook so a user's authored notes are included in the user-data export bundle; the delete hook is a deliberate no-op because `body` is annotated `userOwned` on the entity — erasure runs via crypto-shredding (destroying the author's subject key) instead of a physical delete, keeping the append-only note history intact for entities other co-authors still read. Kept separate from `notes-history` so notes consumers without the user-data-rights pipeline don't pull a hard dependency — requires `user-data-rights`, optionalRequires `notes-history`.",
|
|
1464
|
+
"toggleableDefault": null,
|
|
1465
|
+
"requires": [
|
|
1466
|
+
"user-data-rights"
|
|
1467
|
+
],
|
|
1468
|
+
"optionalRequires": [
|
|
1469
|
+
"notes-history"
|
|
1470
|
+
],
|
|
1471
|
+
"configReads": [],
|
|
1472
|
+
"exposesApis": [],
|
|
1473
|
+
"usesApis": [],
|
|
1474
|
+
"extensionsUsed": [
|
|
1475
|
+
{
|
|
1476
|
+
"extensionName": "userData",
|
|
1477
|
+
"entityName": "note-entry"
|
|
1478
|
+
}
|
|
1479
|
+
],
|
|
1480
|
+
"configKeys": [],
|
|
1481
|
+
"secrets": [],
|
|
1482
|
+
"writeHandlers": []
|
|
1483
|
+
},
|
|
1440
1484
|
{
|
|
1441
1485
|
"name": "personal-access-tokens",
|
|
1442
1486
|
"description": "Long-lived, revocable Personal Access Tokens for headless HTTP-API access. Stores SHA-256 token hashes in the `store_api_tokens` direct-write table; the plaintext is returned once at creation. `create`/`revoke`/`mine` manage a user's own tokens and `available-scopes` lists the app-declared scope catalog. Bearer tokens carrying the PAT prefix are resolved before jwt.verify (roles resolved live, granted scopes enforced fail-closed at the API boundary) — registered as an auth-foundation tokenVerifier provider, resolved generically by the middleware. Pass { toggleable: { default: false } } to tier-gate the whole feature.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-kumiko-app",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.168",
|
|
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,9 +30,9 @@
|
|
|
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.
|
|
35
|
-
"@cosmicdrift/kumiko-server-runtime": "0.
|
|
33
|
+
"@cosmicdrift/kumiko-dev-server": "0.174.0",
|
|
34
|
+
"@cosmicdrift/kumiko-framework": "0.174.0",
|
|
35
|
+
"@cosmicdrift/kumiko-server-runtime": "0.174.0",
|
|
36
36
|
"@inquirer/core": "^10.0.0",
|
|
37
37
|
"@inquirer/prompts": "^7.4.0"
|
|
38
38
|
},
|