@cosmicdrift/kumiko-types 0.171.1 → 0.171.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/handlers.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-types",
|
|
3
|
-
"version": "0.171.
|
|
3
|
+
"version": "0.171.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/handlers.ts
CHANGED
|
@@ -200,6 +200,10 @@ export type NotifyOptions = {
|
|
|
200
200
|
// can be replayed (webhook retry, user double-click) and you don't want
|
|
201
201
|
// the notification to fire twice.
|
|
202
202
|
readonly idempotencyKey?: string;
|
|
203
|
+
// Pseudonymous subject key for the `route` path (no user account). Threaded
|
|
204
|
+
// into the delivery-attempt event's recipientId so crypto-shredding's
|
|
205
|
+
// forget-subject can reach recipientAddress under this subject.
|
|
206
|
+
readonly recipientId?: string;
|
|
203
207
|
};
|
|
204
208
|
|
|
205
209
|
// Minimal interface for delivery notifications (concrete type in bundled-features/delivery)
|