@pushwoosh/rpc-gateway-journey-data 0.26.456 → 0.26.458

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
@@ -2477,6 +2477,9 @@ export const data = {
2477
2477
  },
2478
2478
  "ttl": {
2479
2479
  "type": "number"
2480
+ },
2481
+ "useLatestUserDevice": {
2482
+ "type": "boolean"
2480
2483
  }
2481
2484
  },
2482
2485
  "oneofs": {}
@@ -4752,6 +4755,12 @@ export const data = {
4752
4755
  },
4753
4756
  "totalOpened": {
4754
4757
  "type": "number"
4758
+ },
4759
+ "deliveries": {
4760
+ "type": "number"
4761
+ },
4762
+ "totalDeliveries": {
4763
+ "type": "number"
4755
4764
  }
4756
4765
  }
4757
4766
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.456",
3
+ "version": "0.26.458",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -915,6 +915,7 @@ export type PointParamsSendPush = {
915
915
  messageType: MessageType;
916
916
  deliverySplitParams: BehaviorSplitter;
917
917
  ttl: number;
918
+ useLatestUserDevice: boolean;
918
919
  };
919
920
  export type PointParamsSendSms = {
920
921
  presetCode: string;
@@ -1716,6 +1717,8 @@ export type GetJourneyMetricsResponse_EmailTotals = {
1716
1717
  unsubscribes: number;
1717
1718
  successfulSends: number;
1718
1719
  totalOpened: number;
1720
+ deliveries: number;
1721
+ totalDeliveries: number;
1719
1722
  };
1720
1723
  export type GetJourneyMetricsResponse_WhatsAppTotals = {
1721
1724
  sent: number;