@pushwoosh/rpc-gateway-journey-data 0.27.57 → 0.27.59

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
@@ -456,6 +456,9 @@ export const data = {
456
456
  "fields": {
457
457
  "uuid": {
458
458
  "type": "string"
459
+ },
460
+ "withUsersLeft": {
461
+ "type": "boolean"
459
462
  }
460
463
  }
461
464
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.27.57",
3
+ "version": "0.27.59",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -87,6 +87,7 @@ export type ResumeJourneyResponse = {
87
87
  };
88
88
  export type GetJourneyVersionsRequest = {
89
89
  uuid?: string;
90
+ withUsersLeft?: boolean;
90
91
  };
91
92
  export type JourneyVersionStatus = 'JOURNEY_VERSION_STATUS_UNKNOWN' | 'JOURNEY_VERSION_STATUS_ACTIVE' | 'JOURNEY_VERSION_STATUS_PAUSED' | 'JOURNEY_VERSION_STATUS_ACTIVE_CLOSED' | 'JOURNEY_VERSION_STATUS_INACTIVE';
92
93
  export type JourneyVersion = {