@cosmicdrift/kumiko-types 0.176.0 → 0.176.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 +1 -1
- package/src/fields.ts +1 -1
- package/src/handlers.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-types",
|
|
3
|
-
"version": "0.176.
|
|
3
|
+
"version": "0.176.2",
|
|
4
4
|
"description": "Framework-Type-Definitions für Kumiko — FeatureDefinition, BootCheck-Types und die reinen Engine-Types. Erlaubt Downstream-Konsumenten, gegen die Type-Contracts zu bauen, ohne das ganze Framework-Package zu importieren. Enthaelt keine identitaets-sensitiven Runtime-Werte mehr (Error-Klassen leben seit #1629 in kumiko-framework, Brand-Symbole nutzen Symbol.for) und ist deshalb eine plain dependency, keine peerDependency.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
package/src/fields.ts
CHANGED
|
@@ -116,7 +116,7 @@ export type PiiAnnotations = {
|
|
|
116
116
|
* annotated content of its own. Triggers no encryption — feeds only the
|
|
117
117
|
* GDPR-hook-coverage boot guard, which otherwise can't see subject data
|
|
118
118
|
* that lives purely in an FK column. */
|
|
119
|
-
readonly subjectRef?:
|
|
119
|
+
readonly subjectRef?: true;
|
|
120
120
|
};
|
|
121
121
|
|
|
122
122
|
// --- Retention (DSGVO Art. 5(1)(e) + HGB/AO Aufbewahrungspflichten) ---
|
package/src/handlers.ts
CHANGED
|
@@ -202,7 +202,8 @@ export type NotifyOptions = {
|
|
|
202
202
|
readonly idempotencyKey?: string;
|
|
203
203
|
// Pseudonymous subject key for the `route` path (no user account). Threaded
|
|
204
204
|
// into the delivery-attempt event's recipientId so crypto-shredding's
|
|
205
|
-
// forget-subject can reach recipientAddress under this subject.
|
|
205
|
+
// forget-subject can reach recipientAddress under this subject. Ignored on
|
|
206
|
+
// the `to` path — there the resolved user id is the recipientId, silently.
|
|
206
207
|
readonly recipientId?: string;
|
|
207
208
|
};
|
|
208
209
|
|