@pushwoosh/rpc-gateway-journey-data 0.26.218 → 0.26.220

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
@@ -3076,7 +3076,8 @@ export const data = {
3076
3076
  "unknown",
3077
3077
  "inJourneyNow",
3078
3078
  "exited",
3079
- "droppedOff"
3079
+ "droppedOff",
3080
+ "goalReached"
3080
3081
  ]
3081
3082
  },
3082
3083
  "pushwoosh.cj.journey.GetJourneyUsersResponse.UserPoint": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.218",
3
+ "version": "0.26.220",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -1167,7 +1167,7 @@ export type GetJourneyUsersRequest = {
1167
1167
  pageSize?: number;
1168
1168
  page?: number;
1169
1169
  };
1170
- export type UserStatus = 'unknown' | 'inJourneyNow' | 'exited' | 'droppedOff';
1170
+ export type UserStatus = 'unknown' | 'inJourneyNow' | 'exited' | 'droppedOff' | 'goalReached';
1171
1171
  export type GetJourneyUsersResponse_UserPoint = {
1172
1172
  userId: string;
1173
1173
  lastPointType: string;