@pushwoosh/rpc-gateway-journey-data 0.26.242 → 0.26.244

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
@@ -504,6 +504,12 @@ export const data = {
504
504
  },
505
505
  "skippedDueCappingSettings": {
506
506
  "type": "number"
507
+ },
508
+ "errors": {
509
+ "type": "number"
510
+ },
511
+ "unshowableSends": {
512
+ "type": "number"
507
513
  }
508
514
  }
509
515
  },
@@ -538,6 +544,9 @@ export const data = {
538
544
  },
539
545
  "skipped": {
540
546
  "type": "number"
547
+ },
548
+ "errors": {
549
+ "type": "number"
541
550
  }
542
551
  }
543
552
  },
@@ -549,6 +558,9 @@ export const data = {
549
558
  },
550
559
  "delivered": {
551
560
  "type": "number"
561
+ },
562
+ "errors": {
563
+ "type": "number"
552
564
  }
553
565
  }
554
566
  },
@@ -563,6 +575,9 @@ export const data = {
563
575
  },
564
576
  "skipped": {
565
577
  "type": "number"
578
+ },
579
+ "errors": {
580
+ "type": "number"
566
581
  }
567
582
  }
568
583
  },
@@ -606,6 +621,9 @@ export const data = {
606
621
  },
607
622
  "skipped": {
608
623
  "type": "number"
624
+ },
625
+ "errors": {
626
+ "type": "number"
609
627
  }
610
628
  }
611
629
  },
@@ -1624,6 +1642,14 @@ export const data = {
1624
1642
  }
1625
1643
  }
1626
1644
  },
1645
+ "pushwoosh.cj.journey.UserIDTrackChangePolicy": {
1646
+ "type": "E",
1647
+ "values": [
1648
+ "DEFAULT",
1649
+ "TRACK",
1650
+ "DROP"
1651
+ ]
1652
+ },
1627
1653
  "pushwoosh.cj.journey.JourneyParams": {
1628
1654
  "type": "I",
1629
1655
  "fields": {
@@ -1638,6 +1664,9 @@ export const data = {
1638
1664
  },
1639
1665
  "conversionWindow": {
1640
1666
  "type": "pushwoosh.cj.journey.JourneyParamsConversionWindow"
1667
+ },
1668
+ "userIdTrackChangePolicy": {
1669
+ "type": "pushwoosh.cj.journey.UserIDTrackChangePolicy"
1641
1670
  }
1642
1671
  }
1643
1672
  },
@@ -3002,6 +3031,47 @@ export const data = {
3002
3031
  }
3003
3032
  }
3004
3033
  },
3034
+ "pushwoosh.cj.journey.ChannelStat": {
3035
+ "type": "I",
3036
+ "fields": {
3037
+ "channel": {
3038
+ "type": "string"
3039
+ },
3040
+ "sends": {
3041
+ "type": "number"
3042
+ },
3043
+ "openRate": {
3044
+ "type": "number"
3045
+ },
3046
+ "shown": {
3047
+ "type": "number"
3048
+ },
3049
+ "interactions": {
3050
+ "type": "number"
3051
+ },
3052
+ "opens": {
3053
+ "type": "number"
3054
+ },
3055
+ "recipients": {
3056
+ "type": "number"
3057
+ },
3058
+ "clicks": {
3059
+ "type": "number"
3060
+ },
3061
+ "softbounce": {
3062
+ "type": "number"
3063
+ },
3064
+ "hardbounce": {
3065
+ "type": "number"
3066
+ },
3067
+ "complaint": {
3068
+ "type": "number"
3069
+ },
3070
+ "unsubscribed": {
3071
+ "type": "number"
3072
+ }
3073
+ }
3074
+ },
3005
3075
  "pushwoosh.cj.journey.JourneyStatItems": {
3006
3076
  "type": "I",
3007
3077
  "fields": {
@@ -3048,6 +3118,13 @@ export const data = {
3048
3118
  },
3049
3119
  "totalSkipped": {
3050
3120
  "type": "number"
3121
+ },
3122
+ "sendingErrors": {
3123
+ "type": "number"
3124
+ },
3125
+ "channelsStat": {
3126
+ "type": "pushwoosh.cj.journey.ChannelStat",
3127
+ "mapKeyType": "string"
3051
3128
  }
3052
3129
  }
3053
3130
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.242",
3
+ "version": "0.26.244",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -185,6 +185,8 @@ export type PointStatSendPush = {
185
185
  conversion: number;
186
186
  skipped: number;
187
187
  skippedDueCappingSettings: number;
188
+ errors: number;
189
+ unshowableSends: number;
188
190
  };
189
191
  export type PointStatInApp = {
190
192
  shows: number;
@@ -197,15 +199,18 @@ export type PointStatSendSms = {
197
199
  sent: number;
198
200
  delivered: number;
199
201
  skipped: number;
202
+ errors: number;
200
203
  };
201
204
  export type PointStatSendLine = {
202
205
  sent: number;
203
206
  delivered: number;
207
+ errors: number;
204
208
  };
205
209
  export type PointStatSendWhatsApp = {
206
210
  sent: number;
207
211
  totalOpened: number;
208
212
  skipped: number;
213
+ errors: number;
209
214
  };
210
215
  export type PointStatSendData = {
211
216
  sent: number;
@@ -221,6 +226,7 @@ export type PointStatSendEmail = {
221
226
  softBounces: number;
222
227
  complaints: number;
223
228
  skipped: number;
229
+ errors: number;
224
230
  };
225
231
  export type PointStatMessageBus = {};
226
232
  export type PointStatGoalEvent = {};
@@ -656,11 +662,13 @@ export type JourneyParamsEntryCapping = {
656
662
  export type JourneyParamsConversionWindow = {
657
663
  seconds: number;
658
664
  };
665
+ export type UserIDTrackChangePolicy = 'DEFAULT' | 'TRACK' | 'DROP';
659
666
  export type JourneyParams = {
660
667
  silentHours: JourneyParamsSilentHours;
661
668
  capping: JourneyParamsEntryCapping;
662
669
  applicationCode: string;
663
670
  conversionWindow: JourneyParamsConversionWindow;
671
+ userIdTrackChangePolicy: UserIDTrackChangePolicy;
664
672
  };
665
673
  export type JourneyComment = {
666
674
  id: string;
@@ -1172,6 +1180,20 @@ export type JourneyStatsByPointsItemGet = {
1172
1180
  waitingTravellers: number;
1173
1181
  entries: number;
1174
1182
  };
1183
+ export type ChannelStat = {
1184
+ channel: string;
1185
+ sends: number;
1186
+ openRate: number;
1187
+ shown: number;
1188
+ interactions: number;
1189
+ opens: number;
1190
+ recipients: number;
1191
+ clicks: number;
1192
+ softbounce: number;
1193
+ hardbounce: number;
1194
+ complaint: number;
1195
+ unsubscribed: number;
1196
+ };
1175
1197
  export type JourneyStatItems = {
1176
1198
  total: number;
1177
1199
  uniqueUsersCount: number;
@@ -1186,6 +1208,8 @@ export type JourneyStatItems = {
1186
1208
  pointsToGoalsMap: Record<string, GoalPointStats>;
1187
1209
  abSplitStats: Record<string, ABSplitStat>;
1188
1210
  totalSkipped: number;
1211
+ sendingErrors: number;
1212
+ channelsStat: Record<string, ChannelStat>;
1189
1213
  };
1190
1214
  export type PointOutputStat = {
1191
1215
  key: string;