@pushwoosh/rpc-gateway-journey-data 0.27.17 → 0.27.19
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 +23 -1
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +9 -1
package/data.js
CHANGED
|
@@ -865,6 +865,9 @@ export const data = {
|
|
|
865
865
|
},
|
|
866
866
|
"frequencyCappingSuppressions": {
|
|
867
867
|
"type": "number"
|
|
868
|
+
},
|
|
869
|
+
"skipped": {
|
|
870
|
+
"type": "number"
|
|
868
871
|
}
|
|
869
872
|
}
|
|
870
873
|
},
|
|
@@ -885,6 +888,9 @@ export const data = {
|
|
|
885
888
|
},
|
|
886
889
|
"voucherStats": {
|
|
887
890
|
"type": "pushwoosh.cj.journey.VoucherPoolStats"
|
|
891
|
+
},
|
|
892
|
+
"skipped": {
|
|
893
|
+
"type": "number"
|
|
888
894
|
}
|
|
889
895
|
}
|
|
890
896
|
},
|
|
@@ -905,6 +911,9 @@ export const data = {
|
|
|
905
911
|
},
|
|
906
912
|
"voucherStats": {
|
|
907
913
|
"type": "pushwoosh.cj.journey.VoucherPoolStats"
|
|
914
|
+
},
|
|
915
|
+
"skipped": {
|
|
916
|
+
"type": "number"
|
|
908
917
|
}
|
|
909
918
|
}
|
|
910
919
|
},
|
|
@@ -925,6 +934,9 @@ export const data = {
|
|
|
925
934
|
},
|
|
926
935
|
"voucherStats": {
|
|
927
936
|
"type": "pushwoosh.cj.journey.VoucherPoolStats"
|
|
937
|
+
},
|
|
938
|
+
"skipped": {
|
|
939
|
+
"type": "number"
|
|
928
940
|
}
|
|
929
941
|
}
|
|
930
942
|
},
|
|
@@ -1053,7 +1065,11 @@ export const data = {
|
|
|
1053
1065
|
},
|
|
1054
1066
|
"pushwoosh.cj.journey.PointStatBooleanSplitter": {
|
|
1055
1067
|
"type": "I",
|
|
1056
|
-
"fields": {
|
|
1068
|
+
"fields": {
|
|
1069
|
+
"skipped": {
|
|
1070
|
+
"type": "number"
|
|
1071
|
+
}
|
|
1072
|
+
}
|
|
1057
1073
|
},
|
|
1058
1074
|
"pushwoosh.cj.journey.PointStatWaitEvent": {
|
|
1059
1075
|
"type": "I",
|
|
@@ -5171,6 +5187,12 @@ export const data = {
|
|
|
5171
5187
|
},
|
|
5172
5188
|
"errors": {
|
|
5173
5189
|
"type": "number"
|
|
5190
|
+
},
|
|
5191
|
+
"frequencyCappingSuppressions": {
|
|
5192
|
+
"type": "number"
|
|
5193
|
+
},
|
|
5194
|
+
"frequencyCappingUniqueUsers": {
|
|
5195
|
+
"type": "number"
|
|
5174
5196
|
}
|
|
5175
5197
|
}
|
|
5176
5198
|
},
|
package/package.json
CHANGED
|
@@ -290,6 +290,7 @@ export type PointStatSendLine = {
|
|
|
290
290
|
voucherStats: VoucherPoolStats;
|
|
291
291
|
frequencyCappingUniqueUsers: number;
|
|
292
292
|
frequencyCappingSuppressions: number;
|
|
293
|
+
skipped: number;
|
|
293
294
|
};
|
|
294
295
|
export type PointStatSendKakao = {
|
|
295
296
|
sent: number;
|
|
@@ -297,6 +298,7 @@ export type PointStatSendKakao = {
|
|
|
297
298
|
errors: number;
|
|
298
299
|
recipients: number;
|
|
299
300
|
voucherStats: VoucherPoolStats;
|
|
301
|
+
skipped: number;
|
|
300
302
|
};
|
|
301
303
|
export type PointStatSendTelegram = {
|
|
302
304
|
sent: number;
|
|
@@ -304,6 +306,7 @@ export type PointStatSendTelegram = {
|
|
|
304
306
|
errors: number;
|
|
305
307
|
recipients: number;
|
|
306
308
|
voucherStats: VoucherPoolStats;
|
|
309
|
+
skipped: number;
|
|
307
310
|
};
|
|
308
311
|
export type PointStatSendViber = {
|
|
309
312
|
sent: number;
|
|
@@ -311,6 +314,7 @@ export type PointStatSendViber = {
|
|
|
311
314
|
errors: number;
|
|
312
315
|
recipients: number;
|
|
313
316
|
voucherStats: VoucherPoolStats;
|
|
317
|
+
skipped: number;
|
|
314
318
|
};
|
|
315
319
|
export type PointStatSendWhatsApp = {
|
|
316
320
|
sent: number;
|
|
@@ -353,7 +357,9 @@ export type PointStatMessageBus = {};
|
|
|
353
357
|
export type PointStatGoalEvent = {};
|
|
354
358
|
export type PointStatTerminator = {};
|
|
355
359
|
export type PointStatDelay = {};
|
|
356
|
-
export type PointStatBooleanSplitter = {
|
|
360
|
+
export type PointStatBooleanSplitter = {
|
|
361
|
+
skipped: number;
|
|
362
|
+
};
|
|
357
363
|
export type PointStatWaitEvent = {};
|
|
358
364
|
export type VoucherPoolStats = {
|
|
359
365
|
total: number;
|
|
@@ -1863,6 +1869,8 @@ export type GetJourneyMetricsResponse_InAppTotals = {
|
|
|
1863
1869
|
impressions: number;
|
|
1864
1870
|
interactions: number;
|
|
1865
1871
|
errors: number;
|
|
1872
|
+
frequencyCappingSuppressions: number;
|
|
1873
|
+
frequencyCappingUniqueUsers: number;
|
|
1866
1874
|
};
|
|
1867
1875
|
export type GetJourneyMetricsResponse_ChannelTotals = {
|
|
1868
1876
|
push: GetJourneyMetricsResponse_PushTotals;
|