@bprotsyk/aso-core 1.1.8 → 1.1.10

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.
Files changed (45) hide show
  1. package/lib/aso/config/aso-config-v0.d.ts +271 -0
  2. package/lib/aso/config/aso-config-v0.js +57 -0
  3. package/lib/aso/config/aso-config-v1.d.ts +263 -0
  4. package/lib/aso/config/aso-config-v1.js +57 -0
  5. package/lib/aso/config/aso-config-v2.d.ts +230 -0
  6. package/lib/aso/config/aso-config-v2.js +55 -0
  7. package/lib/aso/config/aso-config-v3.d.ts +227 -0
  8. package/lib/aso/config/aso-config-v3.js +56 -0
  9. package/lib/aso/config/aso-config-v4.d.ts +205 -0
  10. package/lib/aso/config/aso-config-v4.js +56 -0
  11. package/lib/aso/config/aso-default-config.d.ts +56 -0
  12. package/lib/aso/config/aso-default-config.js +2 -0
  13. package/lib/aso/config/aso-single-response.d.ts +5 -0
  14. package/lib/aso/config/aso-single-response.js +2 -0
  15. package/lib/aso/offer/config/aso-config-v0.d.ts +271 -0
  16. package/lib/aso/offer/config/aso-config-v0.js +57 -0
  17. package/lib/aso/offer/config/aso-config-v1.d.ts +263 -0
  18. package/lib/aso/offer/config/aso-config-v1.js +57 -0
  19. package/lib/aso/offer/config/aso-config-v2.d.ts +230 -0
  20. package/lib/aso/offer/config/aso-config-v2.js +55 -0
  21. package/lib/aso/offer/config/aso-config-v3.d.ts +227 -0
  22. package/lib/aso/offer/config/aso-config-v3.js +56 -0
  23. package/lib/aso/offer/config/aso-config-v4.d.ts +205 -0
  24. package/lib/aso/offer/config/aso-config-v4.js +56 -0
  25. package/lib/aso/offer/config/aso-default-config.d.ts +56 -0
  26. package/lib/aso/offer/config/aso-default-config.js +2 -0
  27. package/lib/aso/offer/config/aso-single-response.d.ts +5 -0
  28. package/lib/aso/offer/config/aso-single-response.js +2 -0
  29. package/lib/index.d.ts +6 -0
  30. package/lib/index.js +11 -0
  31. package/lib/shared/push.d.ts +6 -0
  32. package/lib/shared/push.js +2 -0
  33. package/lib/shared/single-offer.d.ts +6 -0
  34. package/lib/shared/single-offer.js +2 -0
  35. package/package.json +1 -1
  36. package/src/aso/config/aso-config-v0.ts +428 -0
  37. package/src/aso/config/aso-config-v1.ts +422 -0
  38. package/src/aso/config/aso-config-v2.ts +377 -0
  39. package/src/aso/config/aso-config-v3.ts +376 -0
  40. package/src/aso/config/aso-config-v4.ts +300 -0
  41. package/src/aso/config/aso-default-config.ts +66 -0
  42. package/src/aso/config/aso-single-response.ts +6 -0
  43. package/src/index.ts +6 -0
  44. package/src/shared/push.ts +6 -0
  45. package/src/shared/single-offer.ts +6 -0
