create-kumiko-app 0.4.75 → 0.4.77

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,7 +1,31 @@
1
1
  {
2
2
  "source": "samples/apps/use-all-bundled APP_FEATURES (composeFeatures includeBundled)",
3
- "featureCount": 47,
3
+ "featureCount": 48,
4
4
  "features": [
5
+ {
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 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
+ "toggleableDefault": null,
9
+ "requires": [
10
+ "tenant",
11
+ "audit",
12
+ "jobs",
13
+ "tier-engine"
14
+ ],
15
+ "optionalRequires": [],
16
+ "configReads": [],
17
+ "exposesApis": [],
18
+ "usesApis": [],
19
+ "extensionsUsed": [],
20
+ "configKeys": [],
21
+ "secrets": [],
22
+ "writeHandlers": [],
23
+ "uiHints": {
24
+ "displayLabel": "Admin Shell",
25
+ "category": "operations",
26
+ "recommended": false
27
+ }
28
+ },
5
29
  {
6
30
  "name": "audit",
7
31
  "description": "Exposes the framework's event store as a paginated, filterable audit log via the `audit:query:list` handler (accessible to `Admin` and `SystemAdmin` roles). No separate table or projection — the event store is the audit trail by construction: every entity write already records who, when, what entity, and the event payload with PII stripped. Filter by `aggregateType`, `aggregateId`, `eventType`, `userId`, or time range.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kumiko-app",
3
- "version": "0.4.75",
3
+ "version": "0.4.77",
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.123.3",
34
- "@cosmicdrift/kumiko-framework": "0.123.3",
33
+ "@cosmicdrift/kumiko-dev-server": "0.125.0",
34
+ "@cosmicdrift/kumiko-framework": "0.125.0",
35
35
  "@inquirer/core": "^10.0.0",
36
36
  "@inquirer/prompts": "^7.4.0"
37
37
  },