@pushwoosh/rpc-gateway-journey-data 0.26.339 → 0.26.340
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 +13 -3
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +4 -1
package/data.js
CHANGED
|
@@ -2842,6 +2842,15 @@ export const data = {
|
|
|
2842
2842
|
}
|
|
2843
2843
|
}
|
|
2844
2844
|
},
|
|
2845
|
+
"pushwoosh.cj.journey.BooleanSplitterEventConditions": {
|
|
2846
|
+
"type": "I",
|
|
2847
|
+
"fields": {
|
|
2848
|
+
"conditions": {
|
|
2849
|
+
"type": "pushwoosh.cj.journey.BooleanSplitterEventCondition",
|
|
2850
|
+
"array": true
|
|
2851
|
+
}
|
|
2852
|
+
}
|
|
2853
|
+
},
|
|
2845
2854
|
"pushwoosh.cj.journey.BooleanSplitterEventInfo": {
|
|
2846
2855
|
"type": "I",
|
|
2847
2856
|
"fields": {
|
|
@@ -2849,10 +2858,11 @@ export const data = {
|
|
|
2849
2858
|
"type": "string"
|
|
2850
2859
|
},
|
|
2851
2860
|
"eventConditions": {
|
|
2852
|
-
"type": "pushwoosh.cj.journey.
|
|
2853
|
-
"
|
|
2861
|
+
"type": "pushwoosh.cj.journey.BooleanSplitterEventConditions",
|
|
2862
|
+
"optional": true
|
|
2854
2863
|
}
|
|
2855
|
-
}
|
|
2864
|
+
},
|
|
2865
|
+
"oneofs": {}
|
|
2856
2866
|
},
|
|
2857
2867
|
"pushwoosh.cj.journey.PointParamsBooleanSplitter.LoadPolicy": {
|
|
2858
2868
|
"type": "E",
|
package/package.json
CHANGED
|
@@ -1081,9 +1081,12 @@ export type BooleanSplitterEventCondition = {
|
|
|
1081
1081
|
dateFilterMode: DateFilterMode;
|
|
1082
1082
|
value: BooleanSplitterEventCondition_value;
|
|
1083
1083
|
};
|
|
1084
|
+
export type BooleanSplitterEventConditions = {
|
|
1085
|
+
conditions: BooleanSplitterEventCondition[];
|
|
1086
|
+
};
|
|
1084
1087
|
export type BooleanSplitterEventInfo = {
|
|
1085
1088
|
eventName: string;
|
|
1086
|
-
eventConditions
|
|
1089
|
+
eventConditions?: BooleanSplitterEventConditions;
|
|
1087
1090
|
};
|
|
1088
1091
|
export type PointParamsBooleanSplitter_LoadPolicy = 'UNKNOWN' | 'ALL' | 'FILTER';
|
|
1089
1092
|
export type PointParamsBooleanSplitter_SplitStrategy = 'SPLIT_FILTER' | 'SPLIT_TAGS' | 'SPLIT_EVENTS';
|