@@ -0,0 +1,376 @@
1
+ import { DefaultConfig } from "./aso-default-config"
2
+
3
+ interface AuthorizationActionMapping {
4
+ hasNextAction: string,
5
+ nextActionIn: string,
6
+ changeNumberCaption: string,
7
+ nextActionCaption: string,
8
+ nextActionPatternCaption: string,
9
+ actualTitlePattern: string,
10
+ expiredTitlePattern: string,
11
+ subtitle: string,
12
+ when: string,
13
+ authorized: string,
14
+ }
15
+
16
+ interface LocalizationMap {
17
+ [key: string]: Localization
18
+ }
19
+
20
+ export interface ASOConfig_v3 {
21
+ id: number,
22
+ name: string,
23
+ email: string,
24
+ bundle: string,
25
+ ip: string,
26
+ sshPassword: string,
27
+ trackingLink: string,
28
+ host: string,
29
+ fullAccess: boolean,
30
+
31
+ appsflyerKey: string,
32
+ onesignalKey: string,
33
+ onesignalRestApiKey?: string,
34
+
35
+ showVideo: boolean,
36
+ appsflyerEnabled: boolean,
37
+ singleFirst: boolean,
38
+ authAdEnabled: boolean,
39
+ allowedCountries: string,
40
+ excludedCountries: string,
41
+ supportUrl?: string,
42
+ support?: {[key: string]: string},
43
+ privacyPolicyUrl: string,
44
+ callCoolDown: number,
45
+ smsCoolDown: number,
46
+ maxSmsTries: number,
47
+ maxCallTries: number,
48
+ smscLogin: string,
49
+ smscPassword: string,
50
+ autoSmsCodeCatch: boolean,
51
+ autoCallCodeCatch: boolean,
52
+
53
+ localization?: LocalizationMap | Localization,
54
+ authorizationActionMapping: AuthorizationActionMapping,
55
+ offersSectionMapping: IOfferSectionMapping
56
+ configMapping: ConfigMapping,
57
+
58
+ configEndpoint: string,
59
+ offersEndpoint: string,
60
+ offerEndpoint: string,
61
+ nextActionEndpoint: string,
62
+ currentActionEndpoint: string,
63
+ codeValidationEndpoint: string,
64
+ changeNumberEndpoint: string,
65
+ imageEndpoint: string,
66
+
67
+ categoriesQuery: string,
68
+ phoneQuery: string,
69
+ nameQuery: string,
70
+ codeQuery: string
71
+ validityQuery: string,
72
+ appsflyerIdParameter: string,
73
+ advertisingIdParameter: string,
74
+ onesignalIdParameter: string,
75
+ offerIdParameter: string,
76
+ countryCodeParameter?: string,
77
+
78
+ redirectHtmlName: string,
79
+ redirectJsName: string,
80
+ redirectFolderName?: string,
81
+ redirectJsCustomNumberParameter?: string,
82
+
83
+ skipCode: boolean,
84
+ externalIpGeo: boolean,
85
+
86
+ exportedTranslations?: boolean,
87
+ readyForPanel?: boolean,
88
+
89
+ version: number
90
+ }
91
+
92
+
93
+ interface ISectionPalette {
94
+ titleBorder: string
95
+ titleText: string
96
+ offerBorder: string
97
+ buttonBorder: string
98
+ buttonBackground: string
99
+ buttonBackgroundPressed: string
100
+ buttonText: string,
101
+ emojiBackground: string,
102
+ emojiBorder: string,
103
+ emojiCaptionBorder: string,
104
+ emojiCaptionBackground: string,
105
+ emojiCaption: string
106
+ }
107
+
108
+ interface IOfferResult {
109
+ id: string,
110
+ backgroundImage: string,
111
+ foregroundImage: string,
112
+ emoji: string,
113
+ emojiCaption: string,
114
+ buttonText: string
115
+ }
116
+
117
+ interface IOffersSection {
118
+ id: number,
119
+ offers: IOfferResult[]
120
+ title: string
121
+ palette: ISectionPalette
122
+ }
123
+
124
+ interface ISectionPaletteMapping {
125
+ titleBorder: string
126
+ titleText: string
127
+ offerBorder: string
128
+ buttonBorder: string
129
+ buttonBackground: string
130
+ buttonBackgroundPressed: string
131
+ buttonText: string,
132
+ emojiBackground: string,
133
+ emojiBorder: string,
134
+ emojiCaptionBorder: string,
135
+ emojiCaptionBackground: string,
136
+ emojiCaption: string
137
+ }
138
+
139
+ interface IOfferResultMapping {
140
+ id: string,
141
+ backgroundImage: string,
142
+ foregroundImage: string,
143
+ emoji: string,
144
+ emojiCaption: string,
145
+ buttonText: string,
146
+ mappingName: string,
147
+ }
148
+
149
+ interface IOfferSectionMapping {
150
+ id: string,
151
+ offers: string
152
+ title: string
153
+ internal: [string, any][]
154
+ }
155
+
156
+ interface Localization {
157
+ numberWillReceiveACallPattern: string,
158
+ numberReceivedACallPattern: string,
159
+ numberReceivedASmsPattern: string,
160
+ numberWillReceiveASmsPattern: string,
161
+ enterLastFourDigits: string,
162
+ enterCodeFromSms: string,
163
+ callAgainSPattern: string,
164
+ callAgain: string,
165
+ smsAgain: string,
166
+ smsAgainSPattern: string,
167
+ changeNumber: string,
168
+ sendSms: string,
169
+ sendSmsSPattern: string,
170
+ unfortunatelyYourTriesLeft: string,
171
+
172
+ introDialog_title: string,
173
+ introDialog_message: string,
174
+ introDialog_exit: string
175
+ introDialog_cancel: string,
176
+
177
+ error_phone: string,
178
+ error_name: string,
179
+ error_server: string,
180
+ error_general: string,
181
+ error_invalidCode: string
182
+
183
+ changeNumber_title: string,
184
+ changeNumber_message: string,
185
+ changeNumber_no: string,
186
+ changeNumber_yes: string,
187
+
188
+ next_title: string,
189
+ next_message: string,
190
+ next_yes: string,
191
+ next_no: string,
192
+
193
+ yes: string,
194
+ no: string,
195
+ cancel: string,
196
+ confirm: string,
197
+ supportCaption: string,
198
+
199
+ game_spin: string,
200
+ game_balance: string,
201
+ game_balance_pattern: string,
202
+ game_win: string,
203
+ game_win_pattern: string,
204
+ game_authorize: string,
205
+ game_demo_welcome: string,
206
+ game_demo_available_after_auth: string,
207
+ game_min_rate_error_pattern: string,
208
+ game_yourLevel: string,
209
+
210
+ auth_title: ColoredString,
211
+ auth_subtitle: ColoredString
212
+ auth_nameHint: string,
213
+ auth_changeNumber: string,
214
+ auth_getAccess: string,
215
+ auth_enterAsGuest: string,
216
+ auth_privacyPolicyAcceptance: string,
217
+ auth_privacyPolicy: ColoredString
218
+ }
219
+
220
+ interface ColoredString {
221
+ text: string,
222
+ colors: ColoredSpan[]
223
+ mappingName: string
224
+ }
225
+
226
+ interface ColoredSpan {
227
+ from: number,
228
+ to: number,
229
+ color: string
230
+ }
231
+
232
+ interface ColoredStringMapping {
233
+ text: string,
234
+ colors: string,
235
+ internal: [string, ColoredSpanMapping][]
236
+ }
237
+
238
+ interface ColoredSpanMapping {
239
+ from: string,
240
+ to: string,
241
+ color: string
242
+ }
243
+
244
+ interface ConfigMapping {
245
+ id: string,
246
+ fullAccess: string,
247
+ showVideo: string,
248
+ appsflyerEnabled: string,
249
+ appsflyerKey: string,
250
+ onesignalKey: string,
251
+ allowedCountries: string,
252
+ excludedCountries: string,
253
+ supportUrl: string,
254
+ privacyPolicyUrl: string,
255
+ callCoolDown: string,
256
+ smsCoolDown: string,
257
+ maxSmsTries: string,
258
+ maxCallTries: string,
259
+ smscLogin: string,
260
+ smscPassword: string,
261
+ autoSmsCodeCatch: string,
262
+ autoCallCodeCatch: string,
263
+ localization: string,
264
+ internal: [string, LocalizationMapping][],
265
+ }
266
+
267
+ interface LocalizationMapping {
268
+ game_spin: string,
269
+ game_balance_pattern: string,
270
+ game_win_pattern: string
271
+ game_authorize: string,
272
+ game_demo_welcome: string,
273
+ game_demo_available_after_auth: string,
274
+ game_min_rate_error_pattern: string,
275
+ game_yourLevel: string,
276
+
277
+ introDialog_title: string,
278
+ introDialog_message: string,
279
+ introDialog_exit: string
280
+ introDialog_cancel: string,
281
+
282
+ error_phone: string,
283
+ error_name: string,
284
+ error_postCredentials: string,
285
+ error_invalidCode: string
286
+
287
+ changeNumber_title: string,
288
+ changeNumber_message: string,
289
+ changeNumber_no: string,
290
+ changeNumber_yes: string,
291
+
292
+ next_title: string,
293
+ next_message: string,
294
+ next_yes: string,
295
+ next_no: string,
296
+
297
+ yes: string,
298
+ no: string,
299
+ cancel: string,
300
+ confirm: string,
301
+ supportCaption: string,
302
+
303
+ auth_title: string,
304
+ auth_subtitle: string
305
+ auth_nameHint: string,
306
+ auth_numberHint: string,
307
+ auth_changeNumber: string,
308
+ auth_getAccess: string,
309
+ auth_enterAsGuest: string,
310
+ auth_privacyPolicyAcceptance: string,
311
+ auth_privacyPolicy: string,
312
+
313
+ internal: [string, ColoredStringMapping][]
314
+ }
315
+
316
+ export let asoConfigToDefault_v3 = (config: ASOConfig_v3): DefaultConfig => {
317
+ return {
318
+ id: config.id,
319
+ bundle: config.bundle,
320
+ name: config.name,
321
+ email: config.email,
322
+ host: config.host,
323
+ ip: config.ip,
324
+ sshPassword: config.sshPassword,
325
+ trackingLink: config.trackingLink,
326
+
327
+ fullAccess: config.fullAccess,
328
+ appsflyerKey: config.appsflyerKey,
329
+ onesignalKey: config.onesignalKey,
330
+ onesignalRestApiKey: config.onesignalRestApiKey,
331
+ allowedCountries: config.allowedCountries,
332
+ excludedCountries: config.excludedCountries,
333
+
334
+ callCoolDown: config.callCoolDown,
335
+ smsCoolDown: config.smsCoolDown,
336
+ maxSmsTries: config.maxSmsTries,
337
+ maxCallTries: config.maxCallTries,
338
+ smscLogin: config.smscLogin,
339
+ smscPassword: config.sshPassword,
340
+
341
+ support: config.support,
342
+
343
+ configMapping: config.configMapping,
344
+ offerSectionMapping: config.offersSectionMapping,
345
+ authorizationActionMapping: config.authorizationActionMapping,
346
+
347
+ configEndpoint: config.configEndpoint,
348
+ offersEndpoint: config.offersEndpoint,
349
+ nextActionEndpoint: config.nextActionEndpoint,
350
+ currentActionEndpoint: config.currentActionEndpoint,
351
+ validationEndpoint: config.codeValidationEndpoint,
352
+ imageEndpoint: config.imageEndpoint,
353
+
354
+ sectionsParameter: config.categoriesQuery,
355
+ phoneParameter: config.phoneQuery,
356
+ codeParameter: config.codeQuery,
357
+ validityParameter: config.validityQuery,
358
+ appsflyerIdParameter: config.appsflyerIdParameter,
359
+ advertisingIdParameter: config.advertisingIdParameter,
360
+ onesignalIdParameter: config.onesignalIdParameter,
361
+ offerIdParameter: config.offerIdParameter,
362
+ countryCodeParameter: config.countryCodeParameter,
363
+
364
+ redirectHtmlName: config.redirectHtmlName,
365
+ redirectJsName: config.redirectJsName,
366
+ redirectFolderName: config.redirectFolderName,
367
+ redirectJsCustomNumberParameter: config.redirectJsCustomNumberParameter,
368
+
369
+ skipCode: config.skipCode,
370
+ externalIpGeo: config.externalIpGeo,
371
+ exportedTranslations: config.exportedTranslations,
372
+ readyForPanel: config.readyForPanel,
373
+
374
+ version: 3
375
+ }
376
+ }
@@ -0,0 +1,300 @@
1
+ import { DefaultConfig } from "./aso-default-config";
2
+
3
+ interface AuthorizationActionMapping {
4
+ hasNextAction: string,
5
+ nextActionIn: string,
6
+ changeNumberCaption: string,
7
+ nextActionCaption: string,
8
+ nextActionPatternCaption: string,
9
+ actualTitlePattern: string,
10
+ expiredTitlePattern: string,
11
+ subtitle: string,
12
+ when: string,
13
+ authorized: string
14
+ }
15
+
16
+ interface LocalizationMap {
17
+ [key: string]: Localization
18
+ }
19
+
20
+ export interface ASOConfig_v4 {
21
+ name: string,
22
+ email: string,
23
+ id: number,
24
+ bundle: string,
25
+ host: string,
26
+ ip: string,
27
+ sshPassword: string,
28
+
29
+ trackingLink: string,
30
+ fullAccess: boolean,
31
+ appsflyerKey: string,
32
+ onesignalKey: string,
33
+ onesignalRestApiKey?: string,
34
+ allowedCountries: string,
35
+ excludedCountries: string,
36
+ supportUrl?: string,
37
+ support?: {[key: string]: string},
38
+ privacyPolicyUrl: string,
39
+ callCoolDown: number,
40
+ smsCoolDown: number,
41
+ maxSmsTries: number,
42
+ maxCallTries: number,
43
+ smscLogin: string,
44
+ smscPassword: string,
45
+
46
+ localization?: LocalizationMap | Localization,
47
+ localizationMapping: LocalizationMapping,
48
+ authorizationActionMapping: AuthorizationActionMapping,
49
+ offerSectionMapping: IOfferSectionMapping,
50
+ offerResultMapping: IOfferResultMapping,
51
+ configMapping: ConfigMapping,
52
+ coloredStringMapping: ColoredStringMapping,
53
+ coloredSpanMapping: ColoredSpanMapping,
54
+
55
+ configEndpoint: string,
56
+ offersEndpoint: string,
57
+ nextActionEndpoint: string,
58
+ currentActionEndpoint: string,
59
+ validationEndpoint: string,
60
+ imageEndpoint: string,
61
+
62
+ sectionsParameter: string,
63
+ phoneParameter: string,
64
+ codeParameter: string
65
+ validityParameter: string,
66
+ appsflyerIdParameter: string,
67
+ advertisingIdParameter: string,
68
+ onesignalIdParameter: string,
69
+ offerIdParameter: string,
70
+ countryCodeParameter: string,
71
+
72
+ redirectFolderName?: string,
73
+ redirectHtmlName: string,
74
+ redirectJsName: string,
75
+ redirectJsCustomNumberParameter?: string,
76
+
77
+ networkErrorDialogTitle: LocalizedString,
78
+ networkErrorDialogMessage: LocalizedString,
79
+ networkErrorDialogButton: LocalizedString,
80
+
81
+ skipCode?: boolean,
82
+ externalIpGeo?: boolean,
83
+ pinImitationCountries?: string,
84
+
85
+ exportedTranslations?: boolean,
86
+ readyForPanel?: boolean,
87
+
88
+
89
+ betting?: boolean,
90
+
91
+ version: number
92
+ }
93
+
94
+ interface IOfferSectionMapping {
95
+ offers: string
96
+ title: string
97
+ internal: [string, any][]
98
+ }
99
+
100
+ interface IOfferResultMapping {
101
+ id: string,
102
+ backgroundImage: string,
103
+ foregroundImage: string,
104
+ emoji: string,
105
+ emojiCaption: string,
106
+ buttonText: string,
107
+ mappingName: string
108
+ }
109
+
110
+ interface LocalizedString {
111
+ en: string,
112
+ ru: string
113
+ }
114
+
115
+ interface Localization {
116
+ numberWillReceiveACallPattern: string,
117
+ numberReceivedACallPattern: string,
118
+ numberReceivedASmsPattern: string,
119
+ numberWillReceiveASmsPattern: string,
120
+ enterLastFourDigits: string,
121
+ enterCodeFromSms: string,
122
+ callAgainSPattern: string,
123
+ callAgain: string,
124
+ smsAgain: string,
125
+ smsAgainSPattern: string,
126
+ changeNumber: string,
127
+ sendSms: string,
128
+ sendSmsSPattern: string,
129
+ unfortunatelyYourTriesLeft: string,
130
+
131
+ error_phone: string,
132
+ error_server: string,
133
+ error_invalidCode: string
134
+
135
+ changeNumber_title: string,
136
+ changeNumber_message: string,
137
+ changeNumber_no: string,
138
+ changeNumber_yes: string,
139
+
140
+ next_title: string,
141
+ next_message: string,
142
+ next_yes: string,
143
+ next_no: string,
144
+
145
+ supportCaption: string,
146
+
147
+ game_spin: string,
148
+ game_balance: string,
149
+ game_balance_pattern: string,
150
+ game_win: string,
151
+ game_win_pattern: string,
152
+ game_authorize: string,
153
+ game_demo_welcome: string,
154
+ game_demo_available_after_auth: string,
155
+ game_min_rate_error_pattern: string,
156
+ game_yourLevel: string,
157
+
158
+ auth_title: ColoredString,
159
+ auth_subtitle: ColoredString
160
+ auth_changeNumber: string,
161
+ auth_getAccess: string,
162
+ auth_enterAsGuest: string,
163
+ auth_privacyPolicyAcceptance: string,
164
+ auth_privacyPolicy: ColoredString
165
+ }
166
+
167
+ interface ColoredString {
168
+ text: string,
169
+ colors: ColoredSpan[]
170
+ mappingName: string
171
+ }
172
+
173
+ interface ColoredSpan {
174
+ from: number,
175
+ to: number,
176
+ color: string
177
+ }
178
+
179
+ interface ColoredStringMapping {
180
+ text: string,
181
+ colors: string,
182
+ internal: [string, ColoredSpanMapping][]
183
+ }
184
+
185
+ interface ColoredSpanMapping {
186
+ from: string,
187
+ to: string,
188
+ color: string
189
+ }
190
+
191
+ interface ConfigMapping {
192
+ fullAccess: string,
193
+ appsflyerKey: string,
194
+ onesignalKey: string,
195
+ allowedCountries: string,
196
+ excludedCountries: string,
197
+ supportUrl: string,
198
+ privacyPolicyUrl: string,
199
+ localization: string,
200
+
201
+ internal: [string, LocalizationMapping][],
202
+ }
203
+
204
+ interface LocalizationMapping {
205
+ game_spin: string,
206
+ game_balance_pattern: string,
207
+ game_win_pattern: string
208
+ game_authorize: string,
209
+ game_demo_welcome: string,
210
+ game_demo_available_after_auth: string,
211
+ game_min_rate_error_pattern: string,
212
+ game_yourLevel: string,
213
+
214
+ error_phone: string,
215
+ error_server: string,
216
+ error_invalidCode: string
217
+
218
+ changeNumber_title: string,
219
+ changeNumber_message: string,
220
+ changeNumber_no: string,
221
+ changeNumber_yes: string,
222
+
223
+ next_title: string,
224
+ next_message: string,
225
+ next_yes: string,
226
+ next_no: string,
227
+
228
+ supportCaption: string,
229
+
230
+ auth_title: string,
231
+ auth_subtitle: string
232
+ auth_getAccess: string,
233
+ auth_enterAsGuest: string,
234
+ auth_privacyPolicyAcceptance: string,
235
+ auth_privacyPolicy: string,
236
+
237
+ internal: [string, ColoredStringMapping][]
238
+ }
239
+
240
+ export let asoConfigToDefault_v4 = (config: ASOConfig_v4): DefaultConfig => {
241
+ return {
242
+ id: config.id,
243
+ bundle: config.bundle,
244
+ name: config.name,
245
+ email: config.email,
246
+ host: config.host,
247
+ ip: config.ip,
248
+ sshPassword: config.sshPassword,
249
+ trackingLink: config.trackingLink,
250
+
251
+ fullAccess: config.fullAccess,
252
+ appsflyerKey: config.appsflyerKey,
253
+ onesignalKey: config.onesignalKey,
254
+ onesignalRestApiKey: config.onesignalRestApiKey,
255
+ allowedCountries: config.allowedCountries,
256
+ excludedCountries: config.excludedCountries,
257
+
258
+ callCoolDown: config.callCoolDown,
259
+ smsCoolDown: config.smsCoolDown,
260
+ maxSmsTries: config.maxSmsTries,
261
+ maxCallTries: config.maxCallTries,
262
+ smscLogin: config.smscLogin,
263
+ smscPassword: config.sshPassword,
264
+
265
+ support: config.support,
266
+
267
+ configMapping: config.configMapping,
268
+ offerSectionMapping: config.offerSectionMapping,
269
+ authorizationActionMapping: config.authorizationActionMapping,
270
+
271
+ configEndpoint: config.configEndpoint,
272
+ offersEndpoint: config.offersEndpoint,
273
+ nextActionEndpoint: config.nextActionEndpoint,
274
+ currentActionEndpoint: config.currentActionEndpoint,
275
+ validationEndpoint: config.validationEndpoint,
276
+ imageEndpoint: config.imageEndpoint,
277
+
278
+ sectionsParameter: config.sectionsParameter,
279
+ phoneParameter: config.phoneParameter,
280
+ codeParameter: config.codeParameter,
281
+ validityParameter: config.validityParameter,
282
+ appsflyerIdParameter: config.appsflyerIdParameter,
283
+ advertisingIdParameter: config.advertisingIdParameter,
284
+ onesignalIdParameter: config.onesignalIdParameter,
285
+ offerIdParameter: config.offerIdParameter,
286
+ countryCodeParameter: config.countryCodeParameter,
287
+
288
+ redirectFolderName: config.redirectFolderName,
289
+ redirectHtmlName: config.redirectHtmlName,
290
+ redirectJsName: config.redirectJsName,
291
+ redirectJsCustomNumberParameter: config.redirectJsCustomNumberParameter,
292
+
293
+ skipCode: config.skipCode,
294
+ externalIpGeo: config.externalIpGeo,
295
+ exportedTranslations: config.exportedTranslations,
296
+ readyForPanel: config.readyForPanel,
297
+
298
+ version: 4
299
+ }
300
+ }