@pushwoosh/rpc-gateway-journey-data 0.26.457 → 0.26.459

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
@@ -1876,7 +1876,10 @@ export const data = {
1876
1876
  "NOTEQ",
1877
1877
  "IN",
1878
1878
  "NOTIN",
1879
- "BETWEEN"
1879
+ "BETWEEN",
1880
+ "STARTS_WITH",
1881
+ "ENDS_WITH",
1882
+ "CONTAINS"
1880
1883
  ]
1881
1884
  },
1882
1885
  "pushwoosh.cj.journey.PointEventCondition": {
@@ -2477,6 +2480,9 @@ export const data = {
2477
2480
  },
2478
2481
  "ttl": {
2479
2482
  "type": "number"
2483
+ },
2484
+ "useLatestUserDevice": {
2485
+ "type": "boolean"
2480
2486
  }
2481
2487
  },
2482
2488
  "oneofs": {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.457",
3
+ "version": "0.26.459",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -649,7 +649,7 @@ export type GetUserFlowResponse = {
649
649
  };
650
650
  export type JourneyStatus = 'STATUS_DRAFT' | 'STATUS_RUNNING' | 'STATUS_FINISHED' | 'STATUS_ARCHIVED' | 'STATUS_PAUSED' | 'STATUS_UNKNOWN';
651
651
  export type PointEventAttributeType = 'ATTRIBUTE_UNKNOWN' | 'INTEGER' | 'STRING' | 'LIST' | 'DATE' | 'BOOLEAN' | 'FLOAT';
652
- export type PointEventConditionOperator = 'OPERATOR_UNKNOWN' | 'EQ' | 'LTE' | 'GTE' | 'NOTEQ' | 'IN' | 'NOTIN' | 'BETWEEN';
652
+ export type PointEventConditionOperator = 'OPERATOR_UNKNOWN' | 'EQ' | 'LTE' | 'GTE' | 'NOTEQ' | 'IN' | 'NOTIN' | 'BETWEEN' | 'STARTS_WITH' | 'ENDS_WITH' | 'CONTAINS';
653
653
  export type PointEventCondition_value_int = {
654
654
  type: 'int';
655
655
  data: PointEventConditionValueInt;
@@ -915,6 +915,7 @@ export type PointParamsSendPush = {
915
915
  messageType: MessageType;
916
916
  deliverySplitParams: BehaviorSplitter;
917
917
  ttl: number;
918
+ useLatestUserDevice: boolean;
918
919
  };
919
920
  export type PointParamsSendSms = {
920
921
  presetCode: string;