@pushwoosh/rpc-gateway-journey-data 0.26.458 → 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": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.458",
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;