@pushwoosh/rpc-gateway-messaging 0.6.33 → 0.6.34
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/data.js
CHANGED
package/package.json
CHANGED
|
@@ -63,6 +63,12 @@ export type NotifyRequest_kind_transactional = {
|
|
|
63
63
|
};
|
|
64
64
|
export type NotifyRequest_kind = NotifyRequest_kind_segment | NotifyRequest_kind_transactional;
|
|
65
65
|
export type NotifyRequest = {
|
|
66
|
+
/**
|
|
67
|
+
* Optional idempotency key. When set, a repeated Notify with the same
|
|
68
|
+
* transaction_id (within the dedup TTL) does not resend the message and
|
|
69
|
+
* returns the original message_code. Mirrors legacy gateway transactionId.
|
|
70
|
+
*/
|
|
71
|
+
transactionId: string;
|
|
66
72
|
kind: NotifyRequest_kind;
|
|
67
73
|
};
|
|
68
74
|
export type NotifyResponse = {
|