@pushwoosh/rpc-gateway-messaging 0.6.33 → 0.6.35

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
@@ -123,6 +123,9 @@ export const data = {
123
123
  },
124
124
  "transactional": {
125
125
  "type": "pushwoosh.channels.messagingApi.v2.NotifyTransactional"
126
+ },
127
+ "transactionId": {
128
+ "type": "string"
126
129
  }
127
130
  },
128
131
  "oneofs": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-messaging",
3
- "version": "0.6.33",
3
+ "version": "0.6.35",
4
4
  "description": "Channels Messaging API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -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 = {