create-kumiko-app 0.314.0 → 0.315.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, 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.",
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. Unsubscribe links are served by `createUnsubscribeRoute({ secret })` mounted via the app's `extraRoutes` at `GET /api/delivery/unsubscribe?token=`; sign links with `signUnsubscribeToken` / `signAddressUnsubscribeToken` using the same secret.",
584
584
  "toggleableDefault": null,
585
585
  "requires": [
586
586
  "tenant"
@@ -593,7 +593,9 @@
593
593
  "configKeys": [],
594
594
  "secrets": [],
595
595
  "writeHandlers": [
596
- "delivery:write:set-preference"
596
+ "delivery:write:set-preference",
597
+ "delivery:write:unsubscribe-address",
598
+ "delivery:write:unsubscribe-user"
597
599
  ],
598
600
  "uiHints": {
599
601
  "displayLabel": "Notifications · Dispatch Core",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kumiko-app",
3
- "version": "0.314.0",
3
+ "version": "0.315.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.314.0",
31
- "@cosmicdrift/kumiko-framework": "0.314.0",
32
- "@cosmicdrift/kumiko-server-runtime": "0.314.0",
33
- "@cosmicdrift/kumiko-testing": "0.314.0",
30
+ "@cosmicdrift/kumiko-dev-server": "0.315.0",
31
+ "@cosmicdrift/kumiko-framework": "0.315.0",
32
+ "@cosmicdrift/kumiko-server-runtime": "0.315.0",
33
+ "@cosmicdrift/kumiko-testing": "0.315.0",
34
34
  "@inquirer/core": "^10.0.0",
35
35
  "@inquirer/prompts": "^7.4.0"
36
36
  },