@pushwoosh/rpc-gateway-journey-data 0.26.464 → 0.26.465
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 +30 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +10 -0
package/data.js
CHANGED
|
@@ -706,6 +706,12 @@ export const data = {
|
|
|
706
706
|
},
|
|
707
707
|
"notOpened": {
|
|
708
708
|
"type": "number"
|
|
709
|
+
},
|
|
710
|
+
"frequencyCappingUniqueUsers": {
|
|
711
|
+
"type": "number"
|
|
712
|
+
},
|
|
713
|
+
"frequencyCappingSuppressions": {
|
|
714
|
+
"type": "number"
|
|
709
715
|
}
|
|
710
716
|
}
|
|
711
717
|
},
|
|
@@ -749,6 +755,12 @@ export const data = {
|
|
|
749
755
|
},
|
|
750
756
|
"voucherStats": {
|
|
751
757
|
"type": "pushwoosh.cj.journey.VoucherPoolStats"
|
|
758
|
+
},
|
|
759
|
+
"frequencyCappingUniqueUsers": {
|
|
760
|
+
"type": "number"
|
|
761
|
+
},
|
|
762
|
+
"frequencyCappingSuppressions": {
|
|
763
|
+
"type": "number"
|
|
752
764
|
}
|
|
753
765
|
}
|
|
754
766
|
},
|
|
@@ -769,6 +781,12 @@ export const data = {
|
|
|
769
781
|
},
|
|
770
782
|
"voucherStats": {
|
|
771
783
|
"type": "pushwoosh.cj.journey.VoucherPoolStats"
|
|
784
|
+
},
|
|
785
|
+
"frequencyCappingUniqueUsers": {
|
|
786
|
+
"type": "number"
|
|
787
|
+
},
|
|
788
|
+
"frequencyCappingSuppressions": {
|
|
789
|
+
"type": "number"
|
|
772
790
|
}
|
|
773
791
|
}
|
|
774
792
|
},
|
|
@@ -832,6 +850,12 @@ export const data = {
|
|
|
832
850
|
},
|
|
833
851
|
"voucherStats": {
|
|
834
852
|
"type": "pushwoosh.cj.journey.VoucherPoolStats"
|
|
853
|
+
},
|
|
854
|
+
"frequencyCappingUniqueUsers": {
|
|
855
|
+
"type": "number"
|
|
856
|
+
},
|
|
857
|
+
"frequencyCappingSuppressions": {
|
|
858
|
+
"type": "number"
|
|
835
859
|
}
|
|
836
860
|
}
|
|
837
861
|
},
|
|
@@ -890,6 +914,12 @@ export const data = {
|
|
|
890
914
|
},
|
|
891
915
|
"totalOpened": {
|
|
892
916
|
"type": "number"
|
|
917
|
+
},
|
|
918
|
+
"frequencyCappingUniqueUsers": {
|
|
919
|
+
"type": "number"
|
|
920
|
+
},
|
|
921
|
+
"frequencyCappingSuppressions": {
|
|
922
|
+
"type": "number"
|
|
893
923
|
}
|
|
894
924
|
}
|
|
895
925
|
},
|
package/package.json
CHANGED
|
@@ -232,6 +232,8 @@ export type PointStatSendPush = {
|
|
|
232
232
|
delivered: number;
|
|
233
233
|
notDelivered: number;
|
|
234
234
|
notOpened: number;
|
|
235
|
+
frequencyCappingUniqueUsers: number;
|
|
236
|
+
frequencyCappingSuppressions: number;
|
|
235
237
|
};
|
|
236
238
|
export type PointStatInApp = {
|
|
237
239
|
shows: number;
|
|
@@ -247,6 +249,8 @@ export type PointStatSendSms = {
|
|
|
247
249
|
errors: number;
|
|
248
250
|
recipients: number;
|
|
249
251
|
voucherStats: VoucherPoolStats;
|
|
252
|
+
frequencyCappingUniqueUsers: number;
|
|
253
|
+
frequencyCappingSuppressions: number;
|
|
250
254
|
};
|
|
251
255
|
export type PointStatSendLine = {
|
|
252
256
|
sent: number;
|
|
@@ -254,6 +258,8 @@ export type PointStatSendLine = {
|
|
|
254
258
|
errors: number;
|
|
255
259
|
recipients: number;
|
|
256
260
|
voucherStats: VoucherPoolStats;
|
|
261
|
+
frequencyCappingUniqueUsers: number;
|
|
262
|
+
frequencyCappingSuppressions: number;
|
|
257
263
|
};
|
|
258
264
|
export type PointStatSendKakao = {
|
|
259
265
|
sent: number;
|
|
@@ -276,6 +282,8 @@ export type PointStatSendWhatsApp = {
|
|
|
276
282
|
errors: number;
|
|
277
283
|
recipients: number;
|
|
278
284
|
voucherStats: VoucherPoolStats;
|
|
285
|
+
frequencyCappingUniqueUsers: number;
|
|
286
|
+
frequencyCappingSuppressions: number;
|
|
279
287
|
};
|
|
280
288
|
export type PointStatSendData = {
|
|
281
289
|
sent: number;
|
|
@@ -296,6 +304,8 @@ export type PointStatSendEmail = {
|
|
|
296
304
|
recipients: number;
|
|
297
305
|
voucherStats: VoucherPoolStats;
|
|
298
306
|
totalOpened: number;
|
|
307
|
+
frequencyCappingUniqueUsers: number;
|
|
308
|
+
frequencyCappingSuppressions: number;
|
|
299
309
|
};
|
|
300
310
|
export type PointStatAudienceSync = {
|
|
301
311
|
synced: number;
|