@pushwoosh/rpc-gateway-messaging 0.6.86 → 0.6.88

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
@@ -307,6 +307,9 @@ export const data = {
307
307
  },
308
308
  "messageType": {
309
309
  "type": "pushwoosh.channels.messagingApi.v2.MessageType"
310
+ },
311
+ "useLatestUserDevice": {
312
+ "type": "boolean"
310
313
  }
311
314
  },
312
315
  "oneofs": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-messaging",
3
- "version": "0.6.86",
3
+ "version": "0.6.88",
4
4
  "description": "Channels Messaging API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -182,6 +182,8 @@ export type NotifySegment = {
182
182
  * Used to control behavior like control group filtering.
183
183
  */
184
184
  messageType: MessageType;
185
+ /** When true, sends only to the device with the most recent Last Application Open timestamp per user. */
186
+ useLatestUserDevice: boolean;
185
187
  target: NotifySegment_target;
186
188
  messagePayload: NotifySegment_messagePayload;
187
189
  };