create-kumiko-app 0.4.208 → 0.4.209
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 +23 -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": 67,
|
|
4
4
|
"features": [
|
|
5
5
|
{
|
|
6
6
|
"name": "admin-shell",
|
|
@@ -391,6 +391,28 @@
|
|
|
391
391
|
"recommended": false
|
|
392
392
|
}
|
|
393
393
|
},
|
|
394
|
+
{
|
|
395
|
+
"name": "compliance-profiles-ops",
|
|
396
|
+
"description": "Platform-wide SystemAdmin counterpart to `compliance-profiles`' `needs-profile` query (#2089): `tenants-missing-profile` lists every enabled tenant with no row in `tenantComplianceProfile` at all, tenant-wide instead of scoped to the caller's own tenant. Mount alongside `compliance-profiles` and `tenant` when an operator UI needs to see which tenants still silently run on `minimal-no-region`.",
|
|
397
|
+
"toggleableDefault": null,
|
|
398
|
+
"requires": [
|
|
399
|
+
"compliance-profiles",
|
|
400
|
+
"tenant"
|
|
401
|
+
],
|
|
402
|
+
"optionalRequires": [],
|
|
403
|
+
"configReads": [],
|
|
404
|
+
"exposesApis": [],
|
|
405
|
+
"usesApis": [],
|
|
406
|
+
"extensionsUsed": [],
|
|
407
|
+
"configKeys": [],
|
|
408
|
+
"secrets": [],
|
|
409
|
+
"writeHandlers": [],
|
|
410
|
+
"uiHints": {
|
|
411
|
+
"displayLabel": "Compliance Profiles · Operator Visibility",
|
|
412
|
+
"category": "compliance",
|
|
413
|
+
"recommended": false
|
|
414
|
+
}
|
|
415
|
+
},
|
|
394
416
|
{
|
|
395
417
|
"name": "config",
|
|
396
418
|
"description": "Stores per-tenant (and optionally per-user) configuration values with a multi-layer cascade: user-row → tenant-row → system-row → app-override (deploy-time `AppConfigOverrides`) → computed → feature default. Access a value in handlers via `ctx.config(handle)`, declare keys with `r.config({ keys: { ... } })` inside a feature's registry callback, and optionally mark them `encrypted: true` to route storage through the envelope cipher (versioned master key). Use this feature whenever a tenant admin needs to customise behaviour at runtime without a code deploy.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-kumiko-app",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.209",
|
|
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.200.0",
|
|
31
|
+
"@cosmicdrift/kumiko-framework": "0.200.0",
|
|
32
|
+
"@cosmicdrift/kumiko-server-runtime": "0.200.0",
|
|
33
33
|
"@inquirer/core": "^10.0.0",
|
|
34
34
|
"@inquirer/prompts": "^7.4.0"
|
|
35
35
|
},
|