@pushwoosh/rpc-gateway-journey-data 0.26.281 → 0.26.283

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
@@ -3056,6 +3056,9 @@ export const data = {
3056
3056
  },
3057
3057
  "entries": {
3058
3058
  "type": "number"
3059
+ },
3060
+ "dropped": {
3061
+ "type": "number"
3059
3062
  }
3060
3063
  }
3061
3064
  },
@@ -3118,6 +3121,9 @@ export const data = {
3118
3121
  "leftByError": {
3119
3122
  "type": "number"
3120
3123
  },
3124
+ "dropped": {
3125
+ "type": "number"
3126
+ },
3121
3127
  "inside": {
3122
3128
  "type": "number"
3123
3129
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.281",
3
+ "version": "0.26.283",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -1187,6 +1187,7 @@ export type JourneyStatsByPointsItemGet = {
1187
1187
  pointOutputStat: PointOutputStat[];
1188
1188
  waitingTravellers: number;
1189
1189
  entries: number;
1190
+ dropped: number;
1190
1191
  };
1191
1192
  export type ChannelStat = {
1192
1193
  channel: string;
@@ -1208,6 +1209,7 @@ export type JourneyStatItems = {
1208
1209
  avgCtr: number;
1209
1210
  left: number;
1210
1211
  leftByError: number;
1212
+ dropped: number;
1211
1213
  inside: number;
1212
1214
  achievedGoal: number;
1213
1215
  goals: Record<string, number>;