@pushwoosh/rpc-gateway-journey-data 0.27.16 → 0.27.18

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
@@ -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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.27.16",
3
+ "version": "0.27.18",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -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;