create-kumiko-app 0.4.249 → 0.4.251
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 +41 -3
- package/package.json +4 -4
package/feature-manifest.json
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"source": "samples/apps/use-all-bundled APP_FEATURES (composeFeatures includeBundled + signup)",
|
|
3
|
-
"featureCount":
|
|
3
|
+
"featureCount": 72,
|
|
4
4
|
"features": [
|
|
5
5
|
{
|
|
6
6
|
"name": "admin-shell",
|
|
7
|
-
"description": "Registers tenant-admin and platform-admin workspaces with provider nav into owner-feature screens (`tenant:screen:members`, `audit:screen:audit-log`, `tenant:screen:tenant-list`, `jobs:screen:job-runs`, optional `tier-engine:screen:tier-admin`). Mount after user, tenant, audit, and jobs; pass `workspaceIds` to match app URL conventions (e.g. Studio `d`/`s`, PublicStatus `admin`/`sysadmin`). Client: `adminShellClient()`, `tenantClient()`, `auditClient()`, `jobsClient()`, optional `tierEngineClient()`.",
|
|
7
|
+
"description": "Registers tenant-admin and platform-admin workspaces with provider nav into owner-feature screens (`tenant:screen:members`, `audit:screen:audit-log`, `tenant:screen:tenant-list`, `jobs:screen:job-runs`, optional `tier-engine:screen:tier-admin`, optional `cap-overview:screen:my-caps`/`cap-overview:screen:tenant-cap-list`). Mount after user, tenant, audit, and jobs; pass `workspaceIds` to match app URL conventions (e.g. Studio `d`/`s`, PublicStatus `admin`/`sysadmin`). Client: `adminShellClient()`, `tenantClient()`, `auditClient()`, `jobsClient()`, optional `tierEngineClient()`.",
|
|
8
8
|
"toggleableDefault": null,
|
|
9
9
|
"requires": [
|
|
10
10
|
"user",
|
|
11
11
|
"tenant",
|
|
12
12
|
"audit",
|
|
13
13
|
"jobs",
|
|
14
|
-
"tier-engine"
|
|
14
|
+
"tier-engine",
|
|
15
|
+
"cap-overview"
|
|
15
16
|
],
|
|
16
17
|
"optionalRequires": [],
|
|
17
18
|
"configReads": [],
|
|
@@ -279,6 +280,43 @@
|
|
|
279
280
|
"recommended": false
|
|
280
281
|
}
|
|
281
282
|
},
|
|
283
|
+
{
|
|
284
|
+
"name": "cap-overview",
|
|
285
|
+
"description": "Read-only visibility into per-tenant tier assignment and cap usage. SystemAdmin gets a platform-wide tenant list with usage bars; TenantAdmin gets their own usage as dashboard cards. Reads tier-engine, billing-foundation, and tenant data plus app-owned usage tables via caller-supplied CapSpec callbacks — never writes.",
|
|
286
|
+
"toggleableDefault": null,
|
|
287
|
+
"requires": [
|
|
288
|
+
"tenant",
|
|
289
|
+
"tier-engine",
|
|
290
|
+
"billing-foundation"
|
|
291
|
+
],
|
|
292
|
+
"optionalRequires": [],
|
|
293
|
+
"configReads": [],
|
|
294
|
+
"exposesApis": [],
|
|
295
|
+
"usesApis": [],
|
|
296
|
+
"extensionsUsed": [],
|
|
297
|
+
"configKeys": [],
|
|
298
|
+
"secrets": [],
|
|
299
|
+
"writeHandlers": [],
|
|
300
|
+
"uiHints": {
|
|
301
|
+
"displayLabel": "Cap Overview · Tier & Usage Visibility",
|
|
302
|
+
"category": "operations",
|
|
303
|
+
"recommended": false
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"name": "cap-overview-labels",
|
|
308
|
+
"description": "Labels for the example caps this sample app mounts into cap-overview.",
|
|
309
|
+
"toggleableDefault": null,
|
|
310
|
+
"requires": [],
|
|
311
|
+
"optionalRequires": [],
|
|
312
|
+
"configReads": [],
|
|
313
|
+
"exposesApis": [],
|
|
314
|
+
"usesApis": [],
|
|
315
|
+
"extensionsUsed": [],
|
|
316
|
+
"configKeys": [],
|
|
317
|
+
"secrets": [],
|
|
318
|
+
"writeHandlers": []
|
|
319
|
+
},
|
|
282
320
|
{
|
|
283
321
|
"name": "channel-email",
|
|
284
322
|
"description": "Wires an `EmailTransport` (typically `mail-transport-smtp` in production, `createInMemoryTransport()` in tests) into the delivery system as the `email` channel. Requires `delivery`; pass an `EmailChannelOptions` with a `transport`, a `renderer: NotificationRenderer` (e.g. backed by `renderer-simple`), and a `resolveEmail` function that maps a user ID to their email address.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-kumiko-app",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.251",
|
|
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.226.0",
|
|
31
|
+
"@cosmicdrift/kumiko-framework": "0.226.0",
|
|
32
|
+
"@cosmicdrift/kumiko-server-runtime": "0.226.0",
|
|
33
33
|
"@inquirer/core": "^10.0.0",
|
|
34
34
|
"@inquirer/prompts": "^7.4.0"
|
|
35
35
|
},
|