@acorex/connectivity 19.2.7 → 19.2.9

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.
@@ -0,0 +1,591 @@
1
+ const countries = [
2
+ {
3
+ code: 'US',
4
+ title: 'United States',
5
+ native: 'United States',
6
+ timezone: 'UTC-5',
7
+ regional: 'en-US',
8
+ provinces: [
9
+ {
10
+ code: 'US-CA',
11
+ title: 'California',
12
+ native: 'California',
13
+ cities: [
14
+ { code: 'LA', title: 'Los Angeles', native: 'Los Angeles' },
15
+ { code: 'SF', title: 'San Francisco', native: 'San Francisco' },
16
+ { code: 'SD', title: 'San Diego', native: 'San Diego' },
17
+ ],
18
+ },
19
+ {
20
+ code: 'US-TX',
21
+ title: 'Texas',
22
+ native: 'Texas',
23
+ cities: [
24
+ { code: 'HOU', title: 'Houston', native: 'Houston' },
25
+ { code: 'DAL', title: 'Dallas', native: 'Dallas' },
26
+ { code: 'AUS', title: 'Austin', native: 'Austin' },
27
+ ],
28
+ },
29
+ {
30
+ code: 'US-NY',
31
+ title: 'New York',
32
+ native: 'New York',
33
+ cities: [
34
+ { code: 'NYC', title: 'New York City', native: 'New York City' },
35
+ { code: 'BUF', title: 'Buffalo', native: 'Buffalo' },
36
+ { code: 'ROC', title: 'Rochester', native: 'Rochester' },
37
+ ],
38
+ },
39
+ ],
40
+ },
41
+ {
42
+ code: 'DE',
43
+ title: 'Germany',
44
+ native: 'Deutschland',
45
+ timezone: 'UTC+1',
46
+ regional: 'de-DE',
47
+ provinces: [
48
+ {
49
+ code: 'DE-BY',
50
+ title: 'Bavaria',
51
+ native: 'Bayern',
52
+ cities: [
53
+ { code: 'MUC', title: 'Munich', native: 'München' },
54
+ { code: 'NUE', title: 'Nuremberg', native: 'Nürnberg' },
55
+ { code: 'AUG', title: 'Augsburg', native: 'Augsburg' },
56
+ ],
57
+ },
58
+ {
59
+ code: 'DE-BE',
60
+ title: 'Berlin',
61
+ native: 'Berlin',
62
+ cities: [{ code: 'BER', title: 'Berlin', native: 'Berlin' }],
63
+ },
64
+ {
65
+ code: 'DE-NRW',
66
+ title: 'North Rhine-Westphalia',
67
+ native: 'Nordrhein-Westfalen',
68
+ cities: [
69
+ { code: 'CGN', title: 'Cologne', native: 'Köln' },
70
+ { code: 'DUS', title: 'Düsseldorf', native: 'Düsseldorf' },
71
+ { code: 'DOR', title: 'Dortmund', native: 'Dortmund' },
72
+ ],
73
+ },
74
+ ],
75
+ },
76
+ {
77
+ code: 'FR',
78
+ title: 'France',
79
+ native: 'France',
80
+ timezone: 'UTC+2',
81
+ regional: 'fr-FR',
82
+ provinces: [
83
+ {
84
+ code: 'FR-IDF',
85
+ title: 'Île-de-France',
86
+ native: 'Île-de-France',
87
+ cities: [
88
+ { code: 'PAR', title: 'Paris', native: 'Paris' },
89
+ { code: 'VER', title: 'Versailles', native: 'Versailles' },
90
+ { code: 'BOL', title: 'Boulogne-Billancourt', native: 'Boulogne-Billancourt' },
91
+ ],
92
+ },
93
+ {
94
+ code: 'FR-PAC',
95
+ title: "Provence-Alpes-Côte d'Azur",
96
+ native: "Provence-Alpes-Côte d'Azur",
97
+ cities: [
98
+ { code: 'MAR', title: 'Marseille', native: 'Marseille' },
99
+ { code: 'NIC', title: 'Nice', native: 'Nice' },
100
+ { code: 'TOU', title: 'Toulon', native: 'Toulon' },
101
+ ],
102
+ },
103
+ {
104
+ code: 'FR-OCC',
105
+ title: 'Occitanie',
106
+ native: 'Occitanie',
107
+ cities: [
108
+ { code: 'TOU', title: 'Toulouse', native: 'Toulouse' },
109
+ { code: 'MON', title: 'Montpellier', native: 'Montpellier' },
110
+ { code: 'NIM', title: 'Nîmes', native: 'Nîmes' },
111
+ ],
112
+ },
113
+ ],
114
+ },
115
+ {
116
+ code: 'ES',
117
+ title: 'Spain',
118
+ native: 'España',
119
+ timezone: 'UTC+1',
120
+ regional: 'es-ES',
121
+ provinces: [
122
+ {
123
+ code: 'ES-CAT',
124
+ title: 'Catalonia',
125
+ native: 'Catalunya',
126
+ cities: [
127
+ { code: 'BAR', title: 'Barcelona', native: 'Barcelona' },
128
+ { code: 'GIR', title: 'Girona', native: 'Girona' },
129
+ { code: 'TAR', title: 'Tarragona', native: 'Tarragona' },
130
+ ],
131
+ },
132
+ {
133
+ code: 'ES-AND',
134
+ title: 'Andalusia',
135
+ native: 'Andalucía',
136
+ cities: [
137
+ { code: 'SEV', title: 'Seville', native: 'Sevilla' },
138
+ { code: 'MAL', title: 'Malaga', native: 'Málaga' },
139
+ { code: 'GRA', title: 'Granada', native: 'Granada' },
140
+ ],
141
+ },
142
+ {
143
+ code: 'ES-MAD',
144
+ title: 'Community of Madrid',
145
+ native: 'Comunidad de Madrid',
146
+ cities: [{ code: 'MAD', title: 'Madrid', native: 'Madrid' }],
147
+ },
148
+ ],
149
+ },
150
+ {
151
+ code: 'IT',
152
+ title: 'Italy',
153
+ native: 'Italia',
154
+ timezone: 'UTC+1',
155
+ regional: 'it-IT',
156
+ provinces: [
157
+ {
158
+ code: 'IT-LOM',
159
+ title: 'Lombardy',
160
+ native: 'Lombardia',
161
+ cities: [
162
+ { code: 'MIL', title: 'Milan', native: 'Milano' },
163
+ { code: 'BRE', title: 'Brescia', native: 'Brescia' },
164
+ { code: 'MON', title: 'Monza', native: 'Monza' },
165
+ ],
166
+ },
167
+ {
168
+ code: 'IT-LAZ',
169
+ title: 'Lazio',
170
+ native: 'Lazio',
171
+ cities: [
172
+ { code: 'ROM', title: 'Rome', native: 'Roma' },
173
+ { code: 'FII', title: 'Fiumicino', native: 'Fiumicino' },
174
+ { code: 'VIT', title: 'Viterbo', native: 'Viterbo' },
175
+ ],
176
+ },
177
+ {
178
+ code: 'IT-CAM',
179
+ title: 'Campania',
180
+ native: 'Campania',
181
+ cities: [
182
+ { code: 'NAP', title: 'Naples', native: 'Napoli' },
183
+ { code: 'SAL', title: 'Salerno', native: 'Salerno' },
184
+ { code: 'CAS', title: 'Caserta', native: 'Caserta' },
185
+ ],
186
+ },
187
+ ],
188
+ },
189
+ {
190
+ code: 'JP',
191
+ title: 'Japan',
192
+ native: '日本',
193
+ timezone: 'UTC+9',
194
+ regional: 'ja-JP',
195
+ provinces: [
196
+ {
197
+ code: 'JP-TOK',
198
+ title: 'Tokyo',
199
+ native: '東京都',
200
+ cities: [
201
+ { code: 'TOK', title: 'Tokyo', native: '東京' },
202
+ { code: 'HAC', title: 'Hachioji', native: '八王子市' },
203
+ { code: 'MAC', title: 'Machida', native: '町田市' },
204
+ ],
205
+ },
206
+ {
207
+ code: 'JP-OSA',
208
+ title: 'Osaka',
209
+ native: '大阪府',
210
+ cities: [
211
+ { code: 'OSA', title: 'Osaka', native: '大阪市' },
212
+ { code: 'SAK', title: 'Sakai', native: '堺市' },
213
+ { code: 'HOS', title: 'Higashi-Osaka', native: '東大阪市' },
214
+ ],
215
+ },
216
+ {
217
+ code: 'JP-HOK',
218
+ title: 'Hokkaido',
219
+ native: '北海道',
220
+ cities: [
221
+ { code: 'SAP', title: 'Sapporo', native: '札幌市' },
222
+ { code: 'ASA', title: 'Asahikawa', native: '旭川市' },
223
+ { code: 'HAK', title: 'Hakodate', native: '函館市' },
224
+ ],
225
+ },
226
+ ],
227
+ },
228
+ {
229
+ code: 'AU',
230
+ title: 'Australia',
231
+ native: 'Australia',
232
+ timezone: 'UTC+10',
233
+ regional: 'en-AU',
234
+ provinces: [
235
+ {
236
+ code: 'AU-NSW',
237
+ title: 'New South Wales',
238
+ native: 'New South Wales',
239
+ cities: [
240
+ { code: 'SYD', title: 'Sydney', native: 'Sydney' },
241
+ { code: 'NEW', title: 'Newcastle', native: 'Newcastle' },
242
+ { code: 'WOL', title: 'Wollongong', native: 'Wollongong' },
243
+ ],
244
+ },
245
+ {
246
+ code: 'AU-VIC',
247
+ title: 'Victoria',
248
+ native: 'Victoria',
249
+ cities: [
250
+ { code: 'MEL', title: 'Melbourne', native: 'Melbourne' },
251
+ { code: 'GEE', title: 'Geelong', native: 'Geelong' },
252
+ { code: 'BAL', title: 'Ballarat', native: 'Ballarat' },
253
+ ],
254
+ },
255
+ {
256
+ code: 'AU-QLD',
257
+ title: 'Queensland',
258
+ native: 'Queensland',
259
+ cities: [
260
+ { code: 'BRI', title: 'Brisbane', native: 'Brisbane' },
261
+ { code: 'GLC', title: 'Gold Coast', native: 'Gold Coast' },
262
+ { code: 'CAR', title: 'Cairns', native: 'Cairns' },
263
+ ],
264
+ },
265
+ ],
266
+ },
267
+ {
268
+ code: 'NZ',
269
+ title: 'New Zealand',
270
+ native: 'Aotearoa',
271
+ timezone: 'UTC+12',
272
+ regional: 'en-NZ',
273
+ provinces: [
274
+ {
275
+ code: 'NZ-AUK',
276
+ title: 'Auckland',
277
+ native: 'Auckland',
278
+ cities: [
279
+ { code: 'AKL', title: 'Auckland', native: 'Auckland' },
280
+ { code: 'MAN', title: 'Manukau', native: 'Manukau' },
281
+ { code: 'WAI', title: 'Waitakere', native: 'Waitakere' },
282
+ ],
283
+ },
284
+ {
285
+ code: 'NZ-WGN',
286
+ title: 'Wellington',
287
+ native: 'Wellington',
288
+ cities: [
289
+ { code: 'WLG', title: 'Wellington', native: 'Wellington' },
290
+ { code: 'LHW', title: 'Lower Hutt', native: 'Lower Hutt' },
291
+ { code: 'POR', title: 'Porirua', native: 'Porirua' },
292
+ ],
293
+ },
294
+ {
295
+ code: 'NZ-CAN',
296
+ title: 'Canterbury',
297
+ native: 'Canterbury',
298
+ cities: [
299
+ { code: 'CHC', title: 'Christchurch', native: 'Christchurch' },
300
+ { code: 'ROL', title: 'Rolleston', native: 'Rolleston' },
301
+ { code: 'TIM', title: 'Timaru', native: 'Timaru' },
302
+ ],
303
+ },
304
+ ],
305
+ },
306
+ {
307
+ code: 'IR',
308
+ title: 'Iran',
309
+ native: 'ایران',
310
+ timezone: 'UTC+3:30',
311
+ regional: 'fa-IR',
312
+ provinces: [
313
+ {
314
+ code: 'IR-TEH',
315
+ title: 'Tehran Province',
316
+ native: 'استان تهران',
317
+ cities: [
318
+ { code: 'TEH', title: 'Tehran', native: 'تهران' },
319
+ { code: 'REY', title: 'Rey', native: 'ری' },
320
+ { code: 'ESL', title: 'Eslamshahr', native: 'اسلامشهر' },
321
+ ],
322
+ },
323
+ {
324
+ code: 'IR-ISF',
325
+ title: 'Isfahan Province',
326
+ native: 'استان اصفهان',
327
+ cities: [
328
+ { code: 'ISF', title: 'Isfahan', native: 'اصفهان' },
329
+ { code: 'KAS', title: 'Kashan', native: 'کاشان' },
330
+ { code: 'NAJ', title: 'Najafabad', native: 'نجف‌آباد' },
331
+ ],
332
+ },
333
+ {
334
+ code: 'IR-FAR',
335
+ title: 'Fars Province',
336
+ native: 'استان فارس',
337
+ cities: [
338
+ { code: 'SHA', title: 'Shiraz', native: 'شیراز' },
339
+ { code: 'MAR', title: 'Marvdasht', native: 'مرودشت' },
340
+ { code: 'JAH', title: 'Jahrom', native: 'جهرم' },
341
+ ],
342
+ },
343
+ ],
344
+ },
345
+ {
346
+ code: 'AE',
347
+ title: 'United Arab Emirates',
348
+ native: 'الإمارات العربية المتحدة',
349
+ timezone: 'UTC+4',
350
+ regional: 'ar-AE',
351
+ provinces: [
352
+ {
353
+ code: 'AE-DXB',
354
+ title: 'Dubai',
355
+ native: 'دبي',
356
+ cities: [
357
+ { code: 'DXB', title: 'Dubai', native: 'دبي' },
358
+ { code: 'JUM', title: 'Jumeirah', native: 'جميرا' },
359
+ { code: 'DEI', title: 'Deira', native: 'ديرة' },
360
+ ],
361
+ },
362
+ {
363
+ code: 'AE-AD',
364
+ title: 'Abu Dhabi',
365
+ native: 'أبو ظبي',
366
+ cities: [
367
+ { code: 'AUH', title: 'Abu Dhabi', native: 'أبو ظبي' },
368
+ { code: 'ALN', title: 'Al Ain', native: 'العين' },
369
+ { code: 'KHA', title: 'Khalifa City', native: 'مدينة خليفة' },
370
+ ],
371
+ },
372
+ {
373
+ code: 'AE-SHR',
374
+ title: 'Sharjah',
375
+ native: 'الشارقة',
376
+ cities: [
377
+ { code: 'SHJ', title: 'Sharjah', native: 'الشارقة' },
378
+ { code: 'ALQ', title: 'Al Qasimia', native: 'القاسمية' },
379
+ { code: 'KHR', title: 'Khorfakkan', native: 'خورفكان' },
380
+ ],
381
+ },
382
+ ],
383
+ },
384
+ {
385
+ code: 'TR',
386
+ title: 'Turkey',
387
+ native: 'Türkiye',
388
+ timezone: 'UTC+3',
389
+ regional: 'tr-TR',
390
+ provinces: [
391
+ {
392
+ code: 'TR-IST',
393
+ title: 'Istanbul',
394
+ native: 'İstanbul',
395
+ cities: [
396
+ { code: 'IST', title: 'Istanbul', native: 'İstanbul' },
397
+ { code: 'KAD', title: 'Kadıköy', native: 'Kadıköy' },
398
+ { code: 'BES', title: 'Beşiktaş', native: 'Beşiktaş' },
399
+ ],
400
+ },
401
+ {
402
+ code: 'TR-ANK',
403
+ title: 'Ankara',
404
+ native: 'Ankara',
405
+ cities: [
406
+ { code: 'ANK', title: 'Ankara', native: 'Ankara' },
407
+ { code: 'CAN', title: 'Çankaya', native: 'Çankaya' },
408
+ { code: 'KEC', title: 'Keçiören', native: 'Keçiören' },
409
+ ],
410
+ },
411
+ {
412
+ code: 'TR-IZM',
413
+ title: 'Izmir',
414
+ native: 'İzmir',
415
+ cities: [
416
+ { code: 'IZM', title: 'Izmir', native: 'İzmir' },
417
+ { code: 'KON', title: 'Konak', native: 'Konak' },
418
+ { code: 'KAR', title: 'Karşıyaka', native: 'Karşıyaka' },
419
+ ],
420
+ },
421
+ ],
422
+ },
423
+ {
424
+ code: 'GB',
425
+ title: 'United Kingdom',
426
+ native: 'United Kingdom',
427
+ timezone: 'UTC+0',
428
+ regional: 'en-GB',
429
+ provinces: [
430
+ {
431
+ code: 'GB-ENG',
432
+ title: 'England',
433
+ native: 'England',
434
+ cities: [
435
+ { code: 'LDN', title: 'London', native: 'London' },
436
+ { code: 'MAN', title: 'Manchester', native: 'Manchester' },
437
+ { code: 'BIR', title: 'Birmingham', native: 'Birmingham' },
438
+ ],
439
+ },
440
+ {
441
+ code: 'GB-SCT',
442
+ title: 'Scotland',
443
+ native: 'Scotland',
444
+ cities: [
445
+ { code: 'EDI', title: 'Edinburgh', native: 'Edinburgh' },
446
+ { code: 'GLA', title: 'Glasgow', native: 'Glasgow' },
447
+ { code: 'ABD', title: 'Aberdeen', native: 'Aberdeen' },
448
+ ],
449
+ },
450
+ {
451
+ code: 'GB-WLS',
452
+ title: 'Wales',
453
+ native: 'Wales',
454
+ cities: [
455
+ { code: 'CDF', title: 'Cardiff', native: 'Cardiff' },
456
+ { code: 'SWA', title: 'Swansea', native: 'Swansea' },
457
+ { code: 'NEW', title: 'Newport', native: 'Newport' },
458
+ ],
459
+ },
460
+ {
461
+ code: 'GB-NIR',
462
+ title: 'Northern Ireland',
463
+ native: 'Northern Ireland',
464
+ cities: [
465
+ { code: 'BEL', title: 'Belfast', native: 'Belfast' },
466
+ { code: 'DER', title: 'Derry', native: 'Derry' },
467
+ { code: 'LIS', title: 'Lisburn', native: 'Lisburn' },
468
+ ],
469
+ },
470
+ ],
471
+ },
472
+ {
473
+ code: 'CA',
474
+ title: 'Canada',
475
+ native: 'Canada',
476
+ timezone: 'UTC-5',
477
+ regional: 'en-CA',
478
+ provinces: [
479
+ {
480
+ code: 'CA-ON',
481
+ title: 'Ontario',
482
+ native: 'Ontario',
483
+ cities: [
484
+ { code: 'TOR', title: 'Toronto', native: 'Toronto' },
485
+ { code: 'OTT', title: 'Ottawa', native: 'Ottawa' },
486
+ { code: 'MIS', title: 'Mississauga', native: 'Mississauga' },
487
+ ],
488
+ },
489
+ {
490
+ code: 'CA-QC',
491
+ title: 'Quebec',
492
+ native: 'Québec',
493
+ cities: [
494
+ { code: 'MTL', title: 'Montreal', native: 'Montréal' },
495
+ { code: 'QBC', title: 'Quebec City', native: 'Québec' },
496
+ { code: 'LAV', title: 'Laval', native: 'Laval' },
497
+ ],
498
+ },
499
+ {
500
+ code: 'CA-BC',
501
+ title: 'British Columbia',
502
+ native: 'British Columbia',
503
+ cities: [
504
+ { code: 'VAN', title: 'Vancouver', native: 'Vancouver' },
505
+ { code: 'VIC', title: 'Victoria', native: 'Victoria' },
506
+ { code: 'RIC', title: 'Richmond', native: 'Richmond' },
507
+ ],
508
+ },
509
+ ],
510
+ },
511
+ {
512
+ code: 'ZA',
513
+ title: 'South Africa',
514
+ native: 'South Africa',
515
+ timezone: 'UTC+2',
516
+ regional: 'en-ZA',
517
+ provinces: [
518
+ {
519
+ code: 'ZA-GT',
520
+ title: 'Gauteng',
521
+ native: 'Gauteng',
522
+ cities: [
523
+ { code: 'JHB', title: 'Johannesburg', native: 'Johannesburg' },
524
+ { code: 'PRT', title: 'Pretoria', native: 'Pretoria' },
525
+ { code: 'SOW', title: 'Soweto', native: 'Soweto' },
526
+ ],
527
+ },
528
+ {
529
+ code: 'ZA-WC',
530
+ title: 'Western Cape',
531
+ native: 'Western Cape',
532
+ cities: [
533
+ { code: 'CPT', title: 'Cape Town', native: 'Cape Town' },
534
+ { code: 'STL', title: 'Stellenbosch', native: 'Stellenbosch' },
535
+ { code: 'PAR', title: 'Paarl', native: 'Paarl' },
536
+ ],
537
+ },
538
+ {
539
+ code: 'ZA-KZN',
540
+ title: 'KwaZulu-Natal',
541
+ native: 'KwaZulu-Natal',
542
+ cities: [
543
+ { code: 'DBN', title: 'Durban', native: 'Durban' },
544
+ { code: 'PMB', title: 'Pietermaritzburg', native: 'Pietermaritzburg' },
545
+ { code: 'RIC', title: 'Richards Bay', native: 'Richards Bay' },
546
+ ],
547
+ },
548
+ ],
549
+ },
550
+ {
551
+ code: 'IN',
552
+ title: 'India',
553
+ native: 'भारत',
554
+ timezone: 'UTC+5:30',
555
+ regional: 'en-IN',
556
+ provinces: [
557
+ {
558
+ code: 'IN-MH',
559
+ title: 'Maharashtra',
560
+ native: 'महाराष्ट्र',
561
+ cities: [
562
+ { code: 'BOM', title: 'Mumbai', native: 'मुंबई' },
563
+ { code: 'PNQ', title: 'Pune', native: 'पुणे' },
564
+ { code: 'NAG', title: 'Nagpur', native: 'नागपूर' },
565
+ ],
566
+ },
567
+ {
568
+ code: 'IN-KA',
569
+ title: 'Karnataka',
570
+ native: 'ಕರ್ನಾಟಕ',
571
+ cities: [
572
+ { code: 'BLR', title: 'Bangalore', native: 'ಬೆಂಗಳೂರು' },
573
+ { code: 'MYS', title: 'Mysore', native: 'ಮೈಸೂರು' },
574
+ { code: 'MNG', title: 'Mangalore', native: 'ಮಂಗಳೂರು' },
575
+ ],
576
+ },
577
+ {
578
+ code: 'IN-DL',
579
+ title: 'Delhi',
580
+ native: 'दिल्ली',
581
+ cities: [
582
+ { code: 'DEL', title: 'New Delhi', native: 'नई दिल्ली' },
583
+ { code: 'ODL', title: 'Old Delhi', native: 'पुरानी दिल्ली' },
584
+ ],
585
+ },
586
+ ],
587
+ },
588
+ ];
589
+
590
+ export { countries };
591
+ //# sourceMappingURL=acorex-connectivity-mock-countries-DHRrtbwM.mjs.map