@pushwoosh/rpc-gateway-journey-data 0.27.31 → 0.27.33

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
@@ -3503,6 +3503,9 @@ export const data = {
3503
3503
  },
3504
3504
  "floatRange": {
3505
3505
  "type": "pushwoosh.cj.journey.EventConditionValueFloatRange"
3506
+ },
3507
+ "valueRef": {
3508
+ "type": "pushwoosh.cj.journey.BooleanSplitterValueRef"
3506
3509
  }
3507
3510
  },
3508
3511
  "oneofs": {
@@ -3514,7 +3517,72 @@ export const data = {
3514
3517
  "strRange",
3515
3518
  "bool",
3516
3519
  "float",
3517
- "floatRange"
3520
+ "floatRange",
3521
+ "valueRef"
3522
+ ]
3523
+ }
3524
+ }
3525
+ },
3526
+ "pushwoosh.cj.journey.BooleanSplitterValueRef.Source": {
3527
+ "type": "E",
3528
+ "values": [
3529
+ "SOURCE_UNKNOWN",
3530
+ "SOURCE_TAG",
3531
+ "SOURCE_EVENT_ATTRIBUTE"
3532
+ ]
3533
+ },
3534
+ "pushwoosh.cj.journey.BooleanSplitterValueRef": {
3535
+ "type": "I",
3536
+ "fields": {
3537
+ "source": {
3538
+ "type": "pushwoosh.cj.journey.BooleanSplitterValueRef.Source"
3539
+ },
3540
+ "type": {
3541
+ "type": "pushwoosh.cj.journey.PointEventAttributeType"
3542
+ },
3543
+ "tagName": {
3544
+ "type": "string"
3545
+ },
3546
+ "eventName": {
3547
+ "type": "string"
3548
+ },
3549
+ "attributeName": {
3550
+ "type": "string"
3551
+ }
3552
+ }
3553
+ },
3554
+ "pushwoosh.cj.journey.BooleanSplitterTagCondition": {
3555
+ "type": "I",
3556
+ "fields": {
3557
+ "tagName": {
3558
+ "type": "string"
3559
+ },
3560
+ "type": {
3561
+ "type": "pushwoosh.cj.journey.PointEventAttributeType"
3562
+ },
3563
+ "operator": {
3564
+ "type": "pushwoosh.cj.journey.PointEventConditionOperator"
3565
+ },
3566
+ "valueRef": {
3567
+ "type": "pushwoosh.cj.journey.BooleanSplitterValueRef"
3568
+ }
3569
+ }
3570
+ },
3571
+ "pushwoosh.cj.journey.BooleanSplitterTagBranch": {
3572
+ "type": "I",
3573
+ "fields": {
3574
+ "filterExpression": {
3575
+ "type": "pushwoosh.objects.filters.v1.FilterExpression"
3576
+ },
3577
+ "tagCondition": {
3578
+ "type": "pushwoosh.cj.journey.BooleanSplitterTagCondition"
3579
+ }
3580
+ },
3581
+ "oneofs": {
3582
+ "condition": {
3583
+ "oneof": [
3584
+ "filterExpression",
3585
+ "tagCondition"
3518
3586
  ]
3519
3587
  }
3520
3588
  }
@@ -3576,6 +3644,10 @@ export const data = {
3576
3644
  "event": {
3577
3645
  "type": "pushwoosh.cj.journey.BooleanSplitterEventInfo",
3578
3646
  "optional": true
3647
+ },
3648
+ "tagBranches": {
3649
+ "type": "pushwoosh.cj.journey.BooleanSplitterTagBranch",
3650
+ "array": true
3579
3651
  }
3580
3652
  },
3581
3653
  "oneofs": {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.27.31",
3
+ "version": "0.27.33",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -1301,7 +1301,11 @@ export type BooleanSplitterEventCondition_value_floatRange = {
1301
1301
  type: 'floatRange';
1302
1302
  data: EventConditionValueFloatRange;
1303
1303
  };
1304
- export type BooleanSplitterEventCondition_value = BooleanSplitterEventCondition_value_int | BooleanSplitterEventCondition_value_intRange | BooleanSplitterEventCondition_value_str | BooleanSplitterEventCondition_value_strRange | BooleanSplitterEventCondition_value_bool | BooleanSplitterEventCondition_value_float | BooleanSplitterEventCondition_value_floatRange;
1304
+ export type BooleanSplitterEventCondition_value_valueRef = {
1305
+ type: 'valueRef';
1306
+ data: BooleanSplitterValueRef;
1307
+ };
1308
+ export type BooleanSplitterEventCondition_value = BooleanSplitterEventCondition_value_int | BooleanSplitterEventCondition_value_intRange | BooleanSplitterEventCondition_value_str | BooleanSplitterEventCondition_value_strRange | BooleanSplitterEventCondition_value_bool | BooleanSplitterEventCondition_value_float | BooleanSplitterEventCondition_value_floatRange | BooleanSplitterEventCondition_value_valueRef;
1305
1309
  export type BooleanSplitterEventCondition = {
1306
1310
  attributeName: string;
1307
1311
  type: PointEventAttributeType;
@@ -1309,6 +1313,32 @@ export type BooleanSplitterEventCondition = {
1309
1313
  dateFilterMode: DateFilterMode;
1310
1314
  value: BooleanSplitterEventCondition_value;
1311
1315
  };
1316
+ export type BooleanSplitterValueRef_Source = 'SOURCE_UNKNOWN' | 'SOURCE_TAG' | 'SOURCE_EVENT_ATTRIBUTE';
1317
+ export type BooleanSplitterValueRef = {
1318
+ source: BooleanSplitterValueRef_Source;
1319
+ type: PointEventAttributeType;
1320
+ tagName: string;
1321
+ eventName: string;
1322
+ attributeName: string;
1323
+ };
1324
+ export type BooleanSplitterTagCondition = {
1325
+ tagName: string;
1326
+ type: PointEventAttributeType;
1327
+ operator: PointEventConditionOperator;
1328
+ valueRef: BooleanSplitterValueRef;
1329
+ };
1330
+ export type BooleanSplitterTagBranch_condition_filterExpression = {
1331
+ type: 'filterExpression';
1332
+ data: pushwoosh_objects_filters_v1_FilterExpression;
1333
+ };
1334
+ export type BooleanSplitterTagBranch_condition_tagCondition = {
1335
+ type: 'tagCondition';
1336
+ data: BooleanSplitterTagCondition;
1337
+ };
1338
+ export type BooleanSplitterTagBranch_condition = BooleanSplitterTagBranch_condition_filterExpression | BooleanSplitterTagBranch_condition_tagCondition;
1339
+ export type BooleanSplitterTagBranch = {
1340
+ condition: BooleanSplitterTagBranch_condition;
1341
+ };
1312
1342
  export type BooleanSplitterEventConditions = {
1313
1343
  conditions: BooleanSplitterEventCondition[];
1314
1344
  };
@@ -1324,6 +1354,7 @@ export type PointParamsBooleanSplitter = {
1324
1354
  splitStrategy: PointParamsBooleanSplitter_SplitStrategy;
1325
1355
  filterExpressions: pushwoosh_objects_filters_v1_FilterExpression[];
1326
1356
  event?: BooleanSplitterEventInfo;
1357
+ tagBranches: BooleanSplitterTagBranch[];
1327
1358
  };
1328
1359
  export type PointParamsWaitEvent = {
1329
1360
  events: PointWaitEventInfo[];