create-kumiko-app 0.311.0 → 0.313.0

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.
@@ -580,7 +580,7 @@
580
580
  },
581
581
  {
582
582
  "name": "delivery",
583
- "description": "The notification dispatch core: call `ctx.notify(notificationType, { to, route, data, priority, idempotencyKey })` from any handler to fan out a notification across all registered channels (email, in-app, push). It stores per-user channel preferences in the `notification-preference` entity, logs every attempt to `store_delivery_attempts`, and enforces idempotency and rate-limiting — add `channel-email`, `channel-in-app`, or `channel-push` on top to actually send anything.",
583
+ "description": "The notification dispatch core: call `ctx.notify(notificationType, { to, route, data, priority, idempotencyKey })` from any handler to fan out a notification across all registered channels (email, in-app, push). It stores per-user channel preferences in the `notification-preference` entity, opt-outs for no-account recipient addresses in `notification-address-opt-out` (keyed by a blind-index hash, never the plaintext address), logs every attempt to `store_delivery_attempts`, and enforces idempotency and rate-limiting — add `channel-email`, `channel-in-app`, or `channel-push` on top to actually send anything.",
584
584
  "toggleableDefault": null,
585
585
  "requires": [
586
586
  "tenant"
@@ -629,7 +629,7 @@
629
629
  },
630
630
  {
631
631
  "name": "document-ingest-foundation",
632
- "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.",
632
+ "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, the `documentIngestProvider` extension-point providers register accepted mimeTypes/size caps under, and a fileRef.created/fileRef.restored trigger that resolves the provider for a file's mimeType and requests ingest via `documentIngest.requested` tagged with the winning provider — a delete→restore round-trip re-requests ingest the same way a fresh upload does. An orphan-extract guard forgets any `documentExtract` whose fileRef is no longer live at processing time, regardless of how a provider's own write races the fileRef's delete/forget — providers should write through `writeDocumentExtractForLiveFileRef`.",
633
633
  "toggleableDefault": null,
634
634
  "requires": [
635
635
  "config",
@@ -2496,7 +2496,12 @@
2496
2496
  "configReads": [],
2497
2497
  "exposesApis": [],
2498
2498
  "usesApis": [],
2499
- "extensionsUsed": [],
2499
+ "extensionsUsed": [
2500
+ {
2501
+ "extensionName": "signupHandover",
2502
+ "entityName": "tenant-handover"
2503
+ }
2504
+ ],
2500
2505
  "configKeys": [],
2501
2506
  "secrets": [],
2502
2507
  "writeHandlers": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kumiko-app",
3
- "version": "0.311.0",
3
+ "version": "0.313.0",
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,10 +27,10 @@
27
27
  }
28
28
  },
29
29
  "dependencies": {
30
- "@cosmicdrift/kumiko-dev-server": "0.311.0",
31
- "@cosmicdrift/kumiko-framework": "0.311.0",
32
- "@cosmicdrift/kumiko-server-runtime": "0.311.0",
33
- "@cosmicdrift/kumiko-testing": "0.311.0",
30
+ "@cosmicdrift/kumiko-dev-server": "0.313.0",
31
+ "@cosmicdrift/kumiko-framework": "0.313.0",
32
+ "@cosmicdrift/kumiko-server-runtime": "0.313.0",
33
+ "@cosmicdrift/kumiko-testing": "0.313.0",
34
34
  "@inquirer/core": "^10.0.0",
35
35
  "@inquirer/prompts": "^7.4.0"
36
36
  },