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

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
  },
@@ -3002,6 +3020,47 @@ export const data = {
3002
3020
  }
3003
3021
  }
3004
3022
  },
3023
+ "pushwoosh.cj.journey.ChannelStat": {
3024
+ "type": "I",
3025
+ "fields": {
3026
+ "channel": {
3027
+ "type": "string"
3028
+ },
3029
+ "sends": {
3030
+ "type": "number"
3031
+ },
3032
+ "openRate": {
3033
+ "type": "number"
3034
+ },
3035
+ "shown": {
3036
+ "type": "number"
3037
+ },
3038
+ "interactions": {
3039
+ "type": "number"
3040
+ },
3041
+ "opens": {
3042
+ "type": "number"
3043
+ },
3044
+ "recipients": {
3045
+ "type": "number"
3046
+ },
3047
+ "clicks": {
3048
+ "type": "number"
3049
+ },
3050
+ "softbounce": {
3051
+ "type": "number"
3052
+ },
3053
+ "hardbounce": {
3054
+ "type": "number"
3055
+ },
3056
+ "complaint": {
3057
+ "type": "number"
3058
+ },
3059
+ "unsubscribed": {
3060
+ "type": "number"
3061
+ }
3062
+ }
3063
+ },
3005
3064
  "pushwoosh.cj.journey.JourneyStatItems": {
3006
3065
  "type": "I",
3007
3066
  "fields": {
@@ -3048,6 +3107,13 @@ export const data = {
3048
3107
  },
3049
3108
  "totalSkipped": {
3050
3109
  "type": "number"
3110
+ },
3111
+ "sendingErrors": {
3112
+ "type": "number"
3113
+ },
3114
+ "channelsStat": {
3115
+ "type": "pushwoosh.cj.journey.ChannelStat",
3116
+ "mapKeyType": "string"
3051
3117
  }
3052
3118
  }
3053
3119
  },
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.243",
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 = {};
@@ -1172,6 +1178,20 @@ export type JourneyStatsByPointsItemGet = {
1172
1178
  waitingTravellers: number;
1173
1179
  entries: number;
1174
1180
  };
1181
+ export type ChannelStat = {
1182
+ channel: string;
1183
+ sends: number;
1184
+ openRate: number;
1185
+ shown: number;
1186
+ interactions: number;
1187
+ opens: number;
1188
+ recipients: number;
1189
+ clicks: number;
1190
+ softbounce: number;
1191
+ hardbounce: number;
1192
+ complaint: number;
1193
+ unsubscribed: number;
1194
+ };
1175
1195
  export type JourneyStatItems = {
1176
1196
  total: number;
1177
1197
  uniqueUsersCount: number;
@@ -1186,6 +1206,8 @@ export type JourneyStatItems = {
1186
1206
  pointsToGoalsMap: Record<string, GoalPointStats>;
1187
1207
  abSplitStats: Record<string, ABSplitStat>;
1188
1208
  totalSkipped: number;
1209
+ sendingErrors: number;
1210
+ channelsStat: Record<string, ChannelStat>;
1189
1211
  };
1190
1212
  export type PointOutputStat = {
1191
1213
  key: string;