@tap-payments/auth-jsconnect 2.8.26-test → 2.8.27-test
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/build/@types/app.d.ts +3 -0
- package/build/constants/dummy.d.ts +2 -223
- package/build/constants/dummy.js +57 -6215
- package/build/features/connect/screens/Individual/Individual.js +1 -2
- package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +1 -2
- package/package.json +1 -1
package/build/@types/app.d.ts
CHANGED
|
@@ -744,12 +744,15 @@ export type CountryInfo = {
|
|
|
744
744
|
id: number;
|
|
745
745
|
label: string;
|
|
746
746
|
country: {
|
|
747
|
+
id: number;
|
|
747
748
|
name_en: string;
|
|
748
749
|
name_ar: string;
|
|
749
750
|
iso2: string;
|
|
750
751
|
iso3: string;
|
|
751
752
|
idd_prefix: string;
|
|
752
753
|
logo: string;
|
|
754
|
+
min_digits: number;
|
|
755
|
+
max_digits: number;
|
|
753
756
|
};
|
|
754
757
|
};
|
|
755
758
|
export type BusinessCountryInfo = {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BusinessCountryInfo } from '../@types';
|
|
1
2
|
export declare const OTHER_BRAND: {
|
|
2
3
|
id: string;
|
|
3
4
|
code: string;
|
|
@@ -79,212 +80,6 @@ export declare const defaultCountry: {
|
|
|
79
80
|
min_digits: number;
|
|
80
81
|
max_digits: number;
|
|
81
82
|
};
|
|
82
|
-
export declare const businessCountries: ({
|
|
83
|
-
created: number;
|
|
84
|
-
updated: number;
|
|
85
|
-
countryId: string;
|
|
86
|
-
name: {
|
|
87
|
-
created: number;
|
|
88
|
-
updated: number;
|
|
89
|
-
textId: string;
|
|
90
|
-
arabic: string;
|
|
91
|
-
english: string;
|
|
92
|
-
french: string;
|
|
93
|
-
spanish: string;
|
|
94
|
-
russian: string;
|
|
95
|
-
chinese: string;
|
|
96
|
-
};
|
|
97
|
-
iso2: string;
|
|
98
|
-
iso3: string;
|
|
99
|
-
numeric: number;
|
|
100
|
-
continent: string;
|
|
101
|
-
capital: string;
|
|
102
|
-
geoNameId: string;
|
|
103
|
-
idd_prefix: number;
|
|
104
|
-
logo: string;
|
|
105
|
-
digits: number;
|
|
106
|
-
supported_by_tap: boolean;
|
|
107
|
-
min_digits: number;
|
|
108
|
-
max_digits: number;
|
|
109
|
-
} | {
|
|
110
|
-
created: number;
|
|
111
|
-
updated: number;
|
|
112
|
-
countryId: string;
|
|
113
|
-
name: {
|
|
114
|
-
created: number;
|
|
115
|
-
updated: number;
|
|
116
|
-
textId: string;
|
|
117
|
-
arabic: string;
|
|
118
|
-
english: string;
|
|
119
|
-
french: string;
|
|
120
|
-
spanish: string;
|
|
121
|
-
russian: string;
|
|
122
|
-
chinese: string;
|
|
123
|
-
};
|
|
124
|
-
iso2: string;
|
|
125
|
-
iso3: string;
|
|
126
|
-
numeric: number;
|
|
127
|
-
continent: string;
|
|
128
|
-
capital: string;
|
|
129
|
-
geoNameId: string;
|
|
130
|
-
idd_prefix: number;
|
|
131
|
-
logo: string;
|
|
132
|
-
digits: number;
|
|
133
|
-
min_digits: number;
|
|
134
|
-
max_digits: number;
|
|
135
|
-
supported_by_tap?: undefined;
|
|
136
|
-
})[];
|
|
137
|
-
export declare const countriesCode: ({
|
|
138
|
-
created: number;
|
|
139
|
-
updated: number;
|
|
140
|
-
countryId: string;
|
|
141
|
-
name: {
|
|
142
|
-
created: number;
|
|
143
|
-
updated: number;
|
|
144
|
-
textId: string;
|
|
145
|
-
arabic: string;
|
|
146
|
-
english: string;
|
|
147
|
-
french: string;
|
|
148
|
-
spanish: string;
|
|
149
|
-
russian: string;
|
|
150
|
-
chinese: string;
|
|
151
|
-
};
|
|
152
|
-
iso2: string;
|
|
153
|
-
iso3: string;
|
|
154
|
-
numeric: number;
|
|
155
|
-
continent: string;
|
|
156
|
-
capital: string;
|
|
157
|
-
geoNameId: string;
|
|
158
|
-
idd_prefix: number;
|
|
159
|
-
logo: string;
|
|
160
|
-
digits: number;
|
|
161
|
-
supported_by_tap: boolean;
|
|
162
|
-
} | {
|
|
163
|
-
created: number;
|
|
164
|
-
updated: number;
|
|
165
|
-
countryId: string;
|
|
166
|
-
name: {
|
|
167
|
-
created: number;
|
|
168
|
-
updated: number;
|
|
169
|
-
textId: string;
|
|
170
|
-
arabic: string;
|
|
171
|
-
english: string;
|
|
172
|
-
french: string;
|
|
173
|
-
spanish: string;
|
|
174
|
-
russian: string;
|
|
175
|
-
chinese: string;
|
|
176
|
-
};
|
|
177
|
-
iso2: string;
|
|
178
|
-
iso3: string;
|
|
179
|
-
numeric: number;
|
|
180
|
-
continent: string;
|
|
181
|
-
capital: string;
|
|
182
|
-
geoNameId: string;
|
|
183
|
-
idd_prefix: number;
|
|
184
|
-
logo: string;
|
|
185
|
-
digits: number;
|
|
186
|
-
supported_by_tap?: undefined;
|
|
187
|
-
} | {
|
|
188
|
-
created: number;
|
|
189
|
-
updated: number;
|
|
190
|
-
countryId: string;
|
|
191
|
-
name: {
|
|
192
|
-
created: number;
|
|
193
|
-
updated: number;
|
|
194
|
-
textId: string;
|
|
195
|
-
arabic: string;
|
|
196
|
-
english: string;
|
|
197
|
-
french: string;
|
|
198
|
-
spanish: string;
|
|
199
|
-
russian: string;
|
|
200
|
-
chinese: string;
|
|
201
|
-
};
|
|
202
|
-
iso2: string;
|
|
203
|
-
iso3: string;
|
|
204
|
-
numeric: number;
|
|
205
|
-
continent: string;
|
|
206
|
-
capital: string;
|
|
207
|
-
geoNameId: string;
|
|
208
|
-
idd_prefix: number;
|
|
209
|
-
logo?: undefined;
|
|
210
|
-
digits?: undefined;
|
|
211
|
-
supported_by_tap?: undefined;
|
|
212
|
-
} | {
|
|
213
|
-
created: number;
|
|
214
|
-
updated: number;
|
|
215
|
-
countryId: string;
|
|
216
|
-
name: {
|
|
217
|
-
created: number;
|
|
218
|
-
updated: number;
|
|
219
|
-
textId: string;
|
|
220
|
-
arabic: string;
|
|
221
|
-
english: string;
|
|
222
|
-
french: string;
|
|
223
|
-
spanish: string;
|
|
224
|
-
russian: string;
|
|
225
|
-
chinese: string;
|
|
226
|
-
};
|
|
227
|
-
iso2: string;
|
|
228
|
-
iso3: string;
|
|
229
|
-
numeric: number;
|
|
230
|
-
continent: string;
|
|
231
|
-
capital: string;
|
|
232
|
-
geoNameId: string;
|
|
233
|
-
idd_prefix: number;
|
|
234
|
-
logo: string;
|
|
235
|
-
digits?: undefined;
|
|
236
|
-
supported_by_tap?: undefined;
|
|
237
|
-
} | {
|
|
238
|
-
created: number;
|
|
239
|
-
updated: number;
|
|
240
|
-
countryId: string;
|
|
241
|
-
name: {
|
|
242
|
-
created: number;
|
|
243
|
-
updated: number;
|
|
244
|
-
textId: string;
|
|
245
|
-
arabic: string;
|
|
246
|
-
english: string;
|
|
247
|
-
french: string;
|
|
248
|
-
spanish: string;
|
|
249
|
-
russian: string;
|
|
250
|
-
chinese: string;
|
|
251
|
-
};
|
|
252
|
-
iso2: string;
|
|
253
|
-
iso3: string;
|
|
254
|
-
numeric: number;
|
|
255
|
-
continent: string;
|
|
256
|
-
capital: string;
|
|
257
|
-
geoNameId: string;
|
|
258
|
-
idd_prefix: number;
|
|
259
|
-
digits: number;
|
|
260
|
-
logo?: undefined;
|
|
261
|
-
supported_by_tap?: undefined;
|
|
262
|
-
} | {
|
|
263
|
-
created: number;
|
|
264
|
-
updated: number;
|
|
265
|
-
countryId: string;
|
|
266
|
-
name: {
|
|
267
|
-
created: number;
|
|
268
|
-
updated: number;
|
|
269
|
-
textId: string;
|
|
270
|
-
arabic: string;
|
|
271
|
-
english: string;
|
|
272
|
-
french: string;
|
|
273
|
-
spanish: string;
|
|
274
|
-
russian: string;
|
|
275
|
-
chinese: string;
|
|
276
|
-
};
|
|
277
|
-
iso2: string;
|
|
278
|
-
iso3: string;
|
|
279
|
-
numeric: number;
|
|
280
|
-
continent: string;
|
|
281
|
-
capital: string;
|
|
282
|
-
geoNameId: string;
|
|
283
|
-
idd_prefix: number;
|
|
284
|
-
digits: number;
|
|
285
|
-
supported_by_tap: boolean;
|
|
286
|
-
logo?: undefined;
|
|
287
|
-
})[];
|
|
288
83
|
export declare const SOCIAL_MEDIA_LINKS: {
|
|
289
84
|
twitter: string;
|
|
290
85
|
facebook: string;
|
|
@@ -377,20 +172,4 @@ export declare const BRAND_LIST: {
|
|
|
377
172
|
};
|
|
378
173
|
website: string;
|
|
379
174
|
}[];
|
|
380
|
-
export declare const BUSINESS_COUNTRIES:
|
|
381
|
-
id: number;
|
|
382
|
-
title: string;
|
|
383
|
-
countries: {
|
|
384
|
-
id: number;
|
|
385
|
-
label: string;
|
|
386
|
-
country: {
|
|
387
|
-
id: number;
|
|
388
|
-
name_en: string;
|
|
389
|
-
name_ar: string;
|
|
390
|
-
iso2: string;
|
|
391
|
-
iso3: string;
|
|
392
|
-
idd_prefix: string;
|
|
393
|
-
logo: string;
|
|
394
|
-
};
|
|
395
|
-
}[];
|
|
396
|
-
}[];
|
|
175
|
+
export declare const BUSINESS_COUNTRIES: Array<BusinessCountryInfo>;
|