@cosmicdrift/kumiko-bundled-features 0.73.0 → 0.74.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-bundled-features",
3
- "version": "0.73.0",
3
+ "version": "0.74.0",
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>",
@@ -84,11 +84,11 @@
84
84
  "./step-dispatcher": "./src/step-dispatcher/index.ts"
85
85
  },
86
86
  "dependencies": {
87
- "@cosmicdrift/kumiko-dispatcher-live": "0.73.0",
88
- "@cosmicdrift/kumiko-framework": "0.73.0",
89
- "@cosmicdrift/kumiko-headless": "0.73.0",
90
- "@cosmicdrift/kumiko-renderer": "0.73.0",
91
- "@cosmicdrift/kumiko-renderer-web": "0.73.0",
87
+ "@cosmicdrift/kumiko-dispatcher-live": "0.74.0",
88
+ "@cosmicdrift/kumiko-framework": "0.74.0",
89
+ "@cosmicdrift/kumiko-headless": "0.74.0",
90
+ "@cosmicdrift/kumiko-renderer": "0.74.0",
91
+ "@cosmicdrift/kumiko-renderer-web": "0.74.0",
92
92
  "@mollie/api-client": "^4.5.0",
93
93
  "@node-rs/argon2": "^2.0.2",
94
94
  "@types/nodemailer": "^8.0.0",
@@ -37,10 +37,8 @@ function failureKey(error: unknown): string {
37
37
  return typeof key === "string" ? key : "profile.errors.generic";
38
38
  }
39
39
 
40
- // gracePeriodEnd ist ein roher ISO-Instant ("2026-07-11T00:00:00.000Z"); nur
41
- // der Datums-Teil ist für den User relevant, die Uhrzeit/Z wäre Rauschen
42
- // ("…am 2026-07-11T00:00:00.000Z gelöscht"). Reiner String-Slice — kein
43
- // Date-API (no-date-api-Guard) und universell (RN+Web). Leer/null → "—".
40
+ // Date-only slice of the raw ISO instant — the time/Z part is noise to the user.
41
+ // Pure string-slice: no Date API (no-date-api guard), universal (RN+Web). Empty → "—".
44
42
  export function formatDeletionDate(iso: string | null | undefined): string {
45
43
  if (!iso) return "—";
46
44
  const tIndex = iso.indexOf("T");