@pushwoosh/rpc-gateway-journey-data 0.27.78 → 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 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
  },
@@ -3993,6 +4006,42 @@ export const data = {
3993
4006
  "LINE_TOKEN_EXISTS"
3994
4007
  ]
3995
4008
  },
4009
+ "pushwoosh.cj.journey.ReachabilityChannel": {
4010
+ "type": "E",
4011
+ "values": [
4012
+ "REACHABILITY_CHANNEL_UNKNOWN",
4013
+ "REACHABILITY_CHANNEL_PUSH",
4014
+ "REACHABILITY_CHANNEL_EMAIL",
4015
+ "REACHABILITY_CHANNEL_SMS",
4016
+ "REACHABILITY_CHANNEL_WHATSAPP",
4017
+ "REACHABILITY_CHANNEL_LINE",
4018
+ "REACHABILITY_CHANNEL_INAPP",
4019
+ "REACHABILITY_CHANNEL_WALLET"
4020
+ ]
4021
+ },
4022
+ "pushwoosh.cj.journey.PlatformGroup": {
4023
+ "type": "E",
4024
+ "values": [
4025
+ "PLATFORM_GROUP_UNKNOWN",
4026
+ "PLATFORM_GROUP_IOS",
4027
+ "PLATFORM_GROUP_ANDROID",
4028
+ "PLATFORM_GROUP_WEB",
4029
+ "PLATFORM_GROUP_DESKTOP",
4030
+ "PLATFORM_GROUP_AMAZON"
4031
+ ]
4032
+ },
4033
+ "pushwoosh.cj.journey.ChannelCheck": {
4034
+ "type": "I",
4035
+ "fields": {
4036
+ "channel": {
4037
+ "type": "pushwoosh.cj.journey.ReachabilityChannel"
4038
+ },
4039
+ "platformGroups": {
4040
+ "type": "pushwoosh.cj.journey.PlatformGroup",
4041
+ "array": true
4042
+ }
4043
+ }
4044
+ },
3996
4045
  "pushwoosh.cj.journey.PointParamsFilter": {
3997
4046
  "type": "I",
3998
4047
  "fields": {
@@ -4001,6 +4050,10 @@ export const data = {
4001
4050
  },
4002
4051
  "filterRaw": {
4003
4052
  "type": "string"
4053
+ },
4054
+ "channels": {
4055
+ "type": "pushwoosh.cj.journey.ChannelCheck",
4056
+ "array": true
4004
4057
  }
4005
4058
  }
4006
4059
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.27.78",
3
+ "version": "0.27.80",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -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';
@@ -1461,9 +1464,16 @@ export type PointParamsInapp = {
1461
1464
  messageType: MessageType;
1462
1465
  };
1463
1466
  export type Filter = 'CUSTOM' | 'EMAIL_EXISTS' | 'PUSH_TOKEN_EXISTS' | 'SMS_TOKEN_EXISTS' | 'WHATSAPP_TOKEN_EXISTS' | 'LINE_TOKEN_EXISTS';
1467
+ export type ReachabilityChannel = 'REACHABILITY_CHANNEL_UNKNOWN' | 'REACHABILITY_CHANNEL_PUSH' | 'REACHABILITY_CHANNEL_EMAIL' | 'REACHABILITY_CHANNEL_SMS' | 'REACHABILITY_CHANNEL_WHATSAPP' | 'REACHABILITY_CHANNEL_LINE' | 'REACHABILITY_CHANNEL_INAPP' | 'REACHABILITY_CHANNEL_WALLET';
1468
+ export type PlatformGroup = 'PLATFORM_GROUP_UNKNOWN' | 'PLATFORM_GROUP_IOS' | 'PLATFORM_GROUP_ANDROID' | 'PLATFORM_GROUP_WEB' | 'PLATFORM_GROUP_DESKTOP' | 'PLATFORM_GROUP_AMAZON';
1469
+ export type ChannelCheck = {
1470
+ channel: ReachabilityChannel;
1471
+ platformGroups: PlatformGroup[];
1472
+ };
1464
1473
  export type PointParamsFilter = {
1465
1474
  filter: Filter;
1466
1475
  filterRaw: string;
1476
+ channels: ChannelCheck[];
1467
1477
  };
1468
1478
  export type BehaviorSplitter = {
1469
1479
  enabled: boolean;