@pushwoosh/rpc-gateway-journey-data 0.27.77 → 0.27.79
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 +40 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +7 -0
package/data.js
CHANGED
|
@@ -3993,6 +3993,42 @@ export const data = {
|
|
|
3993
3993
|
"LINE_TOKEN_EXISTS"
|
|
3994
3994
|
]
|
|
3995
3995
|
},
|
|
3996
|
+
"pushwoosh.cj.journey.ReachabilityChannel": {
|
|
3997
|
+
"type": "E",
|
|
3998
|
+
"values": [
|
|
3999
|
+
"REACHABILITY_CHANNEL_UNKNOWN",
|
|
4000
|
+
"REACHABILITY_CHANNEL_PUSH",
|
|
4001
|
+
"REACHABILITY_CHANNEL_EMAIL",
|
|
4002
|
+
"REACHABILITY_CHANNEL_SMS",
|
|
4003
|
+
"REACHABILITY_CHANNEL_WHATSAPP",
|
|
4004
|
+
"REACHABILITY_CHANNEL_LINE",
|
|
4005
|
+
"REACHABILITY_CHANNEL_INAPP",
|
|
4006
|
+
"REACHABILITY_CHANNEL_WALLET"
|
|
4007
|
+
]
|
|
4008
|
+
},
|
|
4009
|
+
"pushwoosh.cj.journey.PlatformGroup": {
|
|
4010
|
+
"type": "E",
|
|
4011
|
+
"values": [
|
|
4012
|
+
"PLATFORM_GROUP_UNKNOWN",
|
|
4013
|
+
"PLATFORM_GROUP_IOS",
|
|
4014
|
+
"PLATFORM_GROUP_ANDROID",
|
|
4015
|
+
"PLATFORM_GROUP_WEB",
|
|
4016
|
+
"PLATFORM_GROUP_DESKTOP",
|
|
4017
|
+
"PLATFORM_GROUP_AMAZON"
|
|
4018
|
+
]
|
|
4019
|
+
},
|
|
4020
|
+
"pushwoosh.cj.journey.ChannelCheck": {
|
|
4021
|
+
"type": "I",
|
|
4022
|
+
"fields": {
|
|
4023
|
+
"channel": {
|
|
4024
|
+
"type": "pushwoosh.cj.journey.ReachabilityChannel"
|
|
4025
|
+
},
|
|
4026
|
+
"platformGroups": {
|
|
4027
|
+
"type": "pushwoosh.cj.journey.PlatformGroup",
|
|
4028
|
+
"array": true
|
|
4029
|
+
}
|
|
4030
|
+
}
|
|
4031
|
+
},
|
|
3996
4032
|
"pushwoosh.cj.journey.PointParamsFilter": {
|
|
3997
4033
|
"type": "I",
|
|
3998
4034
|
"fields": {
|
|
@@ -4001,6 +4037,10 @@ export const data = {
|
|
|
4001
4037
|
},
|
|
4002
4038
|
"filterRaw": {
|
|
4003
4039
|
"type": "string"
|
|
4040
|
+
},
|
|
4041
|
+
"channels": {
|
|
4042
|
+
"type": "pushwoosh.cj.journey.ChannelCheck",
|
|
4043
|
+
"array": true
|
|
4004
4044
|
}
|
|
4005
4045
|
}
|
|
4006
4046
|
},
|
package/package.json
CHANGED
|
@@ -1461,9 +1461,16 @@ export type PointParamsInapp = {
|
|
|
1461
1461
|
messageType: MessageType;
|
|
1462
1462
|
};
|
|
1463
1463
|
export type Filter = 'CUSTOM' | 'EMAIL_EXISTS' | 'PUSH_TOKEN_EXISTS' | 'SMS_TOKEN_EXISTS' | 'WHATSAPP_TOKEN_EXISTS' | 'LINE_TOKEN_EXISTS';
|
|
1464
|
+
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';
|
|
1465
|
+
export type PlatformGroup = 'PLATFORM_GROUP_UNKNOWN' | 'PLATFORM_GROUP_IOS' | 'PLATFORM_GROUP_ANDROID' | 'PLATFORM_GROUP_WEB' | 'PLATFORM_GROUP_DESKTOP' | 'PLATFORM_GROUP_AMAZON';
|
|
1466
|
+
export type ChannelCheck = {
|
|
1467
|
+
channel: ReachabilityChannel;
|
|
1468
|
+
platformGroups: PlatformGroup[];
|
|
1469
|
+
};
|
|
1464
1470
|
export type PointParamsFilter = {
|
|
1465
1471
|
filter: Filter;
|
|
1466
1472
|
filterRaw: string;
|
|
1473
|
+
channels: ChannelCheck[];
|
|
1467
1474
|
};
|
|
1468
1475
|
export type BehaviorSplitter = {
|
|
1469
1476
|
enabled: boolean;
|