create-kumiko-app 0.4.147 → 0.4.149
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"source": "samples/apps/use-all-bundled APP_FEATURES (composeFeatures includeBundled)",
|
|
3
|
-
"featureCount":
|
|
3
|
+
"featureCount": 57,
|
|
4
4
|
"features": [
|
|
5
5
|
{
|
|
6
6
|
"name": "admin-shell",
|
|
@@ -471,6 +471,70 @@
|
|
|
471
471
|
"recommended": true
|
|
472
472
|
}
|
|
473
473
|
},
|
|
474
|
+
{
|
|
475
|
+
"name": "document-ingest-foundation",
|
|
476
|
+
"description": "Shared PDF/Scan/Image → normalized-text ingest primitive. Owns the `documentExtract` entity (fileRefId, storageKey, per-page text + metadata) as an implicit entity-projection, the per-tenant `ocrLanguage`/`maxPagesPerFile` config keys, and a fileRef.created trigger that validates mime/size and requests ingest via `documentIngest.requested`. LiteParse provider wiring lands in follow-up features.",
|
|
477
|
+
"toggleableDefault": null,
|
|
478
|
+
"requires": [
|
|
479
|
+
"config"
|
|
480
|
+
],
|
|
481
|
+
"optionalRequires": [],
|
|
482
|
+
"configReads": [],
|
|
483
|
+
"exposesApis": [],
|
|
484
|
+
"usesApis": [],
|
|
485
|
+
"extensionsUsed": [],
|
|
486
|
+
"configKeys": [
|
|
487
|
+
{
|
|
488
|
+
"key": "max-pages-per-file",
|
|
489
|
+
"qualifiedName": "document-ingest-foundation:config:max-pages-per-file",
|
|
490
|
+
"type": "number",
|
|
491
|
+
"scope": "tenant",
|
|
492
|
+
"default": 50,
|
|
493
|
+
"encrypted": false,
|
|
494
|
+
"computed": false,
|
|
495
|
+
"options": null,
|
|
496
|
+
"bounds": null,
|
|
497
|
+
"pattern": null,
|
|
498
|
+
"writeRoles": [
|
|
499
|
+
"TenantAdmin",
|
|
500
|
+
"SystemAdmin"
|
|
501
|
+
],
|
|
502
|
+
"readRoles": [
|
|
503
|
+
"TenantAdmin",
|
|
504
|
+
"SystemAdmin",
|
|
505
|
+
"User"
|
|
506
|
+
]
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"key": "ocr-language",
|
|
510
|
+
"qualifiedName": "document-ingest-foundation:config:ocr-language",
|
|
511
|
+
"type": "text",
|
|
512
|
+
"scope": "tenant",
|
|
513
|
+
"default": "deu+eng",
|
|
514
|
+
"encrypted": false,
|
|
515
|
+
"computed": false,
|
|
516
|
+
"options": null,
|
|
517
|
+
"bounds": null,
|
|
518
|
+
"pattern": null,
|
|
519
|
+
"writeRoles": [
|
|
520
|
+
"TenantAdmin",
|
|
521
|
+
"SystemAdmin"
|
|
522
|
+
],
|
|
523
|
+
"readRoles": [
|
|
524
|
+
"TenantAdmin",
|
|
525
|
+
"SystemAdmin",
|
|
526
|
+
"User"
|
|
527
|
+
]
|
|
528
|
+
}
|
|
529
|
+
],
|
|
530
|
+
"secrets": [],
|
|
531
|
+
"writeHandlers": [],
|
|
532
|
+
"uiHints": {
|
|
533
|
+
"displayLabel": "Document Ingest Foundation",
|
|
534
|
+
"category": "storage",
|
|
535
|
+
"recommended": false
|
|
536
|
+
}
|
|
537
|
+
},
|
|
474
538
|
{
|
|
475
539
|
"name": "feature-toggles",
|
|
476
540
|
"description": "Persists per-feature enabled/disabled state in the `store_global_feature_state` table and exposes a `set` write-handler plus `list`/`registered` query-handlers so operators can flip features at runtime without redeploying. Each API instance keeps an in-memory `GlobalFeatureToggleRuntime` snapshot (initialize it via `createFeatureToggleRuntime`, pass a `() => runtime` accessor to `createFeatureTogglesFeature`) that the dispatcher gate reads on every request; a `toggle-cache-sync` multi-stream projection with `delivery: \"per-instance\"` syncs the snapshot across instances whenever a `toggle-set` event is appended.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-kumiko-app",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.149",
|
|
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,9 +30,9 @@
|
|
|
30
30
|
"vendor:manifest": "bun run scripts/vendor-manifest.ts"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@cosmicdrift/kumiko-dev-server": "0.
|
|
34
|
-
"@cosmicdrift/kumiko-framework": "0.
|
|
35
|
-
"@cosmicdrift/kumiko-server-runtime": "0.
|
|
33
|
+
"@cosmicdrift/kumiko-dev-server": "0.165.0",
|
|
34
|
+
"@cosmicdrift/kumiko-framework": "0.165.0",
|
|
35
|
+
"@cosmicdrift/kumiko-server-runtime": "0.165.0",
|
|
36
36
|
"@inquirer/core": "^10.0.0",
|
|
37
37
|
"@inquirer/prompts": "^7.4.0"
|
|
38
38
|
},
|
|
@@ -52,11 +52,12 @@ describe("--yes resolved set boots (issue-1174 regression)", () => {
|
|
|
52
52
|
});
|
|
53
53
|
|
|
54
54
|
test("the resolved --yes feature set boots without the GDPR PII-hook-coverage error", async () => {
|
|
55
|
-
const instances = await instantiateResolved(resolved.featureNames);
|
|
56
55
|
// sessions (auto-included, session-list/detail screens are recommended)
|
|
57
56
|
// requires auth-foundation, which the dep-resolver already pulls in
|
|
58
57
|
// transitively — personal-access-tokens (recommended, satisfies the
|
|
59
58
|
// tokenVerifier boot invariant) is resolved into the set too.
|
|
59
|
+
expect(resolved.featureNames).toContain("personal-access-tokens");
|
|
60
|
+
const instances = await instantiateResolved(resolved.featureNames);
|
|
60
61
|
const composed = composeFeatures(instances, { includeBundled: true });
|
|
61
62
|
expect(() => validateBoot(composed)).not.toThrow();
|
|
62
63
|
expect(() => createRegistry(composed)).not.toThrow();
|