@pushwoosh/rpc-gateway-journey-data 0.26.449 → 0.26.451

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
@@ -2474,6 +2474,9 @@ export const data = {
2474
2474
  },
2475
2475
  "deliverySplitParams": {
2476
2476
  "type": "pushwoosh.cj.journey.BehaviorSplitter"
2477
+ },
2478
+ "ttl": {
2479
+ "type": "number"
2477
2480
  }
2478
2481
  },
2479
2482
  "oneofs": {}
@@ -3713,9 +3716,6 @@ export const data = {
3713
3716
  "startAt": {
3714
3717
  "type": "Date"
3715
3718
  },
3716
- "dynamicEntry": {
3717
- "type": "boolean"
3718
- },
3719
3719
  "entryMode": {
3720
3720
  "type": "pushwoosh.cj.journey.EntryMode"
3721
3721
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.449",
3
+ "version": "0.26.451",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -914,6 +914,7 @@ export type PointParamsSendPush = {
914
914
  sendRate: SendRate;
915
915
  messageType: MessageType;
916
916
  deliverySplitParams: BehaviorSplitter;
917
+ ttl: number;
917
918
  };
918
919
  export type PointParamsSendSms = {
919
920
  presetCode: string;
@@ -1369,7 +1370,6 @@ export type PointParamsStartBySegment = {
1369
1370
  filterTitle: string;
1370
1371
  applicationTitle: string;
1371
1372
  startAt: Date;
1372
- dynamicEntry: boolean;
1373
1373
  entryMode: EntryMode;
1374
1374
  };
1375
1375
  export type EntryMode = 'ENTRY_MODE_UNKNOWN' | 'ENTRY_MODE_EXISTING_ONLY' | 'ENTRY_MODE_EXISTING_AND_NEW' | 'ENTRY_MODE_NEW_ONLY';