@pushwoosh/rpc-gateway-journey-data 0.27.72 → 0.27.74

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