@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 +4 -1
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +1 -1
package/data.js
CHANGED
package/package.json
CHANGED
|
@@ -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;
|