create-kumiko-app 0.4.9 → 0.4.11

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.
@@ -1295,7 +1295,7 @@
1295
1295
  },
1296
1296
  {
1297
1297
  "name": "tags",
1298
- "description": "Generic, host-agnostic tagging for any entity. Owns two event-sourced entities — the per-tenant `tag` catalog (`read_tags`) and `tag-assignment` join rows keyed by (entityType, entityId) (`read_tag_assignments`) — so tagging adds NO column to the host entity and needs no relational pivot or JOIN. Provides write-handlers `create-tag`, `assign-tag` (idempotent), `remove-tag` (idempotent) and list queries for the catalog and the assignments. Read which tags an entity has, or which entities carry a tag, by listing `tag-assignment` filtered on `entityId` or `tagId` and composing in the read-layer. Every path uses one access rule — adopt the host's model with createTagsFeature({ access: { openToAll: true } }) or pin roles with createTagsFeature({ roles }). Pass { toggleable: { default: false } } to make the whole feature tier-gatable via the tier-engine (no host hook).",
1298
+ "description": "Generic, host-agnostic tagging for any entity. Owns two event-sourced entities — the per-tenant `tag` catalog (`read_tags`) and `tag-assignment` join rows keyed by (entityType, entityId) (`read_tag_assignments`) — so tagging adds NO column to the host entity and needs no relational pivot or JOIN. Provides write-handlers `create-tag`, `rename-tag` (optimistic-locked), `assign-tag` (idempotent), `remove-tag` (idempotent) and list queries for the catalog and the assignments. Read which tags an entity has, or which entities carry a tag, by listing `tag-assignment` filtered on `entityId` or `tagId` and composing in the read-layer. Every path uses one access rule — adopt the host's model with createTagsFeature({ access: { openToAll: true } }) or pin roles with createTagsFeature({ roles }). Pass { toggleable: { default: false } } to make the whole feature tier-gatable via the tier-engine (no host hook).",
1299
1299
  "toggleableDefault": null,
1300
1300
  "requires": [],
1301
1301
  "optionalRequires": [],
@@ -1308,7 +1308,8 @@
1308
1308
  "writeHandlers": [
1309
1309
  "tags:write:assign-tag",
1310
1310
  "tags:write:create-tag",
1311
- "tags:write:remove-tag"
1311
+ "tags:write:remove-tag",
1312
+ "tags:write:rename-tag"
1312
1313
  ],
1313
1314
  "uiHints": {
1314
1315
  "displayLabel": "Tags",
@@ -1623,7 +1624,31 @@
1623
1624
  "sessions.revokeAllForUser"
1624
1625
  ],
1625
1626
  "extensionsUsed": [],
1626
- "configKeys": [],
1627
+ "configKeys": [
1628
+ {
1629
+ "key": "tenant-model",
1630
+ "qualifiedName": "user-data-rights:config:tenant-model",
1631
+ "type": "select",
1632
+ "scope": "system",
1633
+ "default": "multi-user",
1634
+ "encrypted": false,
1635
+ "computed": false,
1636
+ "options": [
1637
+ "single-user",
1638
+ "multi-user"
1639
+ ],
1640
+ "bounds": null,
1641
+ "pattern": null,
1642
+ "writeRoles": [
1643
+ "system"
1644
+ ],
1645
+ "readRoles": [
1646
+ "TenantAdmin",
1647
+ "Admin",
1648
+ "SystemAdmin"
1649
+ ]
1650
+ }
1651
+ ],
1627
1652
  "secrets": [],
1628
1653
  "writeHandlers": [
1629
1654
  "user-data-rights:write:cancel-deletion",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kumiko-app",
3
- "version": "0.4.9",
3
+ "version": "0.4.11",
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.81.1",
34
- "@cosmicdrift/kumiko-framework": "0.81.1",
33
+ "@cosmicdrift/kumiko-dev-server": "0.83.0",
34
+ "@cosmicdrift/kumiko-framework": "0.83.0",
35
35
  "@inquirer/prompts": "^7.4.0"
36
36
  },
37
37
  "publishConfig": {