@pushwoosh/rpc-gateway-journey-data 0.26.435 → 0.26.436
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 +9 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +3 -0
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
|
@@ -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;
|