@pushwoosh/rpc-gateway-journey-data 0.26.435 → 0.26.437

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
@@ -697,6 +697,15 @@ export const data = {
697
697
  },
698
698
  "voucherStats": {
699
699
  "type": "pushwoosh.cj.journey.VoucherPoolStats"
700
+ },
701
+ "delivered": {
702
+ "type": "number"
703
+ },
704
+ "notDelivered": {
705
+ "type": "number"
706
+ },
707
+ "notOpened": {
708
+ "type": "number"
700
709
  }
701
710
  }
702
711
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.435",
3
+ "version": "0.26.437",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -229,6 +229,9 @@ export type PointStatSendPush = {
229
229
  unshowableSends: number;
230
230
  recipients: number;
231
231
  voucherStats: VoucherPoolStats;
232
+ delivered: number;
233
+ notDelivered: number;
234
+ notOpened: number;
232
235
  };
233
236
  export type PointStatInApp = {
234
237
  shows: number;