create-kumiko-app 0.312.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"
@@ -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.312.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.312.0",
31
- "@cosmicdrift/kumiko-framework": "0.312.0",
32
- "@cosmicdrift/kumiko-server-runtime": "0.312.0",
33
- "@cosmicdrift/kumiko-testing": "0.312.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
  },