create-kumiko-app 0.4.79 → 0.4.80

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "source": "samples/apps/use-all-bundled APP_FEATURES (composeFeatures includeBundled)",
3
- "featureCount": 48,
3
+ "featureCount": 49,
4
4
  "features": [
5
5
  {
6
6
  "name": "admin-shell",
@@ -101,12 +101,20 @@
101
101
  "name": "billing-foundation",
102
102
  "description": "Plugin host for subscription billing — manages the `read_subscriptions` projection table and exposes 5 domain events (subscription created/updated/canceled, invoice paid/failed) appended by the foundation's own `billing-foundation:write:process-event` write-handler after provider plugins verify and normalize each webhook. Also ships `billing-foundation:write:create-checkout-session` and `billing-foundation:write:create-portal-session` write-handlers, a `billing-foundation:query:subscription:list` query handler, and a `createSubscriptionWebhookHandler` factory for the `/api/subscription/webhook/:providerName` route. Low-level building block — use `subscription-stripe` or `subscription-mollie` unless you are writing a new payment provider.",
103
103
  "toggleableDefault": null,
104
- "requires": [],
104
+ "requires": [
105
+ "tenant-lifecycle",
106
+ "compliance-profiles"
107
+ ],
105
108
  "optionalRequires": [],
106
109
  "configReads": [],
107
110
  "exposesApis": [],
108
111
  "usesApis": [],
109
- "extensionsUsed": [],
112
+ "extensionsUsed": [
113
+ {
114
+ "extensionName": "tenantData",
115
+ "entityName": "subscription"
116
+ }
117
+ ],
110
118
  "configKeys": [],
111
119
  "secrets": [],
112
120
  "writeHandlers": [
@@ -1684,6 +1692,37 @@
1684
1692
  "recommended": true
1685
1693
  }
1686
1694
  },
1695
+ {
1696
+ "name": "tenant-lifecycle",
1697
+ "description": "Tenant-destroy lifecycle: request/cancel destruction with compliance-profile grace, auth 410 gate for teardown states, cron trigger after grace, and staged destroy runner (extension fan-out, subject-key erase, tenant tombstone).",
1698
+ "toggleableDefault": null,
1699
+ "requires": [
1700
+ "tenant",
1701
+ "compliance-profiles"
1702
+ ],
1703
+ "optionalRequires": [
1704
+ "sessions"
1705
+ ],
1706
+ "configReads": [],
1707
+ "exposesApis": [
1708
+ "tenantLifecycle.runDestroySweep"
1709
+ ],
1710
+ "usesApis": [
1711
+ "compliance.forTenant"
1712
+ ],
1713
+ "extensionsUsed": [],
1714
+ "configKeys": [],
1715
+ "secrets": [],
1716
+ "writeHandlers": [
1717
+ "tenant-lifecycle:write:cancel-destruction",
1718
+ "tenant-lifecycle:write:request-destruction"
1719
+ ],
1720
+ "uiHints": {
1721
+ "displayLabel": "Tenant Lifecycle · Destroy",
1722
+ "category": "compliance",
1723
+ "recommended": false
1724
+ }
1725
+ },
1687
1726
  {
1688
1727
  "name": "text-content",
1689
1728
  "description": "Generic Markdown text store keyed by `(tenantId, slug, lang)` — one row per combination in the `read_text_blocks` entity table. Provides `text-content:write:set` (TenantAdmin upsert) and `text-content:query:by-slug` (anonymous-capable read); use `SYSTEM_TENANT_ID` as the tenant for app-wide texts such as imprint, privacy policy, or FAQ. Other features (e.g. `legal-pages`) read blocks without a direct code import via the `createTextContentApi` / `requireTextContent` extraContext pattern.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kumiko-app",
3
- "version": "0.4.79",
3
+ "version": "0.4.80",
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.125.2",
34
- "@cosmicdrift/kumiko-framework": "0.125.2",
33
+ "@cosmicdrift/kumiko-dev-server": "0.126.0",
34
+ "@cosmicdrift/kumiko-framework": "0.126.0",
35
35
  "@inquirer/core": "^10.0.0",
36
36
  "@inquirer/prompts": "^7.4.0"
37
37
  },