@pushwoosh/rpc-gateway-journey-data 0.27.79 → 0.27.80
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 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +3 -0
package/data.js
CHANGED
|
@@ -3811,6 +3811,13 @@ export const data = {
|
|
|
3811
3811
|
}
|
|
3812
3812
|
}
|
|
3813
3813
|
},
|
|
3814
|
+
"pushwoosh.cj.journey.BooleanSplitterTagAggregate": {
|
|
3815
|
+
"type": "E",
|
|
3816
|
+
"values": [
|
|
3817
|
+
"AGGREGATE_NONE",
|
|
3818
|
+
"AGGREGATE_COUNT"
|
|
3819
|
+
]
|
|
3820
|
+
},
|
|
3814
3821
|
"pushwoosh.cj.journey.BooleanSplitterTagCondition": {
|
|
3815
3822
|
"type": "I",
|
|
3816
3823
|
"fields": {
|
|
@@ -3825,6 +3832,12 @@ export const data = {
|
|
|
3825
3832
|
},
|
|
3826
3833
|
"valueRef": {
|
|
3827
3834
|
"type": "pushwoosh.cj.journey.BooleanSplitterValueRef"
|
|
3835
|
+
},
|
|
3836
|
+
"aggregate": {
|
|
3837
|
+
"type": "pushwoosh.cj.journey.BooleanSplitterTagAggregate"
|
|
3838
|
+
},
|
|
3839
|
+
"intValue": {
|
|
3840
|
+
"type": "pushwoosh.cj.journey.EventConditionValueInt"
|
|
3828
3841
|
}
|
|
3829
3842
|
}
|
|
3830
3843
|
},
|
package/package.json
CHANGED
|
@@ -1403,11 +1403,14 @@ export type BooleanSplitterValueRef = {
|
|
|
1403
1403
|
eventName: string;
|
|
1404
1404
|
attributeName: string;
|
|
1405
1405
|
};
|
|
1406
|
+
export type BooleanSplitterTagAggregate = 'AGGREGATE_NONE' | 'AGGREGATE_COUNT';
|
|
1406
1407
|
export type BooleanSplitterTagCondition = {
|
|
1407
1408
|
tagName: string;
|
|
1408
1409
|
type: PointEventAttributeType;
|
|
1409
1410
|
operator: PointEventConditionOperator;
|
|
1410
1411
|
valueRef: BooleanSplitterValueRef;
|
|
1412
|
+
aggregate: BooleanSplitterTagAggregate;
|
|
1413
|
+
intValue: EventConditionValueInt;
|
|
1411
1414
|
};
|
|
1412
1415
|
export type BooleanSplitterTagBranch_condition_filterExpression = {
|
|
1413
1416
|
type: 'filterExpression';
|