@pushwoosh/rpc-gateway-journey-data 0.26.319 → 0.26.320

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
@@ -594,6 +594,9 @@ export const data = {
594
594
  },
595
595
  "unshowableSends": {
596
596
  "type": "number"
597
+ },
598
+ "recipients": {
599
+ "type": "number"
597
600
  }
598
601
  }
599
602
  },
@@ -631,6 +634,9 @@ export const data = {
631
634
  },
632
635
  "errors": {
633
636
  "type": "number"
637
+ },
638
+ "recipients": {
639
+ "type": "number"
634
640
  }
635
641
  }
636
642
  },
@@ -645,6 +651,9 @@ export const data = {
645
651
  },
646
652
  "errors": {
647
653
  "type": "number"
654
+ },
655
+ "recipients": {
656
+ "type": "number"
648
657
  }
649
658
  }
650
659
  },
@@ -662,6 +671,9 @@ export const data = {
662
671
  },
663
672
  "errors": {
664
673
  "type": "number"
674
+ },
675
+ "recipients": {
676
+ "type": "number"
665
677
  }
666
678
  }
667
679
  },
@@ -708,6 +720,9 @@ export const data = {
708
720
  },
709
721
  "errors": {
710
722
  "type": "number"
723
+ },
724
+ "recipients": {
725
+ "type": "number"
711
726
  }
712
727
  }
713
728
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.319",
3
+ "version": "0.26.320",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -202,6 +202,7 @@ export type PointStatSendPush = {
202
202
  skippedDueCappingSettings: number;
203
203
  errors: number;
204
204
  unshowableSends: number;
205
+ recipients: number;
205
206
  };
206
207
  export type PointStatInApp = {
207
208
  shows: number;
@@ -215,17 +216,20 @@ export type PointStatSendSms = {
215
216
  delivered: number;
216
217
  skipped: number;
217
218
  errors: number;
219
+ recipients: number;
218
220
  };
219
221
  export type PointStatSendLine = {
220
222
  sent: number;
221
223
  delivered: number;
222
224
  errors: number;
225
+ recipients: number;
223
226
  };
224
227
  export type PointStatSendWhatsApp = {
225
228
  sent: number;
226
229
  totalOpened: number;
227
230
  skipped: number;
228
231
  errors: number;
232
+ recipients: number;
229
233
  };
230
234
  export type PointStatSendData = {
231
235
  sent: number;
@@ -242,6 +246,7 @@ export type PointStatSendEmail = {
242
246
  complaints: number;
243
247
  skipped: number;
244
248
  errors: number;
249
+ recipients: number;
245
250
  };
246
251
  export type PointStatMessageBus = {};
247
252
  export type PointStatGoalEvent = {};