@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,263 @@
1
+ import { DefaultConfig } from "./aso-default-config";
2
+ interface AuthorizationActionMapping {
3
+ hasNextAction: string;
4
+ nextActionIn: string;
5
+ changeNumberCaption: string;
6
+ nextActionCaption: string;
7
+ nextActionPatternCaption: string;
8
+ actualTitlePattern: string;
9
+ expiredTitlePattern: string;
10
+ subtitle: string;
11
+ when: string;
12
+ authorized: string;
13
+ canChangeNumber: string;
14
+ }
15
+ export interface ASOConfig_v1 {
16
+ id: number;
17
+ name: string;
18
+ email: string;
19
+ bundle: string;
20
+ skipping?: boolean;
21
+ alghoritm?: string;
22
+ ip: string;
23
+ sshPassword: string;
24
+ trackingLink: string;
25
+ clientSideValidation: boolean;
26
+ host: string;
27
+ fullAccess: boolean;
28
+ appsflyerKey: string;
29
+ onesignalKey: string;
30
+ onesignalRestApiKey?: string;
31
+ showVideo: boolean;
32
+ appsflyerEnabled: boolean;
33
+ singleFirst: boolean;
34
+ authAdEnabled: boolean;
35
+ allowedCountries: string;
36
+ excludedCountries: string;
37
+ supportUrl?: string;
38
+ support?: {
39
+ [key: string]: string;
40
+ };
41
+ privacyPolicyUrl: string;
42
+ callCoolDown: number;
43
+ smsCoolDown: number;
44
+ maxSmsTries: number;
45
+ maxCallTries: number;
46
+ smscLogin: string;
47
+ smscPassword: string;
48
+ autoSmsCodeCatch: boolean;
49
+ autoCallCodeCatch: boolean;
50
+ localization?: LocalizationMap | Localization;
51
+ authorizationActionMapping: AuthorizationActionMapping;
52
+ offersSectionMapping: IOfferSectionMapping;
53
+ configMapping: ConfigMapping;
54
+ configEndpoint: string;
55
+ offersEndpoint: string;
56
+ offerEndpoint: string;
57
+ nextActionEndpoint: string;
58
+ currentActionEndpoint: string;
59
+ codeValidationEndpoint: string;
60
+ changeNumberEndpoint: string;
61
+ imageEndpoint: string;
62
+ categoriesQuery: string;
63
+ phoneQuery: string;
64
+ nameQuery: string;
65
+ codeQuery: string;
66
+ validityQuery: string;
67
+ resetUserQuery: string;
68
+ oldPhoneQuery: string;
69
+ newPhoneQuery: string;
70
+ appsflyerDataQuery: string;
71
+ offerIdParameter: string;
72
+ countryCodeParameter?: string;
73
+ redirectHtmlName: string;
74
+ redirectJsName: string;
75
+ redirectFolderName?: string;
76
+ apiPrefix?: string;
77
+ emptyEmojiRequired?: boolean;
78
+ skipCode: boolean;
79
+ externalIpGeo: boolean;
80
+ exportedTranslations?: boolean;
81
+ newTrackingLink?: string;
82
+ readyForPanel?: boolean;
83
+ version: number;
84
+ }
85
+ interface IOfferSectionMapping {
86
+ id: string;
87
+ offers: string;
88
+ title: string;
89
+ palette: string;
90
+ internal: [string, any][];
91
+ }
92
+ interface Localization {
93
+ numberWillReceiveACallPattern: string;
94
+ numberReceivedACallPattern: string;
95
+ numberReceivedASmsPattern: string;
96
+ numberWillReceiveASmsPattern: string;
97
+ enterLastFourDigits: string;
98
+ enterCodeFromSms: string;
99
+ callAgainSPattern: string;
100
+ callAgain: string;
101
+ smsAgain: string;
102
+ smsAgainSPattern: string;
103
+ changeNumber: string;
104
+ sendSms: string;
105
+ sendSmsSPattern: string;
106
+ hhMm: string;
107
+ unfortunatelyYourTriesLeft: string;
108
+ introDialog_title: string;
109
+ introDialog_message: string;
110
+ introDialog_exit: string;
111
+ introDialog_cancel: string;
112
+ error_phone: string;
113
+ error_name: string;
114
+ error_server: string;
115
+ error_invalidCode: string;
116
+ changeNumber_title: string;
117
+ changeNumber_message: string;
118
+ changeNumber_no: string;
119
+ changeNumber_yes: string;
120
+ next_title: string;
121
+ next_message: string;
122
+ next_yes: string;
123
+ next_no: string;
124
+ yes: string;
125
+ no: string;
126
+ cancel: string;
127
+ mainButton: string;
128
+ codeButton: string;
129
+ demoMode: string;
130
+ yourLevel: string;
131
+ supportCaption: string;
132
+ somethingWentWrong: string;
133
+ game_spin: string;
134
+ game_balance: string;
135
+ game_balance_pattern: string;
136
+ game_win: string;
137
+ game_win_pattern: string;
138
+ game_authorize: string;
139
+ game_demo_welcome: string;
140
+ game_demo_available_after_auth: string;
141
+ game_min_rate_error_pattern: string;
142
+ auth_changeTitle: string;
143
+ auth_changeMessage: string;
144
+ auth_titleTop: ColoredString;
145
+ auth_titleBottom: ColoredString;
146
+ auth_subtitle: ColoredString;
147
+ auth_nameHint: string;
148
+ auth_changeNumber: string;
149
+ auth_enterAsGuest: string;
150
+ auth_privacyPolicyAcceptance: string;
151
+ auth_privacyPolicy: ColoredString;
152
+ }
153
+ interface ColoredString {
154
+ text: string;
155
+ colors: ColoredSpan[];
156
+ mappingName: string;
157
+ }
158
+ interface ColoredSpan {
159
+ from: number;
160
+ to: number;
161
+ color: string;
162
+ }
163
+ interface ColoredStringMapping {
164
+ text: string;
165
+ colors: string;
166
+ internal: [string, ColoredSpanMapping][];
167
+ }
168
+ interface ColoredSpanMapping {
169
+ from: string;
170
+ to: string;
171
+ color: string;
172
+ }
173
+ interface ConfigMapping {
174
+ id: string;
175
+ fullAccess: string;
176
+ showVideo: string;
177
+ skipping?: string;
178
+ alghoritm?: string;
179
+ appsflyerEnabled: string;
180
+ appsflyerKey: string;
181
+ onesignalKey: string;
182
+ singleFirst: string;
183
+ allowedCountries: string;
184
+ excludedCountries: string;
185
+ supportUrl: string;
186
+ privacyPolicyUrl: string;
187
+ callCoolDown: string;
188
+ smsCoolDown: string;
189
+ maxSmsTries: string;
190
+ maxCallTries: string;
191
+ smscLogin: string;
192
+ smscPassword: string;
193
+ autoSmsCodeCatch: string;
194
+ autoCallCodeCatch: string;
195
+ localization: string;
196
+ internal: [string, LocalizationMapping][];
197
+ }
198
+ interface LocalizationMap {
199
+ [key: string]: Localization;
200
+ }
201
+ interface LocalizationMapping {
202
+ numberWillReceiveACallPattern: string;
203
+ numberReceivedACallPattern: string;
204
+ numberReceivedASmsPattern: string;
205
+ numberWillReceiveASmsPattern: string;
206
+ enterLastFourDigits: string;
207
+ enterCodeFromSms: string;
208
+ callAgainSPattern: string;
209
+ callAgain: string;
210
+ smsAgain: string;
211
+ smsAgainSPattern: string;
212
+ sendSms: string;
213
+ sendSmsSPattern: string;
214
+ hhMm: string;
215
+ unfortunatelyYourTriesLeft: string;
216
+ game_spin: string;
217
+ game_balance: string;
218
+ game_balance_pattern: string;
219
+ game_win: string;
220
+ game_win_pattern: string;
221
+ game_authorize: string;
222
+ game_demo_welcome: string;
223
+ game_demo_available_after_auth: string;
224
+ game_min_rate_error_pattern: string;
225
+ introDialog_title: string;
226
+ introDialog_message: string;
227
+ introDialog_exit: string;
228
+ introDialog_cancel: string;
229
+ error_phone: string;
230
+ error_name: string;
231
+ error_server: string;
232
+ error_invalidCode: string;
233
+ changeNumber_title: string;
234
+ changeNumber_message: string;
235
+ changeNumber_no: string;
236
+ changeNumber_yes: string;
237
+ next_title: string;
238
+ next_message: string;
239
+ next_yes: string;
240
+ next_no: string;
241
+ yes: string;
242
+ no: string;
243
+ cancel: string;
244
+ mainButton: string;
245
+ codeButton: string;
246
+ demoMode: string;
247
+ yourLevel: string;
248
+ supportCaption: string;
249
+ somethingWentWrong: string;
250
+ auth_changeTitle: string;
251
+ auth_changeMessage: string;
252
+ auth_titleTop: string;
253
+ auth_titleBottom: string;
254
+ auth_subtitle: string;
255
+ auth_nameHint: string;
256
+ auth_changeNumber: string;
257
+ auth_enterAsGuest: string;
258
+ auth_privacyPolicyAcceptance: string;
259
+ auth_privacyPolicy: string;
260
+ internal: [string, ColoredStringMapping][];
261
+ }
262
+ export declare let asoConfigToDefault_v1: (config: ASOConfig_v1) => DefaultConfig;
263
+ export {};
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.asoConfigToDefault_v1 = void 0;
4
+ let asoConfigToDefault_v1 = (config) => {
5
+ return {
6
+ id: config.id,
7
+ bundle: config.bundle,
8
+ name: config.name,
9
+ email: config.email,
10
+ host: config.host,
11
+ ip: config.ip,
12
+ sshPassword: config.sshPassword,
13
+ trackingLink: config.trackingLink,
14
+ fullAccess: config.fullAccess,
15
+ appsflyerKey: config.appsflyerKey,
16
+ onesignalKey: config.onesignalKey,
17
+ onesignalRestApiKey: config.onesignalRestApiKey,
18
+ allowedCountries: config.allowedCountries,
19
+ excludedCountries: config.excludedCountries,
20
+ callCoolDown: config.callCoolDown,
21
+ smsCoolDown: config.smsCoolDown,
22
+ maxSmsTries: config.maxSmsTries,
23
+ maxCallTries: config.maxCallTries,
24
+ smscLogin: config.smscLogin,
25
+ smscPassword: config.sshPassword,
26
+ support: config.support,
27
+ configMapping: config.configMapping,
28
+ offerSectionMapping: config.offersSectionMapping,
29
+ authorizationActionMapping: config.authorizationActionMapping,
30
+ configEndpoint: config.configEndpoint,
31
+ offersEndpoint: config.offersEndpoint,
32
+ nextActionEndpoint: config.nextActionEndpoint,
33
+ currentActionEndpoint: config.currentActionEndpoint,
34
+ validationEndpoint: config.codeValidationEndpoint,
35
+ imageEndpoint: config.imageEndpoint,
36
+ sectionsParameter: config.categoriesQuery,
37
+ phoneParameter: config.phoneQuery,
38
+ codeParameter: config.codeQuery,
39
+ validityParameter: config.validityQuery,
40
+ appsflyerIdParameter: "none",
41
+ advertisingIdParameter: "none",
42
+ onesignalIdParameter: "none",
43
+ offerIdParameter: config.offerIdParameter,
44
+ countryCodeParameter: config.countryCodeParameter,
45
+ redirectHtmlName: config.redirectHtmlName,
46
+ redirectJsName: config.redirectJsName,
47
+ redirectFolderName: config.redirectFolderName,
48
+ apiPrefix: config.apiPrefix,
49
+ skipCode: config.skipCode,
50
+ externalIpGeo: config.externalIpGeo,
51
+ exportedTranslations: config.exportedTranslations,
52
+ newTrackingLink: config.newTrackingLink,
53
+ readyForPanel: config.readyForPanel,
54
+ version: 1
55
+ };
56
+ };
57
+ exports.asoConfigToDefault_v1 = asoConfigToDefault_v1;
@@ -0,0 +1,230 @@
1
+ import { DefaultConfig } from "./aso-default-config";
2
+ interface AuthorizationActionMapping {
3
+ hasNextAction: string;
4
+ nextActionIn: string;
5
+ changeNumberCaption: string;
6
+ nextActionCaption: string;
7
+ nextActionPatternCaption: string;
8
+ actualTitlePattern: string;
9
+ expiredTitlePattern: string;
10
+ subtitle: string;
11
+ when: string;
12
+ authorized: string;
13
+ }
14
+ export interface ASOConfig_v2 {
15
+ id: number;
16
+ name: string;
17
+ email: string;
18
+ bundle: string;
19
+ ip: string;
20
+ sshPassword: string;
21
+ trackingLink: string;
22
+ host: string;
23
+ fullAccess: boolean;
24
+ appsflyerKey: string;
25
+ onesignalKey: string;
26
+ onesignalRestApiKey?: string;
27
+ showVideo: boolean;
28
+ appsflyerEnabled: boolean;
29
+ singleFirst: boolean;
30
+ authAdEnabled: boolean;
31
+ allowedCountries: string;
32
+ excludedCountries: string;
33
+ supportUrl?: string;
34
+ support?: {
35
+ [key: string]: string;
36
+ };
37
+ privacyPolicyUrl: string;
38
+ callCoolDown: number;
39
+ smsCoolDown: number;
40
+ maxSmsTries: number;
41
+ maxCallTries: number;
42
+ smscLogin: string;
43
+ smscPassword: string;
44
+ autoSmsCodeCatch: boolean;
45
+ autoCallCodeCatch: boolean;
46
+ localization: LocalizationMap | Localization;
47
+ authorizationActionMapping: AuthorizationActionMapping;
48
+ offersSectionMapping: IOfferSectionMapping;
49
+ configMapping: ConfigMapping;
50
+ configEndpoint: string;
51
+ offersEndpoint: string;
52
+ offerEndpoint: string;
53
+ nextActionEndpoint: string;
54
+ currentActionEndpoint: string;
55
+ codeValidationEndpoint: string;
56
+ changeNumberEndpoint: string;
57
+ imageEndpoint: string;
58
+ categoriesQuery: string;
59
+ phoneQuery: string;
60
+ nameQuery: string;
61
+ codeQuery: string;
62
+ validityQuery: string;
63
+ appsflyerIdQuery: string;
64
+ offerIdParameter: string;
65
+ countryCodeParameter?: string;
66
+ redirectHtmlName: string;
67
+ redirectJsName: string;
68
+ redirectFolderName?: string;
69
+ skipCode: boolean;
70
+ externalIpGeo: boolean;
71
+ exportedTranslations?: boolean;
72
+ readyForPanel?: boolean;
73
+ version: number;
74
+ }
75
+ interface LocalizationMap {
76
+ [key: string]: Localization;
77
+ }
78
+ interface IOfferSectionMapping {
79
+ id: string;
80
+ offers: string;
81
+ title: string;
82
+ internal: [string, any][];
83
+ }
84
+ interface Localization {
85
+ numberWillReceiveACallPattern: string;
86
+ numberReceivedACallPattern: string;
87
+ numberReceivedASmsPattern: string;
88
+ numberWillReceiveASmsPattern: string;
89
+ enterLastFourDigits: string;
90
+ enterCodeFromSms: string;
91
+ callAgainSPattern: string;
92
+ callAgain: string;
93
+ smsAgain: string;
94
+ smsAgainSPattern: string;
95
+ changeNumber: string;
96
+ sendSms: string;
97
+ sendSmsSPattern: string;
98
+ unfortunatelyYourTriesLeft: string;
99
+ introDialog_title: string;
100
+ introDialog_message: string;
101
+ introDialog_exit: string;
102
+ introDialog_cancel: string;
103
+ error_phone: string;
104
+ error_name: string;
105
+ error_server: string;
106
+ error_general: string;
107
+ error_invalidCode: string;
108
+ changeNumber_title: string;
109
+ changeNumber_message: string;
110
+ changeNumber_no: string;
111
+ changeNumber_yes: string;
112
+ next_title: string;
113
+ next_message: string;
114
+ next_yes: string;
115
+ next_no: string;
116
+ yes: string;
117
+ no: string;
118
+ cancel: string;
119
+ confirm: string;
120
+ supportCaption: string;
121
+ game_spin: string;
122
+ game_balance: string;
123
+ game_balance_pattern: string;
124
+ game_win: string;
125
+ game_win_pattern: string;
126
+ game_authorize: string;
127
+ game_demo_welcome: string;
128
+ game_demo_available_after_auth: string;
129
+ game_min_rate_error_pattern: string;
130
+ game_yourLevel: string;
131
+ auth_changeTitle: string;
132
+ auth_changeMessage: string;
133
+ auth_againTitle: string;
134
+ auth_againMessage: string;
135
+ auth_title: ColoredString;
136
+ auth_subtitle: ColoredString;
137
+ auth_nameHint: string;
138
+ auth_changeNumber: string;
139
+ auth_getAccess: string;
140
+ auth_enterAsGuest: string;
141
+ auth_privacyPolicyAcceptance: string;
142
+ auth_privacyPolicy: ColoredString;
143
+ }
144
+ export interface ColoredString {
145
+ text: string;
146
+ colors: ColoredSpan[];
147
+ mappingName: string;
148
+ }
149
+ interface ColoredSpan {
150
+ from: number;
151
+ to: number;
152
+ color: string;
153
+ }
154
+ export interface ColoredStringMapping {
155
+ text: string;
156
+ colors: string;
157
+ internal: [string, ColoredSpanMapping][];
158
+ }
159
+ export interface ColoredSpanMapping {
160
+ from: string;
161
+ to: string;
162
+ color: string;
163
+ }
164
+ export interface ConfigMapping {
165
+ id: string;
166
+ fullAccess: string;
167
+ showVideo: string;
168
+ appsflyerEnabled: string;
169
+ appsflyerKey: string;
170
+ onesignalKey: string;
171
+ allowedCountries: string;
172
+ supportUrl: string;
173
+ privacyPolicyUrl: string;
174
+ callCoolDown: string;
175
+ smsCoolDown: string;
176
+ maxSmsTries: string;
177
+ maxCallTries: string;
178
+ smscLogin: string;
179
+ smscPassword: string;
180
+ autoSmsCodeCatch: string;
181
+ autoCallCodeCatch: string;
182
+ localization: string;
183
+ internal: [string, LocalizationMapping][];
184
+ }
185
+ export interface LocalizationMapping {
186
+ game_spin: string;
187
+ game_balance_pattern: string;
188
+ game_win_pattern: string;
189
+ game_authorize: string;
190
+ game_demo_welcome: string;
191
+ game_demo_available_after_auth: string;
192
+ game_min_rate_error_pattern: string;
193
+ game_yourLevel: string;
194
+ introDialog_title: string;
195
+ introDialog_message: string;
196
+ introDialog_exit: string;
197
+ introDialog_cancel: string;
198
+ error_phone: string;
199
+ error_name: string;
200
+ error_postCredentials: string;
201
+ error_invalidCode: string;
202
+ changeNumber_title: string;
203
+ changeNumber_message: string;
204
+ changeNumber_no: string;
205
+ changeNumber_yes: string;
206
+ next_title: string;
207
+ next_message: string;
208
+ next_yes: string;
209
+ next_no: string;
210
+ yes: string;
211
+ no: string;
212
+ cancel: string;
213
+ confirm: string;
214
+ supportCaption: string;
215
+ auth_changeTitle: string;
216
+ auth_changeMessage: string;
217
+ auth_againTitle: string;
218
+ auth_againMessage: string;
219
+ auth_title: string;
220
+ auth_subtitle: string;
221
+ auth_nameHint: string;
222
+ auth_changeNumber: string;
223
+ auth_getAccess: string;
224
+ auth_enterAsGuest: string;
225
+ auth_privacyPolicyAcceptance: string;
226
+ auth_privacyPolicy: string;
227
+ internal: [string, ColoredStringMapping][];
228
+ }
229
+ export declare let asoConfigToDefault_v2: (config: ASOConfig_v2) => DefaultConfig;
230
+ export {};
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.asoConfigToDefault_v2 = void 0;
4
+ let asoConfigToDefault_v2 = (config) => {
5
+ return {
6
+ id: config.id,
7
+ bundle: config.bundle,
8
+ name: config.name,
9
+ email: config.email,
10
+ host: config.host,
11
+ ip: config.ip,
12
+ sshPassword: config.sshPassword,
13
+ trackingLink: config.trackingLink,
14
+ fullAccess: config.fullAccess,
15
+ appsflyerKey: config.appsflyerKey,
16
+ onesignalKey: config.onesignalKey,
17
+ onesignalRestApiKey: config.onesignalRestApiKey,
18
+ allowedCountries: config.allowedCountries,
19
+ excludedCountries: config.excludedCountries,
20
+ callCoolDown: config.callCoolDown,
21
+ smsCoolDown: config.smsCoolDown,
22
+ maxSmsTries: config.maxSmsTries,
23
+ maxCallTries: config.maxCallTries,
24
+ smscLogin: config.smscLogin,
25
+ smscPassword: config.sshPassword,
26
+ support: config.support,
27
+ configMapping: config.configMapping,
28
+ offerSectionMapping: config.offersSectionMapping,
29
+ authorizationActionMapping: config.authorizationActionMapping,
30
+ configEndpoint: config.configEndpoint,
31
+ offersEndpoint: config.offersEndpoint,
32
+ nextActionEndpoint: config.nextActionEndpoint,
33
+ currentActionEndpoint: config.currentActionEndpoint,
34
+ validationEndpoint: config.codeValidationEndpoint,
35
+ imageEndpoint: config.imageEndpoint,
36
+ sectionsParameter: config.categoriesQuery,
37
+ phoneParameter: config.phoneQuery,
38
+ codeParameter: config.codeQuery,
39
+ validityParameter: config.validityQuery,
40
+ appsflyerIdParameter: "none",
41
+ advertisingIdParameter: "none",
42
+ onesignalIdParameter: "none",
43
+ offerIdParameter: config.offerIdParameter,
44
+ countryCodeParameter: config.countryCodeParameter,
45
+ redirectHtmlName: config.redirectHtmlName,
46
+ redirectJsName: config.redirectJsName,
47
+ redirectFolderName: config.redirectFolderName,
48
+ skipCode: config.skipCode,
49
+ externalIpGeo: config.externalIpGeo,
50
+ exportedTranslations: config.exportedTranslations,
51
+ readyForPanel: config.readyForPanel,
52
+ version: 2
53
+ };
54
+ };
55
+ exports.asoConfigToDefault_v2 = asoConfigToDefault_v2;