@pushwoosh/rpc-gateway-journey-data 0.27.70 → 0.27.71
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 +24 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +8 -0
package/data.js
CHANGED
|
@@ -2938,6 +2938,9 @@ export const data = {
|
|
|
2938
2938
|
},
|
|
2939
2939
|
"useLatestUserDevice": {
|
|
2940
2940
|
"type": "boolean"
|
|
2941
|
+
},
|
|
2942
|
+
"controlGroup": {
|
|
2943
|
+
"type": "string"
|
|
2941
2944
|
}
|
|
2942
2945
|
},
|
|
2943
2946
|
"oneofs": {}
|
|
@@ -2985,6 +2988,9 @@ export const data = {
|
|
|
2985
2988
|
},
|
|
2986
2989
|
"messageType": {
|
|
2987
2990
|
"type": "pushwoosh.cj.journey.MessageType"
|
|
2991
|
+
},
|
|
2992
|
+
"controlGroup": {
|
|
2993
|
+
"type": "string"
|
|
2988
2994
|
}
|
|
2989
2995
|
},
|
|
2990
2996
|
"oneofs": {}
|
|
@@ -3026,6 +3032,9 @@ export const data = {
|
|
|
3026
3032
|
},
|
|
3027
3033
|
"vouchersParams": {
|
|
3028
3034
|
"type": "pushwoosh.cj.journey.VoucherParams"
|
|
3035
|
+
},
|
|
3036
|
+
"controlGroup": {
|
|
3037
|
+
"type": "string"
|
|
3029
3038
|
}
|
|
3030
3039
|
},
|
|
3031
3040
|
"oneofs": {}
|
|
@@ -3061,6 +3070,9 @@ export const data = {
|
|
|
3061
3070
|
},
|
|
3062
3071
|
"sendRate": {
|
|
3063
3072
|
"type": "pushwoosh.cj.journey.SendRate"
|
|
3073
|
+
},
|
|
3074
|
+
"controlGroup": {
|
|
3075
|
+
"type": "string"
|
|
3064
3076
|
}
|
|
3065
3077
|
},
|
|
3066
3078
|
"oneofs": {}
|
|
@@ -3096,6 +3108,9 @@ export const data = {
|
|
|
3096
3108
|
},
|
|
3097
3109
|
"sendRate": {
|
|
3098
3110
|
"type": "pushwoosh.cj.journey.SendRate"
|
|
3111
|
+
},
|
|
3112
|
+
"controlGroup": {
|
|
3113
|
+
"type": "string"
|
|
3099
3114
|
}
|
|
3100
3115
|
},
|
|
3101
3116
|
"oneofs": {}
|
|
@@ -3137,6 +3152,9 @@ export const data = {
|
|
|
3137
3152
|
},
|
|
3138
3153
|
"splitParams": {
|
|
3139
3154
|
"type": "pushwoosh.cj.journey.BehaviorSplitter"
|
|
3155
|
+
},
|
|
3156
|
+
"controlGroup": {
|
|
3157
|
+
"type": "string"
|
|
3140
3158
|
}
|
|
3141
3159
|
},
|
|
3142
3160
|
"oneofs": {}
|
|
@@ -3291,6 +3309,9 @@ export const data = {
|
|
|
3291
3309
|
},
|
|
3292
3310
|
"messageType": {
|
|
3293
3311
|
"type": "pushwoosh.cj.journey.MessageType"
|
|
3312
|
+
},
|
|
3313
|
+
"controlGroup": {
|
|
3314
|
+
"type": "string"
|
|
3294
3315
|
}
|
|
3295
3316
|
},
|
|
3296
3317
|
"oneofs": {}
|
|
@@ -3371,6 +3392,9 @@ export const data = {
|
|
|
3371
3392
|
},
|
|
3372
3393
|
"senderInfoSource": {
|
|
3373
3394
|
"type": "pushwoosh.cj.journey.ValueSource"
|
|
3395
|
+
},
|
|
3396
|
+
"controlGroup": {
|
|
3397
|
+
"type": "string"
|
|
3374
3398
|
}
|
|
3375
3399
|
},
|
|
3376
3400
|
"oneofs": {}
|
package/package.json
CHANGED
|
@@ -1067,6 +1067,7 @@ export type PointParamsSendPush = {
|
|
|
1067
1067
|
deliverySplitParams: BehaviorSplitter;
|
|
1068
1068
|
ttl: number;
|
|
1069
1069
|
useLatestUserDevice: boolean;
|
|
1070
|
+
controlGroup: string;
|
|
1070
1071
|
};
|
|
1071
1072
|
export type PointParamsSendSms = {
|
|
1072
1073
|
presetCode: string;
|
|
@@ -1082,6 +1083,7 @@ export type PointParamsSendSms = {
|
|
|
1082
1083
|
vouchersParams: VoucherParams;
|
|
1083
1084
|
sendRate: SendRate;
|
|
1084
1085
|
messageType: MessageType;
|
|
1086
|
+
controlGroup: string;
|
|
1085
1087
|
};
|
|
1086
1088
|
export type PointParamsSendLine = {
|
|
1087
1089
|
presetCode: string;
|
|
@@ -1095,6 +1097,7 @@ export type PointParamsSendLine = {
|
|
|
1095
1097
|
personalise: PersonalisedParams;
|
|
1096
1098
|
capping: Capping;
|
|
1097
1099
|
vouchersParams: VoucherParams;
|
|
1100
|
+
controlGroup: string;
|
|
1098
1101
|
};
|
|
1099
1102
|
export type PointParamsSendKakao = {
|
|
1100
1103
|
presetCode: string;
|
|
@@ -1106,6 +1109,7 @@ export type PointParamsSendKakao = {
|
|
|
1106
1109
|
sendByUserId: boolean;
|
|
1107
1110
|
capping: Capping;
|
|
1108
1111
|
sendRate: SendRate;
|
|
1112
|
+
controlGroup: string;
|
|
1109
1113
|
};
|
|
1110
1114
|
export type PointParamsSendTelegram = {
|
|
1111
1115
|
content: string;
|
|
@@ -1117,6 +1121,7 @@ export type PointParamsSendTelegram = {
|
|
|
1117
1121
|
sendByUserId: boolean;
|
|
1118
1122
|
capping: Capping;
|
|
1119
1123
|
sendRate: SendRate;
|
|
1124
|
+
controlGroup: string;
|
|
1120
1125
|
};
|
|
1121
1126
|
export type PointParamsSendViber = {
|
|
1122
1127
|
presetCode: string;
|
|
@@ -1130,6 +1135,7 @@ export type PointParamsSendViber = {
|
|
|
1130
1135
|
capping: Capping;
|
|
1131
1136
|
messageType: MessageType;
|
|
1132
1137
|
splitParams: BehaviorSplitter;
|
|
1138
|
+
controlGroup: string;
|
|
1133
1139
|
};
|
|
1134
1140
|
export type WhatsAppPersonalisedParams = {
|
|
1135
1141
|
enabled: boolean;
|
|
@@ -1181,6 +1187,7 @@ export type PointParamsSendWhatsApp = {
|
|
|
1181
1187
|
capping: Capping;
|
|
1182
1188
|
vouchersParams: VoucherParams;
|
|
1183
1189
|
messageType: MessageType;
|
|
1190
|
+
controlGroup: string;
|
|
1184
1191
|
};
|
|
1185
1192
|
export type PointParamsSendEmail = {
|
|
1186
1193
|
applicationCode: string;
|
|
@@ -1206,6 +1213,7 @@ export type PointParamsSendEmail = {
|
|
|
1206
1213
|
emailCategory: string;
|
|
1207
1214
|
subjectSource: ValueSource;
|
|
1208
1215
|
senderInfoSource: ValueSource;
|
|
1216
|
+
controlGroup: string;
|
|
1209
1217
|
};
|
|
1210
1218
|
export type ValueSource = 'VALUE_SOURCE_DEFAULT' | 'VALUE_SOURCE_FROM_POINT' | 'VALUE_SOURCE_FROM_PRESET';
|
|
1211
1219
|
export type From = {
|