@cosmicdrift/kumiko-bundled-features 0.90.0 → 0.90.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-bundled-features",
3
- "version": "0.90.0",
3
+ "version": "0.90.2",
4
4
  "description": "Built-in features — tenant, user, auth, delivery. The stuff you'd rewrite anyway, already typed.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -89,11 +89,11 @@
89
89
  "./step-dispatcher": "./src/step-dispatcher/index.ts"
90
90
  },
91
91
  "dependencies": {
92
- "@cosmicdrift/kumiko-dispatcher-live": "0.90.0",
93
- "@cosmicdrift/kumiko-framework": "0.90.0",
94
- "@cosmicdrift/kumiko-headless": "0.90.0",
95
- "@cosmicdrift/kumiko-renderer": "0.90.0",
96
- "@cosmicdrift/kumiko-renderer-web": "0.90.0",
92
+ "@cosmicdrift/kumiko-dispatcher-live": "0.90.2",
93
+ "@cosmicdrift/kumiko-framework": "0.90.2",
94
+ "@cosmicdrift/kumiko-headless": "0.90.2",
95
+ "@cosmicdrift/kumiko-renderer": "0.90.2",
96
+ "@cosmicdrift/kumiko-renderer-web": "0.90.2",
97
97
  "@mollie/api-client": "^4.5.0",
98
98
  "@node-rs/argon2": "^2.0.2",
99
99
  "@types/nodemailer": "^8.0.0",
@@ -133,7 +133,7 @@ export function createUserDataRightsFeature(opts: UserDataRightsOptions = {}): F
133
133
  let warnedMissingExportUrl = false;
134
134
  return defineFeature("user-data-rights", (r) => {
135
135
  r.describe(
136
- 'Implements GDPR Art. 15 (access / `my-audit-log` query), Art. 17 (erasure / `request-deletion` + `cancel-deletion`, plus the anonymous email-verified `request-deletion-by-email` + `confirm-deletion-by-token` flow for lockout-safe self-service, + cron cleanup with grace period), Art. 18 (restriction / `restrict-account` + `lift-restriction`), and Art. 20 (portability / async `request-export` \u2192 ZIP via `file-foundation`, Magic-Link download) as first-class HTTP handlers and cron jobs. Each domain feature opts in by calling `r.useExtension(EXT_USER_DATA, "<entity>", { export, delete })` \u2014 the feature then orchestrates the export and forget pipelines across all registered hooks automatically. Requires `user`, `data-retention`, `compliance-profiles`, and `sessions`.',
136
+ 'Implements GDPR Art. 15 (access / `my-audit-log` query), Art. 17 (erasure / `request-deletion` + `cancel-deletion`, plus the anonymous email-verified `request-deletion-by-email` + `confirm-deletion-by-token` flow for lockout-safe self-service, + cron cleanup with grace period), Art. 18 (restriction / `restrict-account` + `lift-restriction`), and Art. 20 (portability / async `request-export` \u2192 ZIP via `file-foundation`, Magic-Link download) as first-class HTTP handlers and cron jobs. Each domain feature opts in by calling `r.useExtension(EXT_USER_DATA, "<entity>", { export, delete })` \u2014 the feature then orchestrates the export and forget pipelines across all registered hooks automatically. When `mail-foundation` and a `mail-transport-*` are mounted, it also sends the four GDPR notifications (export ready/failed, deletion requested/executed) itself with no app callback code, rendered in each recipient’s locale. Requires `user`, `data-retention`, `compliance-profiles`, and `sessions`.',
137
137
  );
138
138
  r.uiHints({
139
139
  displayLabel: "User Data Rights \u00b7 GDPR",