@silexpert/core 2.0.43 → 2.0.45

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 (81) hide show
  1. package/dist/api/resources/KycMandate.d.ts +7 -0
  2. package/dist/api/resources/KycMandate.d.ts.map +1 -0
  3. package/dist/api/resources/KycMandate.js +10 -0
  4. package/dist/api/resources/KycMandate.js.map +1 -0
  5. package/dist/api/resources/Vialink.d.ts +7 -0
  6. package/dist/api/resources/Vialink.d.ts.map +1 -0
  7. package/dist/api/resources/Vialink.js +10 -0
  8. package/dist/api/resources/Vialink.js.map +1 -0
  9. package/dist/api/resources.d.ts +4 -0
  10. package/dist/api/resources.d.ts.map +1 -1
  11. package/dist/api/resources.js +4 -0
  12. package/dist/api/resources.js.map +1 -1
  13. package/dist/types/Enum/Country.d.ts +1 -0
  14. package/dist/types/Enum/Country.d.ts.map +1 -1
  15. package/dist/types/Enum/Country.js +516 -230
  16. package/dist/types/Enum/Country.js.map +1 -1
  17. package/dist/types/Enum/InpiType.d.ts +290 -0
  18. package/dist/types/Enum/InpiType.d.ts.map +1 -1
  19. package/dist/types/Enum/InpiType.js +290 -0
  20. package/dist/types/Enum/InpiType.js.map +1 -1
  21. package/dist/types/Enum/LegalForm.d.ts +0 -1
  22. package/dist/types/Enum/LegalForm.d.ts.map +1 -1
  23. package/dist/types/Enum/LegalForm.js +104 -33
  24. package/dist/types/Enum/LegalForm.js.map +1 -1
  25. package/dist/types/Interface/api/config/ConfigType.d.ts +13 -0
  26. package/dist/types/Interface/api/config/ConfigType.d.ts.map +1 -1
  27. package/dist/types/Interface/api/config/ConfigType.js.map +1 -1
  28. package/dist/types/Interface/api/docoon/DocoonLegalEntity.d.ts +41 -0
  29. package/dist/types/Interface/api/docoon/DocoonLegalEntity.d.ts.map +1 -0
  30. package/dist/types/Interface/api/docoon/DocoonLegalEntity.js +2 -0
  31. package/dist/types/Interface/api/docoon/DocoonLegalEntity.js.map +1 -0
  32. package/dist/types/Interface/api/docoon/Read.d.ts +59 -0
  33. package/dist/types/Interface/api/docoon/Read.d.ts.map +1 -1
  34. package/dist/types/Interface/api/docoon/Read.js.map +1 -1
  35. package/dist/types/Interface/api/inpi/inpi.d.ts +1 -0
  36. package/dist/types/Interface/api/inpi/inpi.d.ts.map +1 -1
  37. package/dist/types/Interface/api/inpi/inpi.js.map +1 -1
  38. package/dist/types/Interface/api/kyc/Create.d.ts +87 -0
  39. package/dist/types/Interface/api/kyc/Create.d.ts.map +1 -0
  40. package/dist/types/Interface/api/kyc/Create.js +105 -0
  41. package/dist/types/Interface/api/kyc/Create.js.map +1 -0
  42. package/dist/types/Interface/api/kyc/Read.d.ts +830 -0
  43. package/dist/types/Interface/api/kyc/Read.d.ts.map +1 -0
  44. package/dist/types/Interface/api/kyc/Read.js +2 -0
  45. package/dist/types/Interface/api/kyc/Read.js.map +1 -0
  46. package/dist/types/Interface/api/kyc/kyc.d.ts +157 -0
  47. package/dist/types/Interface/api/kyc/kyc.d.ts.map +1 -0
  48. package/dist/types/Interface/api/kyc/kyc.js +6 -0
  49. package/dist/types/Interface/api/kyc/kyc.js.map +1 -0
  50. package/dist/types/Interface/api/society/ImportInvoice.d.ts.map +1 -1
  51. package/dist/types/Interface/api/society/ImportInvoice.js +0 -2
  52. package/dist/types/Interface/api/society/ImportInvoice.js.map +1 -1
  53. package/dist/types/Interface/api/user/RegisterProspect.d.ts +5 -1
  54. package/dist/types/Interface/api/user/RegisterProspect.d.ts.map +1 -1
  55. package/dist/types/Interface/api/user/RegisterProspect.js.map +1 -1
  56. package/dist/types/Interface/models/IEInvoicingKycAndMandate.d.ts +23 -0
  57. package/dist/types/Interface/models/IEInvoicingKycAndMandate.d.ts.map +1 -0
  58. package/dist/types/Interface/models/IEInvoicingKycAndMandate.js +22 -0
  59. package/dist/types/Interface/models/IEInvoicingKycAndMandate.js.map +1 -0
  60. package/dist/types/index.d.ts +4 -0
  61. package/dist/types/index.d.ts.map +1 -1
  62. package/dist/types/index.js +4 -0
  63. package/dist/types/index.js.map +1 -1
  64. package/package.json +1 -1
  65. package/ts/api/resources/KycMandate.ts +12 -0
  66. package/ts/api/resources/Vialink.ts +12 -0
  67. package/ts/api/resources.ts +4 -0
  68. package/ts/types/Enum/Country.ts +517 -230
  69. package/ts/types/Enum/InpiType.ts +291 -0
  70. package/ts/types/Enum/LegalForm.ts +104 -34
  71. package/ts/types/Interface/api/config/ConfigType.ts +14 -0
  72. package/ts/types/Interface/api/docoon/DocoonLegalEntity.ts +79 -0
  73. package/ts/types/Interface/api/docoon/Read.ts +60 -0
  74. package/ts/types/Interface/api/inpi/inpi.ts +1 -0
  75. package/ts/types/Interface/api/kyc/Create.ts +136 -0
  76. package/ts/types/Interface/api/kyc/Read.ts +842 -0
  77. package/ts/types/Interface/api/kyc/kyc.ts +190 -0
  78. package/ts/types/Interface/api/society/ImportInvoice.ts +0 -2
  79. package/ts/types/Interface/api/user/RegisterProspect.ts +5 -1
  80. package/ts/types/Interface/models/IEInvoicingKycAndMandate.ts +25 -0
  81. package/ts/types/index.ts +4 -0
@@ -245,129 +245,239 @@ export var CountryId;
245
245
  CountryId[CountryId["MONTENEGRO"] = 243] = "MONTENEGRO";
246
246
  })(CountryId || (CountryId = {}));
247
247
  export const CountryList = [
248
- { name: 'Afghanistan', ISO3166_num: 4, ISO3166: 'AF', id: CountryId.AFGHANISTAN },
249
- { name: 'Afrique du Sud', ISO3166_num: 710, ISO3166: 'ZA', id: CountryId.AFRIQUE_DU_SUD },
250
- { name: 'Albanie', ISO3166_num: 8, ISO3166: 'AL', id: CountryId.ALBANIE },
251
- { name: 'Algérie', ISO3166_num: 12, ISO3166: 'DZ', id: CountryId.ALGERIE },
252
- { name: 'Allemagne', ISO3166_num: 276, ISO3166: 'DE', id: CountryId.ALLEMAGNE },
253
- { name: 'Andorre', ISO3166_num: 20, ISO3166: 'AD', id: CountryId.ANDORRE },
254
- { name: 'Angola', ISO3166_num: 24, ISO3166: 'AO', id: CountryId.ANGOLA },
255
- { name: 'Anguilla', ISO3166_num: 660, ISO3166: 'AI', id: CountryId.ANGUILLA, isBlacklist: true },
256
- { name: 'Antarctique', ISO3166_num: 10, ISO3166: 'AQ', id: CountryId.ANTARCTIQUE },
257
- { name: 'Antigua-et-Barbuda', ISO3166_num: 28, ISO3166: 'AG', id: CountryId.ANTIGUA_ET_BARBUDA },
258
- { name: 'Antilles Néerlandaises', ISO3166_num: 528, ISO3166: 'AN', id: CountryId.ANTILLES_NEERLANDAISES },
259
- { name: 'Arabie Saoudite', ISO3166_num: 682, ISO3166: 'SA', id: CountryId.ARABIE_SAOUDITE },
260
- { name: 'Argentine', ISO3166_num: 32, ISO3166: 'AR', id: CountryId.ARGENTINE },
261
- { name: 'Arménie', ISO3166_num: 51, ISO3166: 'AM', id: CountryId.ARMENIE },
262
- { name: 'Aruba', ISO3166_num: 533, ISO3166: 'AW', id: CountryId.ARUBA },
263
- { name: 'Australie', ISO3166_num: 36, ISO3166: 'AU', id: CountryId.AUSTRALIE },
264
- { name: 'Autriche', ISO3166_num: 40, ISO3166: 'AT', id: CountryId.AUTRICHE },
265
- { name: 'Azerbaïdjan', ISO3166_num: 31, ISO3166: 'AZ', id: CountryId.AZERBAIDJAN },
266
- { name: 'Bahamas', ISO3166_num: 44, ISO3166: 'BS', id: CountryId.BAHAMAS, isBlacklist: true },
267
- { name: 'Bahreïn', ISO3166_num: 48, ISO3166: 'BH', id: CountryId.BAHREIN },
268
- { name: 'Bangladesh', ISO3166_num: 50, ISO3166: 'BD', id: CountryId.BANGLADESH },
269
- { name: 'Barbade', ISO3166_num: 52, ISO3166: 'BB', id: CountryId.BARBADE },
270
- { name: 'Bélarus', ISO3166_num: 112, ISO3166: 'BY', id: CountryId.BELARUS },
271
- { name: 'Belgique', ISO3166_num: 56, ISO3166: 'BE', id: CountryId.BELGIQUE },
272
- { name: 'Belize', ISO3166_num: 84, ISO3166: 'BZ', id: CountryId.BELIZE },
273
- { name: 'Bénin', ISO3166_num: 204, ISO3166: 'BJ', id: CountryId.BENIN },
274
- { name: 'Bermudes', ISO3166_num: 60, ISO3166: 'BM', id: CountryId.BERMUDES },
275
- { name: 'Bhoutan', ISO3166_num: 64, ISO3166: 'BT', id: CountryId.BHOUTAN },
276
- { name: 'Bolivie', ISO3166_num: 68, ISO3166: 'BO', id: CountryId.BOLIVIE },
277
- { name: 'Bosnie-Herzégovine', ISO3166_num: 70, ISO3166: 'BA', id: CountryId.BOSNIE_HERZEGOVINE },
278
- { name: 'Botswana', ISO3166_num: 72, ISO3166: 'BW', id: CountryId.BOTSWANA },
279
- { name: 'Brésil', ISO3166_num: 76, ISO3166: 'BR', id: CountryId.BRESIL },
280
- { name: 'Brunéi Darussalam', ISO3166_num: 96, ISO3166: 'BN', id: CountryId.BRUNEI_DARUSSALAM },
281
- { name: 'Bulgarie', ISO3166_num: 100, ISO3166: 'BG', id: CountryId.BULGARIE },
282
- { name: 'Burkina Faso', ISO3166_num: 854, ISO3166: 'BF', id: CountryId.BURKINA_FASO },
283
- { name: 'Burundi', ISO3166_num: 108, ISO3166: 'BI', id: CountryId.BURUNDI },
284
- { name: 'Cambodge', ISO3166_num: 116, ISO3166: 'KH', id: CountryId.CAMBODGE },
285
- { name: 'Cameroun', ISO3166_num: 120, ISO3166: 'CM', id: CountryId.CAMEROUN },
286
- { name: 'Canada', ISO3166_num: 124, ISO3166: 'CA', id: CountryId.CANADA },
287
- { name: 'Cap-vert', ISO3166_num: 132, ISO3166: 'CV', id: CountryId.CAP_VERT },
288
- { name: 'Chili', ISO3166_num: 152, ISO3166: 'CL', id: CountryId.CHILI },
289
- { name: 'Chine', ISO3166_num: 156, ISO3166: 'CN', id: CountryId.CHINE },
290
- { name: 'Chypre', ISO3166_num: 196, ISO3166: 'CY', id: CountryId.CHYPRE },
291
- { name: 'Colombie', ISO3166_num: 170, ISO3166: 'CO', id: CountryId.COLOMBIE },
292
- { name: 'Comores', ISO3166_num: 174, ISO3166: 'KM', id: CountryId.COMORES },
293
- { name: 'Costa Rica', ISO3166_num: 188, ISO3166: 'CR', id: CountryId.COSTA_RICA, isBlacklist: true },
294
- { name: "Côte d'Ivoire", ISO3166_num: 384, ISO3166: 'CI', id: CountryId.COTE_D_IVOIRE },
295
- { name: 'Croatie', ISO3166_num: 191, ISO3166: 'HR', id: CountryId.CROATIE },
296
- { name: 'Cuba', ISO3166_num: 192, ISO3166: 'CU', id: CountryId.CUBA },
297
- { name: 'Danemark', ISO3166_num: 208, ISO3166: 'DK', id: CountryId.DANEMARK },
298
- { name: 'Djibouti', ISO3166_num: 262, ISO3166: 'DJ', id: CountryId.DJIBOUTI },
299
- { name: 'Dominique', ISO3166_num: 212, ISO3166: 'DM', id: CountryId.DOMINIQUE },
300
- { name: 'Égypte', ISO3166_num: 818, ISO3166: 'EG', id: CountryId.EGYPTE },
301
- { name: 'El Salvador', ISO3166_num: 222, ISO3166: 'SV', id: CountryId.EL_SALVADOR },
302
- { name: 'Émirats Arabes Unis', ISO3166_num: 784, ISO3166: 'AE', id: CountryId.EMIRATS_ARABES_UNIS },
303
- { name: 'Équateur', ISO3166_num: 218, ISO3166: 'EC', id: CountryId.EQUATEUR },
304
- { name: 'Érythrée', ISO3166_num: 232, ISO3166: 'ER', id: CountryId.ERYTHREE },
305
- { name: 'Espagne', ISO3166_num: 724, ISO3166: 'ES', id: CountryId.ESPAGNE },
306
- { name: 'Estonie', ISO3166_num: 233, ISO3166: 'EE', id: CountryId.ESTONIE },
307
- { name: 'États Fédérés de Micronésie', ISO3166_num: 748, ISO3166: 'FM', id: CountryId.ETATS_FEDERES_DE_MICRONESIE },
308
- { name: 'États-Unis', ISO3166_num: 840, ISO3166: 'US', id: CountryId.ETATS_UNIS },
309
- { name: 'Éthiopie', ISO3166_num: 231, ISO3166: 'ET', id: CountryId.ETHIOPIE },
248
+ { name: 'Afghanistan', ISO3166_num: 4, ISO3166: 'AF', id: CountryId.AFGHANISTAN, ISO3166_alpha3_num: 'AFG' },
249
+ { name: 'Afrique du Sud', ISO3166_num: 710, ISO3166: 'ZA', id: CountryId.AFRIQUE_DU_SUD, ISO3166_alpha3_num: 'ZAF' },
250
+ { name: 'Albanie', ISO3166_num: 8, ISO3166: 'AL', id: CountryId.ALBANIE, ISO3166_alpha3_num: 'ALB' },
251
+ { name: 'Algérie', ISO3166_num: 12, ISO3166: 'DZ', id: CountryId.ALGERIE, ISO3166_alpha3_num: 'DZA' },
252
+ { name: 'Allemagne', ISO3166_num: 276, ISO3166: 'DE', id: CountryId.ALLEMAGNE, ISO3166_alpha3_num: 'DEU' },
253
+ { name: 'Andorre', ISO3166_num: 20, ISO3166: 'AD', id: CountryId.ANDORRE, ISO3166_alpha3_num: 'AND' },
254
+ { name: 'Angola', ISO3166_num: 24, ISO3166: 'AO', id: CountryId.ANGOLA, ISO3166_alpha3_num: 'AGO' },
255
+ {
256
+ name: 'Anguilla',
257
+ ISO3166_num: 660,
258
+ ISO3166: 'AI',
259
+ id: CountryId.ANGUILLA,
260
+ ISO3166_alpha3_num: 'AIA',
261
+ isBlacklist: true,
262
+ },
263
+ { name: 'Antarctique', ISO3166_num: 10, ISO3166: 'AQ', id: CountryId.ANTARCTIQUE, ISO3166_alpha3_num: 'ATA' },
264
+ {
265
+ name: 'Antigua-et-Barbuda',
266
+ ISO3166_num: 28,
267
+ ISO3166: 'AG',
268
+ id: CountryId.ANTIGUA_ET_BARBUDA,
269
+ ISO3166_alpha3_num: 'ATG',
270
+ },
271
+ {
272
+ name: 'Antilles Néerlandaises',
273
+ ISO3166_num: 528,
274
+ ISO3166: 'AN',
275
+ id: CountryId.ANTILLES_NEERLANDAISES,
276
+ ISO3166_alpha3_num: null,
277
+ },
278
+ {
279
+ name: 'Arabie Saoudite',
280
+ ISO3166_num: 682,
281
+ ISO3166: 'SA',
282
+ id: CountryId.ARABIE_SAOUDITE,
283
+ ISO3166_alpha3_num: 'SAU',
284
+ },
285
+ { name: 'Argentine', ISO3166_num: 32, ISO3166: 'AR', id: CountryId.ARGENTINE, ISO3166_alpha3_num: 'ARG' },
286
+ { name: 'Arménie', ISO3166_num: 51, ISO3166: 'AM', id: CountryId.ARMENIE, ISO3166_alpha3_num: 'ARM' },
287
+ { name: 'Aruba', ISO3166_num: 533, ISO3166: 'AW', id: CountryId.ARUBA, ISO3166_alpha3_num: 'ABW' },
288
+ { name: 'Australie', ISO3166_num: 36, ISO3166: 'AU', id: CountryId.AUSTRALIE, ISO3166_alpha3_num: 'AUS' },
289
+ { name: 'Autriche', ISO3166_num: 40, ISO3166: 'AT', id: CountryId.AUTRICHE, ISO3166_alpha3_num: 'AUT' },
290
+ { name: 'Azerbaïdjan', ISO3166_num: 31, ISO3166: 'AZ', id: CountryId.AZERBAIDJAN, ISO3166_alpha3_num: 'AZE' },
291
+ {
292
+ name: 'Bahamas',
293
+ ISO3166_num: 44,
294
+ ISO3166: 'BS',
295
+ id: CountryId.BAHAMAS,
296
+ ISO3166_alpha3_num: 'BHS',
297
+ isBlacklist: true,
298
+ },
299
+ { name: 'Bahreïn', ISO3166_num: 48, ISO3166: 'BH', id: CountryId.BAHREIN, ISO3166_alpha3_num: 'BHR' },
300
+ { name: 'Bangladesh', ISO3166_num: 50, ISO3166: 'BD', id: CountryId.BANGLADESH, ISO3166_alpha3_num: 'BGD' },
301
+ { name: 'Barbade', ISO3166_num: 52, ISO3166: 'BB', id: CountryId.BARBADE, ISO3166_alpha3_num: 'BRB' },
302
+ { name: 'Bélarus', ISO3166_num: 112, ISO3166: 'BY', id: CountryId.BELARUS, ISO3166_alpha3_num: 'BLR' },
303
+ { name: 'Belgique', ISO3166_num: 56, ISO3166: 'BE', id: CountryId.BELGIQUE, ISO3166_alpha3_num: 'BEL' },
304
+ { name: 'Belize', ISO3166_num: 84, ISO3166: 'BZ', id: CountryId.BELIZE, ISO3166_alpha3_num: 'BLZ' },
305
+ { name: 'Bénin', ISO3166_num: 204, ISO3166: 'BJ', id: CountryId.BENIN, ISO3166_alpha3_num: 'BEN' },
306
+ { name: 'Bermudes', ISO3166_num: 60, ISO3166: 'BM', id: CountryId.BERMUDES, ISO3166_alpha3_num: 'BMU' },
307
+ { name: 'Bhoutan', ISO3166_num: 64, ISO3166: 'BT', id: CountryId.BHOUTAN, ISO3166_alpha3_num: 'BTN' },
308
+ { name: 'Bolivie', ISO3166_num: 68, ISO3166: 'BO', id: CountryId.BOLIVIE, ISO3166_alpha3_num: 'BOL' },
309
+ {
310
+ name: 'Bosnie-Herzégovine',
311
+ ISO3166_num: 70,
312
+ ISO3166: 'BA',
313
+ id: CountryId.BOSNIE_HERZEGOVINE,
314
+ ISO3166_alpha3_num: 'BIH',
315
+ },
316
+ { name: 'Botswana', ISO3166_num: 72, ISO3166: 'BW', id: CountryId.BOTSWANA, ISO3166_alpha3_num: 'BWA' },
317
+ { name: 'Brésil', ISO3166_num: 76, ISO3166: 'BR', id: CountryId.BRESIL, ISO3166_alpha3_num: 'BRA' },
318
+ {
319
+ name: 'Brunéi Darussalam',
320
+ ISO3166_num: 96,
321
+ ISO3166: 'BN',
322
+ id: CountryId.BRUNEI_DARUSSALAM,
323
+ ISO3166_alpha3_num: 'BRN',
324
+ },
325
+ { name: 'Bulgarie', ISO3166_num: 100, ISO3166: 'BG', id: CountryId.BULGARIE, ISO3166_alpha3_num: 'BGR' },
326
+ { name: 'Burkina Faso', ISO3166_num: 854, ISO3166: 'BF', id: CountryId.BURKINA_FASO, ISO3166_alpha3_num: 'BFA' },
327
+ { name: 'Burundi', ISO3166_num: 108, ISO3166: 'BI', id: CountryId.BURUNDI, ISO3166_alpha3_num: 'BDI' },
328
+ { name: 'Cambodge', ISO3166_num: 116, ISO3166: 'KH', id: CountryId.CAMBODGE, ISO3166_alpha3_num: 'KHM' },
329
+ { name: 'Cameroun', ISO3166_num: 120, ISO3166: 'CM', id: CountryId.CAMEROUN, ISO3166_alpha3_num: 'CMR' },
330
+ { name: 'Canada', ISO3166_num: 124, ISO3166: 'CA', id: CountryId.CANADA, ISO3166_alpha3_num: 'CAN' },
331
+ { name: 'Cap-vert', ISO3166_num: 132, ISO3166: 'CV', id: CountryId.CAP_VERT, ISO3166_alpha3_num: 'CPV' },
332
+ { name: 'Chili', ISO3166_num: 152, ISO3166: 'CL', id: CountryId.CHILI, ISO3166_alpha3_num: 'CHL' },
333
+ { name: 'Chine', ISO3166_num: 156, ISO3166: 'CN', id: CountryId.CHINE, ISO3166_alpha3_num: 'CHN' },
334
+ { name: 'Chypre', ISO3166_num: 196, ISO3166: 'CY', id: CountryId.CHYPRE, ISO3166_alpha3_num: 'CYP' },
335
+ { name: 'Colombie', ISO3166_num: 170, ISO3166: 'CO', id: CountryId.COLOMBIE, ISO3166_alpha3_num: 'COL' },
336
+ { name: 'Comores', ISO3166_num: 174, ISO3166: 'KM', id: CountryId.COMORES, ISO3166_alpha3_num: 'COM' },
337
+ {
338
+ name: 'Costa Rica',
339
+ ISO3166_num: 188,
340
+ ISO3166: 'CR',
341
+ id: CountryId.COSTA_RICA,
342
+ ISO3166_alpha3_num: 'CRI',
343
+ isBlacklist: true,
344
+ },
345
+ { name: "Côte d'Ivoire", ISO3166_num: 384, ISO3166: 'CI', id: CountryId.COTE_D_IVOIRE, ISO3166_alpha3_num: 'CIV' },
346
+ { name: 'Croatie', ISO3166_num: 191, ISO3166: 'HR', id: CountryId.CROATIE, ISO3166_alpha3_num: 'HRV' },
347
+ { name: 'Cuba', ISO3166_num: 192, ISO3166: 'CU', id: CountryId.CUBA, ISO3166_alpha3_num: 'CUB' },
348
+ { name: 'Danemark', ISO3166_num: 208, ISO3166: 'DK', id: CountryId.DANEMARK, ISO3166_alpha3_num: 'DNK' },
349
+ { name: 'Djibouti', ISO3166_num: 262, ISO3166: 'DJ', id: CountryId.DJIBOUTI, ISO3166_alpha3_num: 'DJI' },
350
+ { name: 'Dominique', ISO3166_num: 212, ISO3166: 'DM', id: CountryId.DOMINIQUE, ISO3166_alpha3_num: 'DMA' },
351
+ { name: 'Égypte', ISO3166_num: 818, ISO3166: 'EG', id: CountryId.EGYPTE, ISO3166_alpha3_num: 'EGY' },
352
+ { name: 'El Salvador', ISO3166_num: 222, ISO3166: 'SV', id: CountryId.EL_SALVADOR, ISO3166_alpha3_num: 'SLV' },
353
+ {
354
+ name: 'Émirats Arabes Unis',
355
+ ISO3166_num: 784,
356
+ ISO3166: 'AE',
357
+ id: CountryId.EMIRATS_ARABES_UNIS,
358
+ ISO3166_alpha3_num: 'ARE',
359
+ },
360
+ { name: 'Équateur', ISO3166_num: 218, ISO3166: 'EC', id: CountryId.EQUATEUR, ISO3166_alpha3_num: 'ECU' },
361
+ { name: 'Érythrée', ISO3166_num: 232, ISO3166: 'ER', id: CountryId.ERYTHREE, ISO3166_alpha3_num: 'ERI' },
362
+ { name: 'Espagne', ISO3166_num: 724, ISO3166: 'ES', id: CountryId.ESPAGNE, ISO3166_alpha3_num: 'ESP' },
363
+ { name: 'Estonie', ISO3166_num: 233, ISO3166: 'EE', id: CountryId.ESTONIE, ISO3166_alpha3_num: 'EST' },
364
+ {
365
+ name: 'États Fédérés de Micronésie',
366
+ ISO3166_num: 748,
367
+ ISO3166: 'FM',
368
+ id: CountryId.ETATS_FEDERES_DE_MICRONESIE,
369
+ ISO3166_alpha3_num: 'FSM',
370
+ },
371
+ { name: 'États-Unis', ISO3166_num: 840, ISO3166: 'US', id: CountryId.ETATS_UNIS, ISO3166_alpha3_num: 'USA' },
372
+ { name: 'Éthiopie', ISO3166_num: 231, ISO3166: 'ET', id: CountryId.ETHIOPIE, ISO3166_alpha3_num: 'ETH' },
310
373
  {
311
374
  name: 'Fédération de Russie',
312
375
  ISO3166_num: 643,
313
376
  ISO3166: 'RU',
314
377
  id: CountryId.FEDERATION_DE_RUSSIE,
378
+ ISO3166_alpha3_num: 'RUS',
315
379
  isBlacklist: true,
316
380
  },
317
- { name: 'Fidji', ISO3166_num: 242, ISO3166: 'FJ', id: CountryId.FIDJI, isBlacklist: true },
318
- { name: 'Finlande', ISO3166_num: 246, ISO3166: 'FI', id: CountryId.FINLANDE },
319
- { name: 'France', ISO3166_num: 250, ISO3166: 'FR', id: CountryId.FRANCE },
320
- { name: 'Gabon', ISO3166_num: 266, ISO3166: 'GA', id: CountryId.GABON },
321
- { name: 'Gambie', ISO3166_num: 270, ISO3166: 'GM', id: CountryId.GAMBIE },
322
- { name: 'Géorgie', ISO3166_num: 268, ISO3166: 'GE', id: CountryId.GEORGIE },
381
+ { name: 'Fidji', ISO3166_num: 242, ISO3166: 'FJ', id: CountryId.FIDJI, ISO3166_alpha3_num: 'FJI', isBlacklist: true },
382
+ { name: 'Finlande', ISO3166_num: 246, ISO3166: 'FI', id: CountryId.FINLANDE, ISO3166_alpha3_num: 'FIN' },
383
+ { name: 'France', ISO3166_num: 250, ISO3166: 'FR', id: CountryId.FRANCE, ISO3166_alpha3_num: 'FRA' },
384
+ { name: 'Gabon', ISO3166_num: 266, ISO3166: 'GA', id: CountryId.GABON, ISO3166_alpha3_num: 'GAB' },
385
+ { name: 'Gambie', ISO3166_num: 270, ISO3166: 'GM', id: CountryId.GAMBIE, ISO3166_alpha3_num: 'GMB' },
386
+ { name: 'Géorgie', ISO3166_num: 268, ISO3166: 'GE', id: CountryId.GEORGIE, ISO3166_alpha3_num: 'GEO' },
323
387
  {
324
388
  name: 'Géorgie du Sud et les Îles Sandwich du Sud',
325
389
  ISO3166_num: 239,
326
390
  ISO3166: 'GS',
327
391
  id: CountryId.GEORGIE_DU_SUD_ET_LES_ILES_SANDWICH_DU_SUD,
392
+ ISO3166_alpha3_num: 'SGS',
393
+ },
394
+ { name: 'Ghana', ISO3166_num: 288, ISO3166: 'GH', id: CountryId.GHANA, ISO3166_alpha3_num: 'GHA' },
395
+ { name: 'Gibraltar', ISO3166_num: 292, ISO3166: 'GI', id: CountryId.GIBRALTAR, ISO3166_alpha3_num: 'GIB' },
396
+ { name: 'Grèce', ISO3166_num: 300, ISO3166: 'GR', id: CountryId.GRECE, ISO3166_alpha3_num: 'GRC' },
397
+ { name: 'Grenade', ISO3166_num: 308, ISO3166: 'GD', id: CountryId.GRENADE, ISO3166_alpha3_num: 'GRD' },
398
+ { name: 'Groenland', ISO3166_num: 304, ISO3166: 'GL', id: CountryId.GROENLAND, ISO3166_alpha3_num: 'GRL' },
399
+ { name: 'Guadeloupe', ISO3166_num: 312, ISO3166: 'GP', id: CountryId.GUADELOUPE, ISO3166_alpha3_num: 'GLP' },
400
+ { name: 'Guam', ISO3166_num: 316, ISO3166: 'GU', id: CountryId.GUAM, ISO3166_alpha3_num: 'GUM', isBlacklist: true },
401
+ { name: 'Guatemala', ISO3166_num: 320, ISO3166: 'GT', id: CountryId.GUATEMALA, ISO3166_alpha3_num: 'GTM' },
402
+ { name: 'Guinée', ISO3166_num: 324, ISO3166: 'GN', id: CountryId.GUINEE, ISO3166_alpha3_num: 'GIN' },
403
+ {
404
+ name: 'Guinée Équatoriale',
405
+ ISO3166_num: 226,
406
+ ISO3166: 'GQ',
407
+ id: CountryId.GUINEE_EQUATORIALE,
408
+ ISO3166_alpha3_num: 'GNQ',
409
+ },
410
+ { name: 'Guinée-Bissau', ISO3166_num: 624, ISO3166: 'GW', id: CountryId.GUINEE_BISSAU, ISO3166_alpha3_num: 'GNB' },
411
+ { name: 'Guyana', ISO3166_num: 328, ISO3166: 'GY', id: CountryId.GUYANA, ISO3166_alpha3_num: 'GUY' },
412
+ {
413
+ name: 'Guyane Française',
414
+ ISO3166_num: 254,
415
+ ISO3166: 'GF',
416
+ id: CountryId.GUYANE_FRANCAISE,
417
+ ISO3166_alpha3_num: 'GUF',
418
+ },
419
+ { name: 'Haïti', ISO3166_num: 332, ISO3166: 'HT', id: CountryId.HAITI, ISO3166_alpha3_num: 'HTI' },
420
+ { name: 'Honduras', ISO3166_num: 340, ISO3166: 'HN', id: CountryId.HONDURAS, ISO3166_alpha3_num: 'HND' },
421
+ { name: 'Hong-Kong', ISO3166_num: 344, ISO3166: 'HK', id: CountryId.HONG_KONG, ISO3166_alpha3_num: 'HKG' },
422
+ { name: 'Hongrie', ISO3166_num: 348, ISO3166: 'HU', id: CountryId.HONGRIE, ISO3166_alpha3_num: 'HUN' },
423
+ { name: 'Île Bouvet', ISO3166_num: 74, ISO3166: 'BV', id: CountryId.ILE_BOUVET, ISO3166_alpha3_num: null },
424
+ { name: 'Île Christmas', ISO3166_num: 162, ISO3166: 'CX', id: CountryId.ILE_CHRISTMAS, ISO3166_alpha3_num: 'CXR' },
425
+ { name: 'Île de Man', ISO3166_num: 833, ISO3166: 'IM', id: CountryId.ILE_DE_MAN, ISO3166_alpha3_num: 'IMN' },
426
+ { name: 'Île Norfolk', ISO3166_num: 574, ISO3166: 'NF', id: CountryId.ILE_NORFOLK, ISO3166_alpha3_num: 'NFK' },
427
+ {
428
+ name: 'Îles (malvinas) Falkland',
429
+ ISO3166_num: 238,
430
+ ISO3166: 'FK',
431
+ id: CountryId.ILES_MALVINAS_FALKLAND,
432
+ ISO3166_alpha3_num: 'FLK',
433
+ },
434
+ { name: 'Îles Åland', ISO3166_num: 248, ISO3166: 'AX', id: CountryId.ILES_ÅLAND, ISO3166_alpha3_num: null },
435
+ { name: 'Îles Caïmanes', ISO3166_num: 136, ISO3166: 'KY', id: CountryId.ILES_CAIMANES, ISO3166_alpha3_num: 'CYM' },
436
+ {
437
+ name: 'Îles Cocos (Keeling)',
438
+ ISO3166_num: 166,
439
+ ISO3166: null,
440
+ id: CountryId.ILES_COCOS_KEE,
441
+ ISO3166_alpha3_num: 'CCK',
442
+ },
443
+ { name: 'Îles Cook', ISO3166_num: 184, ISO3166: 'CK', id: CountryId.ILES_COOK, ISO3166_alpha3_num: 'COK' },
444
+ { name: 'Îles Féroé', ISO3166_num: 234, ISO3166: 'FO', id: CountryId.ILES_FEROE, ISO3166_alpha3_num: 'FRO' },
445
+ {
446
+ name: 'Îles Heard et Mcdonald',
447
+ ISO3166_num: 334,
448
+ ISO3166: 'HM',
449
+ id: CountryId.ILES_HEARD_ET_MCDONALD,
450
+ ISO3166_alpha3_num: null,
451
+ },
452
+ {
453
+ name: 'Îles Mariannes du Nord',
454
+ ISO3166_num: 580,
455
+ ISO3166: 'MP',
456
+ id: CountryId.ILES_MARIANNES_DU_NORD,
457
+ ISO3166_alpha3_num: 'MNP',
458
+ },
459
+ {
460
+ name: 'Îles Marshall',
461
+ ISO3166_num: 584,
462
+ ISO3166: 'MH',
463
+ id: CountryId.ILES_MARSHALL,
464
+ ISO3166_alpha3_num: 'MHL',
465
+ isBlacklist: true,
328
466
  },
329
- { name: 'Ghana', ISO3166_num: 288, ISO3166: 'GH', id: CountryId.GHANA },
330
- { name: 'Gibraltar', ISO3166_num: 292, ISO3166: 'GI', id: CountryId.GIBRALTAR },
331
- { name: 'Grèce', ISO3166_num: 300, ISO3166: 'GR', id: CountryId.GRECE },
332
- { name: 'Grenade', ISO3166_num: 308, ISO3166: 'GD', id: CountryId.GRENADE },
333
- { name: 'Groenland', ISO3166_num: 304, ISO3166: 'GL', id: CountryId.GROENLAND },
334
- { name: 'Guadeloupe', ISO3166_num: 312, ISO3166: 'GP', id: CountryId.GUADELOUPE },
335
- { name: 'Guam', ISO3166_num: 316, ISO3166: 'GU', id: CountryId.GUAM, isBlacklist: true },
336
- { name: 'Guatemala', ISO3166_num: 320, ISO3166: 'GT', id: CountryId.GUATEMALA },
337
- { name: 'Guinée', ISO3166_num: 324, ISO3166: 'GN', id: CountryId.GUINEE },
338
- { name: 'Guinée Équatoriale', ISO3166_num: 226, ISO3166: 'GQ', id: CountryId.GUINEE_EQUATORIALE },
339
- { name: 'Guinée-Bissau', ISO3166_num: 624, ISO3166: 'GW', id: CountryId.GUINEE_BISSAU },
340
- { name: 'Guyana', ISO3166_num: 328, ISO3166: 'GY', id: CountryId.GUYANA },
341
- { name: 'Guyane Française', ISO3166_num: 254, ISO3166: 'GF', id: CountryId.GUYANE_FRANCAISE },
342
- { name: 'Haïti', ISO3166_num: 332, ISO3166: 'HT', id: CountryId.HAITI },
343
- { name: 'Honduras', ISO3166_num: 340, ISO3166: 'HN', id: CountryId.HONDURAS },
344
- { name: 'Hong-Kong', ISO3166_num: 344, ISO3166: 'HK', id: CountryId.HONG_KONG },
345
- { name: 'Hongrie', ISO3166_num: 348, ISO3166: 'HU', id: CountryId.HONGRIE },
346
- { name: 'Île Bouvet', ISO3166_num: 74, ISO3166: 'BV', id: CountryId.ILE_BOUVET },
347
- { name: 'Île Christmas', ISO3166_num: 162, ISO3166: 'CX', id: CountryId.ILE_CHRISTMAS },
348
- { name: 'Île de Man', ISO3166_num: 833, ISO3166: 'IM', id: CountryId.ILE_DE_MAN },
349
- { name: 'Île Norfolk', ISO3166_num: 574, ISO3166: 'NF', id: CountryId.ILE_NORFOLK },
350
- { name: 'Îles (malvinas) Falkland', ISO3166_num: 238, ISO3166: 'FK', id: CountryId.ILES_MALVINAS_FALKLAND },
351
- { name: 'Îles Åland', ISO3166_num: 248, ISO3166: 'AX', id: CountryId.ILES_ÅLAND },
352
- { name: 'Îles Caïmanes', ISO3166_num: 136, ISO3166: 'KY', id: CountryId.ILES_CAIMANES },
353
- { name: 'Îles Cocos (Keeling)', ISO3166_num: 166, ISO3166: null, id: CountryId.ILES_COCOS_KEE },
354
- { name: 'Îles Cook', ISO3166_num: 184, ISO3166: 'CK', id: CountryId.ILES_COOK },
355
- { name: 'Îles Féroé', ISO3166_num: 234, ISO3166: 'FO', id: CountryId.ILES_FEROE },
356
- { name: 'Îles Heard et Mcdonald', ISO3166_num: 334, ISO3166: 'HM', id: CountryId.ILES_HEARD_ET_MCDONALD },
357
- { name: 'Îles Mariannes du Nord', ISO3166_num: 580, ISO3166: 'MP', id: CountryId.ILES_MARIANNES_DU_NORD },
358
- { name: 'Îles Marshall', ISO3166_num: 584, ISO3166: 'MH', id: CountryId.ILES_MARSHALL, isBlacklist: true },
359
467
  {
360
468
  name: 'Îles Mineures Éloignées des États-Unis',
361
469
  ISO3166_num: 581,
362
470
  ISO3166: 'UM',
363
471
  id: CountryId.ILES_MINEURES_ELOIGNEES_DES_ETATS_UNIS,
472
+ ISO3166_alpha3_num: null,
364
473
  },
365
- { name: 'Îles Salomon', ISO3166_num: 90, ISO3166: 'SB', id: CountryId.ILES_SALOMON },
474
+ { name: 'Îles Salomon', ISO3166_num: 90, ISO3166: 'SB', id: CountryId.ILES_SALOMON, ISO3166_alpha3_num: 'SLB' },
366
475
  {
367
476
  name: 'Îles Turks et Caïques',
368
477
  ISO3166_num: 796,
369
478
  ISO3166: 'TC',
370
479
  id: CountryId.ILES_TURKS_ET_CAIQUES,
480
+ ISO3166_alpha3_num: 'TCA',
371
481
  isBlacklist: true,
372
482
  },
373
483
  {
@@ -375,6 +485,7 @@ export const CountryList = [
375
485
  ISO3166_num: 86,
376
486
  ISO3166: 'VG',
377
487
  id: CountryId.ILES_VIERGES_BRITANNIQUES,
488
+ ISO3166_alpha3_num: 'VGB',
378
489
  isBlacklist: true,
379
490
  },
380
491
  {
@@ -382,181 +493,356 @@ export const CountryList = [
382
493
  ISO3166_num: 850,
383
494
  ISO3166: 'VI',
384
495
  id: CountryId.ILES_VIERGES_DES_ETATS_UNIS,
496
+ ISO3166_alpha3_num: 'VIR',
385
497
  isBlacklist: true,
386
498
  },
387
- { name: 'Inde', ISO3166_num: 356, ISO3166: 'IN', id: CountryId.INDE },
388
- { name: 'Indonésie', ISO3166_num: 360, ISO3166: 'ID', id: CountryId.INDONESIE },
389
- { name: 'Iraq', ISO3166_num: 364, ISO3166: 'IQ', id: CountryId.IRAQ },
390
- { name: 'Irlande', ISO3166_num: 372, ISO3166: 'IE', id: CountryId.IRLANDE },
391
- { name: 'Islande', ISO3166_num: 352, ISO3166: 'IS', id: CountryId.ISLANDE },
392
- { name: 'Israël', ISO3166_num: 376, ISO3166: 'IL', id: CountryId.ISRAËL },
393
- { name: 'Italie', ISO3166_num: 380, ISO3166: 'IT', id: CountryId.ITALIE },
394
- { name: 'Jamahiriya Arabe Libyenniso', ISO3166_num: 434, ISO3166: null, id: CountryId.JAMAHIRIYA_ARABE_LIBY },
395
- { name: 'Jamaïque', ISO3166_num: 388, ISO3166: 'JM', id: CountryId.JAMAIQUE },
396
- { name: 'Japon', ISO3166_num: 392, ISO3166: 'JP', id: CountryId.JAPON },
397
- { name: 'Jordanie', ISO3166_num: 400, ISO3166: 'JO', id: CountryId.JORDANIE },
398
- { name: 'Kazakhstan', ISO3166_num: 398, ISO3166: 'KZ', id: CountryId.KAZAKHSTAN },
399
- { name: 'Kenya', ISO3166_num: 404, ISO3166: 'KE', id: CountryId.KENYA },
400
- { name: 'Kirghizistan', ISO3166_num: 417, ISO3166: 'KG', id: CountryId.KIRGHIZISTAN },
401
- { name: 'Kiribati', ISO3166_num: 296, ISO3166: 'KI', id: CountryId.KIRIBATI },
402
- { name: 'Koweït', ISO3166_num: 414, ISO3166: 'KW', id: CountryId.KOWEIT },
499
+ { name: 'Inde', ISO3166_num: 356, ISO3166: 'IN', id: CountryId.INDE, ISO3166_alpha3_num: 'IND' },
500
+ { name: 'Indonésie', ISO3166_num: 360, ISO3166: 'ID', id: CountryId.INDONESIE, ISO3166_alpha3_num: 'IDN' },
501
+ { name: 'Iraq', ISO3166_num: 364, ISO3166: 'IQ', id: CountryId.IRAQ, ISO3166_alpha3_num: 'IRQ' },
502
+ { name: 'Irlande', ISO3166_num: 372, ISO3166: 'IE', id: CountryId.IRLANDE, ISO3166_alpha3_num: 'IRL' },
503
+ { name: 'Islande', ISO3166_num: 352, ISO3166: 'IS', id: CountryId.ISLANDE, ISO3166_alpha3_num: 'ISL' },
504
+ { name: 'Israël', ISO3166_num: 376, ISO3166: 'IL', id: CountryId.ISRAËL, ISO3166_alpha3_num: 'ISR' },
505
+ { name: 'Italie', ISO3166_num: 380, ISO3166: 'IT', id: CountryId.ITALIE, ISO3166_alpha3_num: 'ITA' },
506
+ {
507
+ name: 'Jamahiriya Arabe Libyenniso',
508
+ ISO3166_num: 434,
509
+ ISO3166: null,
510
+ id: CountryId.JAMAHIRIYA_ARABE_LIBY,
511
+ ISO3166_alpha3_num: 'LBY',
512
+ },
513
+ { name: 'Jamaïque', ISO3166_num: 388, ISO3166: 'JM', id: CountryId.JAMAIQUE, ISO3166_alpha3_num: 'JAM' },
514
+ { name: 'Japon', ISO3166_num: 392, ISO3166: 'JP', id: CountryId.JAPON, ISO3166_alpha3_num: 'JPN' },
515
+ { name: 'Jordanie', ISO3166_num: 400, ISO3166: 'JO', id: CountryId.JORDANIE, ISO3166_alpha3_num: 'JOR' },
516
+ { name: 'Kazakhstan', ISO3166_num: 398, ISO3166: 'KZ', id: CountryId.KAZAKHSTAN, ISO3166_alpha3_num: 'KAZ' },
517
+ { name: 'Kenya', ISO3166_num: 404, ISO3166: 'KE', id: CountryId.KENYA, ISO3166_alpha3_num: 'KEN' },
518
+ { name: 'Kirghizistan', ISO3166_num: 417, ISO3166: 'KG', id: CountryId.KIRGHIZISTAN, ISO3166_alpha3_num: 'KGZ' },
519
+ { name: 'Kiribati', ISO3166_num: 296, ISO3166: 'KI', id: CountryId.KIRIBATI, ISO3166_alpha3_num: 'KIR' },
520
+ { name: 'Koweït', ISO3166_num: 414, ISO3166: 'KW', id: CountryId.KOWEIT, ISO3166_alpha3_num: 'KWT' },
403
521
  {
404
522
  name: "L'ex-République Yougoslave de Macédoiniso",
405
523
  ISO3166_num: 807,
406
524
  ISO3166: null,
407
525
  id: CountryId.L_EX_REPUBLIQUE_YOUGOSLAVE_DE_MACED,
526
+ ISO3166_alpha3_num: 'MKD',
527
+ },
528
+ { name: 'Lesotho', ISO3166_num: 426, ISO3166: 'LS', id: CountryId.LESOTHO, ISO3166_alpha3_num: 'LSO' },
529
+ { name: 'Lettonie', ISO3166_num: 428, ISO3166: 'LV', id: CountryId.LETTONIE, ISO3166_alpha3_num: 'LVA' },
530
+ { name: 'Liban', ISO3166_num: 422, ISO3166: 'LB', id: CountryId.LIBAN, ISO3166_alpha3_num: 'LBN' },
531
+ { name: 'Libéria', ISO3166_num: 430, ISO3166: 'LR', id: CountryId.LIBERIA, ISO3166_alpha3_num: 'LBR' },
532
+ { name: 'Liechtenstein', ISO3166_num: 438, ISO3166: 'LI', id: CountryId.LIECHTENSTEIN, ISO3166_alpha3_num: 'LIE' },
533
+ { name: 'Lituanie', ISO3166_num: 440, ISO3166: 'LT', id: CountryId.LITUANIE, ISO3166_alpha3_num: 'LTU' },
534
+ { name: 'Luxembourg', ISO3166_num: 442, ISO3166: 'LU', id: CountryId.LUXEMBOURG, ISO3166_alpha3_num: 'LUX' },
535
+ { name: 'Macao', ISO3166_num: 446, ISO3166: 'MO', id: CountryId.MACAO, ISO3166_alpha3_num: 'MAC' },
536
+ { name: 'Madagascar', ISO3166_num: 450, ISO3166: 'MG', id: CountryId.MADAGASCAR, ISO3166_alpha3_num: 'MDG' },
537
+ { name: 'Malaisie', ISO3166_num: 458, ISO3166: 'MY', id: CountryId.MALAISIE, ISO3166_alpha3_num: 'MYS' },
538
+ { name: 'Malawi', ISO3166_num: 454, ISO3166: 'MW', id: CountryId.MALAWI, ISO3166_alpha3_num: 'MWI' },
539
+ { name: 'Maldives', ISO3166_num: 462, ISO3166: 'MV', id: CountryId.MALDIVES, ISO3166_alpha3_num: 'MDV' },
540
+ { name: 'Mali', ISO3166_num: 466, ISO3166: 'ML', id: CountryId.MALI, ISO3166_alpha3_num: 'MLI' },
541
+ { name: 'Malte', ISO3166_num: 470, ISO3166: 'MT', id: CountryId.MALTE, ISO3166_alpha3_num: 'MLT' },
542
+ { name: 'Maroc', ISO3166_num: 504, ISO3166: 'MA', id: CountryId.MAROC, ISO3166_alpha3_num: 'MAR' },
543
+ { name: 'Martinique', ISO3166_num: 474, ISO3166: 'MQ', id: CountryId.MARTINIQUE, ISO3166_alpha3_num: 'MTQ' },
544
+ { name: 'Maurice', ISO3166_num: 480, ISO3166: 'MU', id: CountryId.MAURICE, ISO3166_alpha3_num: 'MUS' },
545
+ { name: 'Mauritanie', ISO3166_num: 478, ISO3166: 'MR', id: CountryId.MAURITANIE, ISO3166_alpha3_num: 'MRT' },
546
+ { name: 'Mayotte', ISO3166_num: 175, ISO3166: 'YT', id: CountryId.MAYOTTE, ISO3166_alpha3_num: 'MYT' },
547
+ { name: 'Mexique', ISO3166_num: 484, ISO3166: 'MX', id: CountryId.MEXIQUE, ISO3166_alpha3_num: 'MEX' },
548
+ { name: 'Monaco', ISO3166_num: 492, ISO3166: 'MC', id: CountryId.MONACO, ISO3166_alpha3_num: 'MCO' },
549
+ { name: 'Mongolie', ISO3166_num: 496, ISO3166: 'MN', id: CountryId.MONGOLIE, ISO3166_alpha3_num: 'MNG' },
550
+ { name: 'Montserrat', ISO3166_num: 500, ISO3166: 'MS', id: CountryId.MONTSERRAT, ISO3166_alpha3_num: 'MSR' },
551
+ { name: 'Monténégro', ISO3166_num: 499, ISO3166: 'ME', id: CountryId.MONTENEGRO, ISO3166_alpha3_num: 'MNE' },
552
+ { name: 'Mozambique', ISO3166_num: 508, ISO3166: 'MZ', id: CountryId.MOZAMBIQUE, ISO3166_alpha3_num: 'MOZ' },
553
+ { name: 'Myanmar', ISO3166_num: 104, ISO3166: 'MM', id: CountryId.MYANMAR, ISO3166_alpha3_num: 'MMR' },
554
+ { name: 'Namibie', ISO3166_num: 516, ISO3166: 'NA', id: CountryId.NAMIBIE, ISO3166_alpha3_num: 'NAM' },
555
+ { name: 'Nauru', ISO3166_num: 520, ISO3166: 'NR', id: CountryId.NAURU, ISO3166_alpha3_num: 'NRU' },
556
+ { name: 'Népal', ISO3166_num: 524, ISO3166: 'NP', id: CountryId.NEPAL, ISO3166_alpha3_num: 'NPL' },
557
+ { name: 'Nicaragua', ISO3166_num: 558, ISO3166: 'NI', id: CountryId.NICARAGUA, ISO3166_alpha3_num: 'NIC' },
558
+ { name: 'Niger', ISO3166_num: 562, ISO3166: 'NE', id: CountryId.NIGER, ISO3166_alpha3_num: 'NER' },
559
+ { name: 'Nigéria', ISO3166_num: 566, ISO3166: 'NG', id: CountryId.NIGERIA, ISO3166_alpha3_num: 'NGA' },
560
+ { name: 'Niué', ISO3166_num: 570, ISO3166: 'NU', id: CountryId.NIUE, ISO3166_alpha3_num: 'NIU' },
561
+ { name: 'Norvège', ISO3166_num: 578, ISO3166: 'NO', id: CountryId.NORVEGE, ISO3166_alpha3_num: 'NOR' },
562
+ {
563
+ name: 'Nouvelle-Calédonie',
564
+ ISO3166_num: 540,
565
+ ISO3166: 'NC',
566
+ id: CountryId.NOUVELLE_CALEDONIE,
567
+ ISO3166_alpha3_num: 'NCL',
568
+ },
569
+ {
570
+ name: 'Nouvelle-Zélande',
571
+ ISO3166_num: 554,
572
+ ISO3166: 'NZ',
573
+ id: CountryId.NOUVELLE_ZELANDE,
574
+ ISO3166_alpha3_num: 'NZL',
575
+ },
576
+ { name: 'Oman', ISO3166_num: 512, ISO3166: 'OM', id: CountryId.OMAN, ISO3166_alpha3_num: 'OMN' },
577
+ { name: 'Ouganda', ISO3166_num: 800, ISO3166: 'UG', id: CountryId.OUGANDA, ISO3166_alpha3_num: 'UGA' },
578
+ { name: 'Ouzbékistan', ISO3166_num: 860, ISO3166: 'UZ', id: CountryId.OUZBEKISTAN, ISO3166_alpha3_num: 'UZB' },
579
+ { name: 'Pakistan', ISO3166_num: 586, ISO3166: 'PK', id: CountryId.PAKISTAN, ISO3166_alpha3_num: 'PAK' },
580
+ {
581
+ name: 'Palaos',
582
+ ISO3166_num: 585,
583
+ ISO3166: 'PW',
584
+ id: CountryId.PALAOS,
585
+ ISO3166_alpha3_num: 'PLW',
586
+ isBlacklist: true,
587
+ },
588
+ {
589
+ name: 'Panama',
590
+ ISO3166_num: 591,
591
+ ISO3166: 'PA',
592
+ id: CountryId.PANAMA,
593
+ ISO3166_alpha3_num: 'PAN',
594
+ isBlacklist: true,
595
+ },
596
+ {
597
+ name: 'Papouasie-Nouvelle-Guinée',
598
+ ISO3166_num: 598,
599
+ ISO3166: 'PG',
600
+ id: CountryId.PAPOUASIE_NOUVELLE_GUINEE,
601
+ ISO3166_alpha3_num: 'PNG',
602
+ },
603
+ { name: 'Paraguay', ISO3166_num: 600, ISO3166: 'PY', id: CountryId.PARAGUAY, ISO3166_alpha3_num: 'PRY' },
604
+ { name: 'Pays-Bas', ISO3166_num: 528, ISO3166: 'NL', id: CountryId.PAYS_BAS, ISO3166_alpha3_num: 'NLD' },
605
+ { name: 'Pérou', ISO3166_num: 604, ISO3166: 'PE', id: CountryId.PEROU, ISO3166_alpha3_num: 'PER' },
606
+ { name: 'Philippines', ISO3166_num: 608, ISO3166: 'PH', id: CountryId.PHILIPPINES, ISO3166_alpha3_num: 'PHL' },
607
+ { name: 'Pitcairn', ISO3166_num: 612, ISO3166: 'PN', id: CountryId.PITCAIRN, ISO3166_alpha3_num: 'PCN' },
608
+ { name: 'Pologne', ISO3166_num: 616, ISO3166: 'PL', id: CountryId.POLOGNE, ISO3166_alpha3_num: 'POL' },
609
+ {
610
+ name: 'Polynésie Française',
611
+ ISO3166_num: 258,
612
+ ISO3166: 'PF',
613
+ id: CountryId.POLYNESIE_FRANCAISE,
614
+ ISO3166_alpha3_num: 'PYF',
615
+ },
616
+ { name: 'Porto Rico', ISO3166_num: 630, ISO3166: 'PR', id: CountryId.PORTO_RICO, ISO3166_alpha3_num: 'PRI' },
617
+ { name: 'Portugal', ISO3166_num: 620, ISO3166: 'PT', id: CountryId.PORTUGAL, ISO3166_alpha3_num: 'PRT' },
618
+ { name: 'Qatar', ISO3166_num: 634, ISO3166: 'QA', id: CountryId.QATAR, ISO3166_alpha3_num: 'QAT' },
619
+ {
620
+ name: 'République Arabe Syrienne',
621
+ ISO3166_num: 760,
622
+ ISO3166: 'SY',
623
+ id: CountryId.REPUBLIQUE_ARABE_SYRIENNE,
624
+ ISO3166_alpha3_num: 'SYR',
625
+ },
626
+ {
627
+ name: 'République Centrafricaine',
628
+ ISO3166_num: 140,
629
+ ISO3166: 'CF',
630
+ id: CountryId.REPUBLIQUE_CENTRAFRICAINE,
631
+ ISO3166_alpha3_num: 'CAF',
632
+ },
633
+ {
634
+ name: 'République de Corée',
635
+ ISO3166_num: 410,
636
+ ISO3166: 'KR',
637
+ id: CountryId.REPUBLIQUE_DE_COREE,
638
+ ISO3166_alpha3_num: 'KOR',
639
+ },
640
+ {
641
+ name: 'République de Moldova',
642
+ ISO3166_num: 498,
643
+ ISO3166: 'MD',
644
+ id: CountryId.REPUBLIQUE_DE_MOLDOVA,
645
+ ISO3166_alpha3_num: 'MDA',
408
646
  },
409
- { name: 'Lesotho', ISO3166_num: 426, ISO3166: 'LS', id: CountryId.LESOTHO },
410
- { name: 'Lettonie', ISO3166_num: 428, ISO3166: 'LV', id: CountryId.LETTONIE },
411
- { name: 'Liban', ISO3166_num: 422, ISO3166: 'LB', id: CountryId.LIBAN },
412
- { name: 'Libéria', ISO3166_num: 430, ISO3166: 'LR', id: CountryId.LIBERIA },
413
- { name: 'Liechtenstein', ISO3166_num: 438, ISO3166: 'LI', id: CountryId.LIECHTENSTEIN },
414
- { name: 'Lituanie', ISO3166_num: 440, ISO3166: 'LT', id: CountryId.LITUANIE },
415
- { name: 'Luxembourg', ISO3166_num: 442, ISO3166: 'LU', id: CountryId.LUXEMBOURG },
416
- { name: 'Macao', ISO3166_num: 446, ISO3166: 'MO', id: CountryId.MACAO },
417
- { name: 'Madagascar', ISO3166_num: 450, ISO3166: 'MG', id: CountryId.MADAGASCAR },
418
- { name: 'Malaisie', ISO3166_num: 458, ISO3166: 'MY', id: CountryId.MALAISIE },
419
- { name: 'Malawi', ISO3166_num: 454, ISO3166: 'MW', id: CountryId.MALAWI },
420
- { name: 'Maldives', ISO3166_num: 462, ISO3166: 'MV', id: CountryId.MALDIVES },
421
- { name: 'Mali', ISO3166_num: 466, ISO3166: 'ML', id: CountryId.MALI },
422
- { name: 'Malte', ISO3166_num: 470, ISO3166: 'MT', id: CountryId.MALTE },
423
- { name: 'Maroc', ISO3166_num: 504, ISO3166: 'MA', id: CountryId.MAROC },
424
- { name: 'Martinique', ISO3166_num: 474, ISO3166: 'MQ', id: CountryId.MARTINIQUE },
425
- { name: 'Maurice', ISO3166_num: 480, ISO3166: 'MU', id: CountryId.MAURICE },
426
- { name: 'Mauritanie', ISO3166_num: 478, ISO3166: 'MR', id: CountryId.MAURITANIE },
427
- { name: 'Mayotte', ISO3166_num: 175, ISO3166: 'YT', id: CountryId.MAYOTTE },
428
- { name: 'Mexique', ISO3166_num: 484, ISO3166: 'MX', id: CountryId.MEXIQUE },
429
- { name: 'Monaco', ISO3166_num: 492, ISO3166: 'MC', id: CountryId.MONACO },
430
- { name: 'Mongolie', ISO3166_num: 496, ISO3166: 'MN', id: CountryId.MONGOLIE },
431
- { name: 'Montserrat', ISO3166_num: 500, ISO3166: 'MS', id: CountryId.MONTSERRAT },
432
- { name: 'Monténégro', ISO3166_num: 499, ISO3166: 'ME', id: CountryId.MONTENEGRO },
433
- { name: 'Mozambique', ISO3166_num: 508, ISO3166: 'MZ', id: CountryId.MOZAMBIQUE },
434
- { name: 'Myanmar', ISO3166_num: 104, ISO3166: 'MM', id: CountryId.MYANMAR },
435
- { name: 'Namibie', ISO3166_num: 516, ISO3166: 'NA', id: CountryId.NAMIBIE },
436
- { name: 'Nauru', ISO3166_num: 520, ISO3166: 'NR', id: CountryId.NAURU },
437
- { name: 'Népal', ISO3166_num: 524, ISO3166: 'NP', id: CountryId.NEPAL },
438
- { name: 'Nicaragua', ISO3166_num: 558, ISO3166: 'NI', id: CountryId.NICARAGUA },
439
- { name: 'Niger', ISO3166_num: 562, ISO3166: 'NE', id: CountryId.NIGER },
440
- { name: 'Nigéria', ISO3166_num: 566, ISO3166: 'NG', id: CountryId.NIGERIA },
441
- { name: 'Niué', ISO3166_num: 570, ISO3166: 'NU', id: CountryId.NIUE },
442
- { name: 'Norvège', ISO3166_num: 578, ISO3166: 'NO', id: CountryId.NORVEGE },
443
- { name: 'Nouvelle-Calédonie', ISO3166_num: 540, ISO3166: 'NC', id: CountryId.NOUVELLE_CALEDONIE },
444
- { name: 'Nouvelle-Zélande', ISO3166_num: 554, ISO3166: 'NZ', id: CountryId.NOUVELLE_ZELANDE },
445
- { name: 'Oman', ISO3166_num: 512, ISO3166: 'OM', id: CountryId.OMAN },
446
- { name: 'Ouganda', ISO3166_num: 800, ISO3166: 'UG', id: CountryId.OUGANDA },
447
- { name: 'Ouzbékistan', ISO3166_num: 860, ISO3166: 'UZ', id: CountryId.OUZBEKISTAN },
448
- { name: 'Pakistan', ISO3166_num: 586, ISO3166: 'PK', id: CountryId.PAKISTAN },
449
- { name: 'Palaos', ISO3166_num: 585, ISO3166: 'PW', id: CountryId.PALAOS, isBlacklist: true },
450
- { name: 'Panama', ISO3166_num: 591, ISO3166: 'PA', id: CountryId.PANAMA, isBlacklist: true },
451
- { name: 'Papouasie-Nouvelle-Guinée', ISO3166_num: 598, ISO3166: 'PG', id: CountryId.PAPOUASIE_NOUVELLE_GUINEE },
452
- { name: 'Paraguay', ISO3166_num: 600, ISO3166: 'PY', id: CountryId.PARAGUAY },
453
- { name: 'Pays-Bas', ISO3166_num: 528, ISO3166: 'NL', id: CountryId.PAYS_BAS },
454
- { name: 'Pérou', ISO3166_num: 604, ISO3166: 'PE', id: CountryId.PEROU },
455
- { name: 'Philippines', ISO3166_num: 608, ISO3166: 'PH', id: CountryId.PHILIPPINES },
456
- { name: 'Pitcairn', ISO3166_num: 612, ISO3166: 'PN', id: CountryId.PITCAIRN },
457
- { name: 'Pologne', ISO3166_num: 616, ISO3166: 'PL', id: CountryId.POLOGNE },
458
- { name: 'Polynésie Française', ISO3166_num: 258, ISO3166: 'PF', id: CountryId.POLYNESIE_FRANCAISE },
459
- { name: 'Porto Rico', ISO3166_num: 630, ISO3166: 'PR', id: CountryId.PORTO_RICO },
460
- { name: 'Portugal', ISO3166_num: 620, ISO3166: 'PT', id: CountryId.PORTUGAL },
461
- { name: 'Qatar', ISO3166_num: 634, ISO3166: 'QA', id: CountryId.QATAR },
462
- { name: 'République Arabe Syrienne', ISO3166_num: 760, ISO3166: 'SY', id: CountryId.REPUBLIQUE_ARABE_SYRIENNE },
463
- { name: 'République Centrafricaine', ISO3166_num: 140, ISO3166: 'CF', id: CountryId.REPUBLIQUE_CENTRAFRICAINE },
464
- { name: 'République de Corée', ISO3166_num: 410, ISO3166: 'KR', id: CountryId.REPUBLIQUE_DE_COREE },
465
- { name: 'République de Moldova', ISO3166_num: 498, ISO3166: 'MD', id: CountryId.REPUBLIQUE_DE_MOLDOVA },
466
647
  {
467
648
  name: 'République Démocratique du Congo',
468
649
  ISO3166_num: 180,
469
650
  ISO3166: 'CD',
470
651
  id: CountryId.REPUBLIQUE_DEMOCRATIQUE_DU_CONGO,
652
+ ISO3166_alpha3_num: 'COD',
471
653
  },
472
654
  {
473
655
  name: 'République Démocratique Populaire Lao',
474
656
  ISO3166_num: 180,
475
657
  ISO3166: 'LA',
476
658
  id: CountryId.REPUBLIQUE_DEMOCRATIQUE_POPULAIRE_LAO,
659
+ ISO3166_alpha3_num: 'LAO',
660
+ },
661
+ {
662
+ name: 'République Dominicaine',
663
+ ISO3166_num: 214,
664
+ ISO3166: 'DO',
665
+ id: CountryId.REPUBLIQUE_DOMINICAINE,
666
+ ISO3166_alpha3_num: 'DOM',
667
+ },
668
+ {
669
+ name: 'République du Congo',
670
+ ISO3166_num: 178,
671
+ ISO3166: 'CG',
672
+ id: CountryId.REPUBLIQUE_DU_CONGO,
673
+ ISO3166_alpha3_num: 'COG',
674
+ },
675
+ {
676
+ name: "République Islamique d'Iran",
677
+ ISO3166_num: 364,
678
+ ISO3166: 'IR',
679
+ id: CountryId.REPUBLIQUE_ISLAMIQUE_D_IRAN,
680
+ ISO3166_alpha3_num: 'IRN',
477
681
  },
478
- { name: 'République Dominicaine', ISO3166_num: 214, ISO3166: 'DO', id: CountryId.REPUBLIQUE_DOMINICAINE },
479
- { name: 'République du Congo', ISO3166_num: 178, ISO3166: 'CG', id: CountryId.REPUBLIQUE_DU_CONGO },
480
- { name: "République Islamique d'Iran", ISO3166_num: 364, ISO3166: 'IR', id: CountryId.REPUBLIQUE_ISLAMIQUE_D_IRAN },
481
682
  {
482
683
  name: 'République Populaire Démocratique de Corée',
483
684
  ISO3166_num: 410,
484
685
  ISO3166: 'KP',
485
686
  id: CountryId.REPUBLIQUE_POPULAIRE_DEMOCRATIQUE_DE_COREE,
687
+ ISO3166_alpha3_num: 'PRK',
688
+ },
689
+ {
690
+ name: 'République Tchèque',
691
+ ISO3166_num: 203,
692
+ ISO3166: 'CZ',
693
+ id: CountryId.REPUBLIQUE_TCHEQUE,
694
+ ISO3166_alpha3_num: 'CZE',
695
+ },
696
+ {
697
+ name: 'République-Unie de Tanzanie',
698
+ ISO3166_num: 834,
699
+ ISO3166: 'TZ',
700
+ id: CountryId.REPUBLIQUE_UNIE_DE_TANZANIE,
701
+ ISO3166_alpha3_num: 'TZA',
702
+ },
703
+ { name: 'Réunion', ISO3166_num: 638, ISO3166: 'RE', id: CountryId.REUNION, ISO3166_alpha3_num: 'REU' },
704
+ { name: 'Roumanie', ISO3166_num: 642, ISO3166: 'RO', id: CountryId.ROUMANIE, ISO3166_alpha3_num: 'ROU' },
705
+ { name: 'Royaume-Uni', ISO3166_num: 826, ISO3166: 'GB', id: CountryId.ROYAUME_UNI, ISO3166_alpha3_num: 'GBR' },
706
+ { name: 'Rwanda', ISO3166_num: 646, ISO3166: 'RW', id: CountryId.RWANDA, ISO3166_alpha3_num: 'RWA' },
707
+ {
708
+ name: 'Sahara Occidental',
709
+ ISO3166_num: 732,
710
+ ISO3166: 'EH',
711
+ id: CountryId.SAHARA_OCCIDENTAL,
712
+ ISO3166_alpha3_num: 'ESH',
713
+ },
714
+ {
715
+ name: 'Saint-Kitts-et-Nevis',
716
+ ISO3166_num: 659,
717
+ ISO3166: 'KN',
718
+ id: CountryId.SAINT_KITTS_ET_NEVIS,
719
+ ISO3166_alpha3_num: 'KNA',
720
+ },
721
+ { name: 'Saint-Marin', ISO3166_num: 674, ISO3166: 'SM', id: CountryId.SAINT_MARIN, ISO3166_alpha3_num: 'SMR' },
722
+ {
723
+ name: 'Saint-Pierre-et-Miquelon',
724
+ ISO3166_num: 666,
725
+ ISO3166: 'PM',
726
+ id: CountryId.SAINT_PIERRE_ET_MIQUELON,
727
+ ISO3166_alpha3_num: 'SPM',
486
728
  },
487
- { name: 'République Tchèque', ISO3166_num: 203, ISO3166: 'CZ', id: CountryId.REPUBLIQUE_TCHEQUE },
488
- { name: 'République-Unie de Tanzanie', ISO3166_num: 834, ISO3166: 'TZ', id: CountryId.REPUBLIQUE_UNIE_DE_TANZANIE },
489
- { name: 'Réunion', ISO3166_num: 638, ISO3166: 'RE', id: CountryId.REUNION },
490
- { name: 'Roumanie', ISO3166_num: 642, ISO3166: 'RO', id: CountryId.ROUMANIE },
491
- { name: 'Royaume-Uni', ISO3166_num: 826, ISO3166: 'GB', id: CountryId.ROYAUME_UNI },
492
- { name: 'Rwanda', ISO3166_num: 646, ISO3166: 'RW', id: CountryId.RWANDA },
493
- { name: 'Sahara Occidental', ISO3166_num: 732, ISO3166: 'EH', id: CountryId.SAHARA_OCCIDENTAL },
494
- { name: 'Saint-Kitts-et-Nevis', ISO3166_num: 659, ISO3166: 'KN', id: CountryId.SAINT_KITTS_ET_NEVIS },
495
- { name: 'Saint-Marin', ISO3166_num: 674, ISO3166: 'SM', id: CountryId.SAINT_MARIN },
496
- { name: 'Saint-Pierre-et-Miquelon', ISO3166_num: 666, ISO3166: 'PM', id: CountryId.SAINT_PIERRE_ET_MIQUELON },
497
729
  {
498
730
  name: 'Saint-Siège (état de la Cité du Vatican)',
499
731
  ISO3166_num: 336,
500
732
  ISO3166: 'VA',
501
733
  id: CountryId.SAINT_SIEGE_ETAT_DE_LA_CITE_DU_VATICAN,
734
+ ISO3166_alpha3_num: 'VAT',
502
735
  },
503
736
  {
504
737
  name: 'Saint-Vincent-et-les Grenadines',
505
738
  ISO3166_num: 670,
506
739
  ISO3166: 'VC',
507
740
  id: CountryId.SAINT_VINCENT_ET_LES_GRENADINES,
741
+ ISO3166_alpha3_num: 'VCT',
742
+ },
743
+ { name: 'Sainte-Hélène', ISO3166_num: 654, ISO3166: 'SH', id: CountryId.SAINTE_HELENE, ISO3166_alpha3_num: 'SHN' },
744
+ { name: 'Sainte-Lucie', ISO3166_num: 662, ISO3166: 'LC', id: CountryId.SAINTE_LUCIE, ISO3166_alpha3_num: 'LCA' },
745
+ { name: 'Samoa', ISO3166_num: 882, ISO3166: 'WS', id: CountryId.SAMOA, ISO3166_alpha3_num: 'WSM', isBlacklist: true },
746
+ {
747
+ name: 'Samoa Américaines',
748
+ ISO3166_num: 16,
749
+ ISO3166: 'AS',
750
+ id: CountryId.SAMOA_AMERICAINES,
751
+ ISO3166_alpha3_num: 'ASM',
752
+ isBlacklist: true,
753
+ },
754
+ {
755
+ name: 'Sao Tomé-et-Principe',
756
+ ISO3166_num: 678,
757
+ ISO3166: 'ST',
758
+ id: CountryId.SAO_TOME_ET_PRINCIPE,
759
+ ISO3166_alpha3_num: 'STP',
760
+ },
761
+ { name: 'Sénégal', ISO3166_num: 686, ISO3166: 'SN', id: CountryId.SENEGAL, ISO3166_alpha3_num: 'SEN' },
762
+ { name: 'République de Serbie', ISO3166_num: 688, ISO3166: 'RS', id: CountryId.SERBIE, ISO3166_alpha3_num: 'SRB' },
763
+ { name: 'Seychelles', ISO3166_num: 690, ISO3166: 'SC', id: CountryId.SEYCHELLES, ISO3166_alpha3_num: 'SYC' },
764
+ { name: 'Sierra Leone', ISO3166_num: 694, ISO3166: 'SL', id: CountryId.SIERRA_LEONE, ISO3166_alpha3_num: 'SLE' },
765
+ { name: 'Singapour', ISO3166_num: 702, ISO3166: 'SG', id: CountryId.SINGAPOUR, ISO3166_alpha3_num: 'SGP' },
766
+ { name: 'Slovaquie', ISO3166_num: 703, ISO3166: 'SK', id: CountryId.SLOVAQUIE, ISO3166_alpha3_num: 'SVK' },
767
+ { name: 'Slovénie', ISO3166_num: 705, ISO3166: 'SI', id: CountryId.SLOVENIE, ISO3166_alpha3_num: 'SVN' },
768
+ { name: 'Somalie', ISO3166_num: 706, ISO3166: 'SO', id: CountryId.SOMALIE, ISO3166_alpha3_num: 'SOM' },
769
+ { name: 'Soudan', ISO3166_num: 736, ISO3166: 'SD', id: CountryId.SOUDAN, ISO3166_alpha3_num: 'SDN' },
770
+ { name: 'Sri Lanka', ISO3166_num: 144, ISO3166: 'LK', id: CountryId.SRI_LANKA, ISO3166_alpha3_num: 'LKA' },
771
+ { name: 'Suède', ISO3166_num: 752, ISO3166: 'SE', id: CountryId.SUEDE, ISO3166_alpha3_num: 'SWE' },
772
+ { name: 'Suisse', ISO3166_num: 756, ISO3166: 'CH', id: CountryId.SUISSE, ISO3166_alpha3_num: 'CHE' },
773
+ { name: 'Suriname', ISO3166_num: 740, ISO3166: 'SR', id: CountryId.SURINAME, ISO3166_alpha3_num: 'SUR' },
774
+ {
775
+ name: 'Svalbard et Île Jan Mayen',
776
+ ISO3166_num: 744,
777
+ ISO3166: 'SJ',
778
+ id: CountryId.SVALBARD_ETILE_JAN_MAYEN,
779
+ ISO3166_alpha3_num: 'SJM',
780
+ },
781
+ { name: 'Eswatini', ISO3166_num: 748, ISO3166: 'SZ', id: CountryId.SWAZI, ISO3166_alpha3_num: 'SWZ' },
782
+ { name: 'Tadjikistan', ISO3166_num: 762, ISO3166: 'TJ', id: CountryId.TADJIKISTAN, ISO3166_alpha3_num: 'TJK' },
783
+ { name: 'Taïwan', ISO3166_num: 158, ISO3166: null, id: CountryId.TA, ISO3166_alpha3_num: 'TWN' },
784
+ { name: 'Tchad', ISO3166_num: 148, ISO3166: 'TD', id: CountryId.TCHAD, ISO3166_alpha3_num: 'TCD' },
785
+ {
786
+ name: 'Terres Australes Françaises',
787
+ ISO3166_num: 260,
788
+ ISO3166: 'TF',
789
+ id: CountryId.TERRES_AUSTRALES_FRANCAISES,
790
+ ISO3166_alpha3_num: 'ATF',
508
791
  },
509
- { name: 'Sainte-Hélène', ISO3166_num: 654, ISO3166: 'SH', id: CountryId.SAINTE_HELENE },
510
- { name: 'Sainte-Lucie', ISO3166_num: 662, ISO3166: 'LC', id: CountryId.SAINTE_LUCIE },
511
- { name: 'Samoa', ISO3166_num: 882, ISO3166: 'WS', id: CountryId.SAMOA, isBlacklist: true },
512
- { name: 'Samoa Américaines', ISO3166_num: 16, ISO3166: 'AS', id: CountryId.SAMOA_AMERICAINES, isBlacklist: true },
513
- { name: 'Sao Tomé-et-Principe', ISO3166_num: 678, ISO3166: 'ST', id: CountryId.SAO_TOME_ET_PRINCIPE },
514
- { name: 'Sénégal', ISO3166_num: 686, ISO3166: 'SN', id: CountryId.SENEGAL },
515
- { name: 'République de Serbie', ISO3166_num: 688, ISO3166: 'RS', id: CountryId.SERBIE },
516
- { name: 'Seychelles', ISO3166_num: 690, ISO3166: 'SC', id: CountryId.SEYCHELLES },
517
- { name: 'Sierra Leone', ISO3166_num: 694, ISO3166: 'SL', id: CountryId.SIERRA_LEONE },
518
- { name: 'Singapour', ISO3166_num: 702, ISO3166: 'SG', id: CountryId.SINGAPOUR },
519
- { name: 'Slovaquie', ISO3166_num: 703, ISO3166: 'SK', id: CountryId.SLOVAQUIE },
520
- { name: 'Slovénie', ISO3166_num: 705, ISO3166: 'SI', id: CountryId.SLOVENIE },
521
- { name: 'Somalie', ISO3166_num: 706, ISO3166: 'SO', id: CountryId.SOMALIE },
522
- { name: 'Soudan', ISO3166_num: 736, ISO3166: 'SD', id: CountryId.SOUDAN },
523
- { name: 'Sri Lanka', ISO3166_num: 144, ISO3166: 'LK', id: CountryId.SRI_LANKA },
524
- { name: 'Suède', ISO3166_num: 752, ISO3166: 'SE', id: CountryId.SUEDE },
525
- { name: 'Suisse', ISO3166_num: 756, ISO3166: 'CH', id: CountryId.SUISSE },
526
- { name: 'Suriname', ISO3166_num: 740, ISO3166: 'SR', id: CountryId.SURINAME },
527
- { name: 'Svalbard et Île Jan Mayen', ISO3166_num: 744, ISO3166: 'SJ', id: CountryId.SVALBARD_ETILE_JAN_MAYEN },
528
- { name: 'Eswatini', ISO3166_num: 748, ISO3166: 'SZ', id: CountryId.SWAZI },
529
- { name: 'Tadjikistan', ISO3166_num: 762, ISO3166: 'TJ', id: CountryId.TADJIKISTAN },
530
- { name: 'Taïwan', ISO3166_num: 158, ISO3166: null, id: CountryId.TA },
531
- { name: 'Tchad', ISO3166_num: 148, ISO3166: 'TD', id: CountryId.TCHAD },
532
- { name: 'Terres Australes Françaises', ISO3166_num: 260, ISO3166: 'TF', id: CountryId.TERRES_AUSTRALES_FRANCAISES },
533
792
  {
534
793
  name: "Territoire Britannique de l'Océan Indien",
535
794
  ISO3166_num: 86,
536
795
  ISO3166: 'IO',
537
796
  id: CountryId.TERRITOIRE_BRITANNIQUE_DE_L_OCEAN_INDIEN,
797
+ ISO3166_alpha3_num: 'IOT',
798
+ },
799
+ {
800
+ name: 'Territoire Palestinien Occupé',
801
+ ISO3166_num: 275,
802
+ ISO3166: null,
803
+ id: CountryId.TERRITOIRE_PALESTINIEN_OC,
804
+ ISO3166_alpha3_num: 'PSE',
805
+ },
806
+ { name: 'Thaïlande', ISO3166_num: 764, ISO3166: 'TH', id: CountryId.THAILANDE, ISO3166_alpha3_num: 'THA' },
807
+ { name: 'Timor-Leste', ISO3166_num: 626, ISO3166: 'TL', id: CountryId.TIMOR_LESTE, ISO3166_alpha3_num: 'TLS' },
808
+ { name: 'Togo', ISO3166_num: 768, ISO3166: 'TG', id: CountryId.TOGO, ISO3166_alpha3_num: 'TGO' },
809
+ { name: 'Tokelau', ISO3166_num: 772, ISO3166: 'TK', id: CountryId.TOKELAU, ISO3166_alpha3_num: 'TKL' },
810
+ { name: 'Tonga', ISO3166_num: 776, ISO3166: 'TO', id: CountryId.TONGA, ISO3166_alpha3_num: 'TON' },
811
+ {
812
+ name: 'Trinité-et-Tobago',
813
+ ISO3166_num: 780,
814
+ ISO3166: 'TT',
815
+ id: CountryId.TRINITE_ET_TOBAGO,
816
+ ISO3166_alpha3_num: 'TTO',
817
+ isBlacklist: true,
818
+ },
819
+ { name: 'Tunisie', ISO3166_num: 788, ISO3166: 'TN', id: CountryId.TUNISIE, ISO3166_alpha3_num: 'TUN' },
820
+ { name: 'Turkménistan', ISO3166_num: 795, ISO3166: 'TM', id: CountryId.TURKMENISTAN, ISO3166_alpha3_num: 'TKM' },
821
+ { name: 'Turquie', ISO3166_num: 792, ISO3166: 'TR', id: CountryId.TURQUIE, ISO3166_alpha3_num: 'TUR' },
822
+ { name: 'Tuvalu', ISO3166_num: 798, ISO3166: 'TV', id: CountryId.TUVALU, ISO3166_alpha3_num: 'TUV' },
823
+ { name: 'Ukraine', ISO3166_num: 804, ISO3166: 'UA', id: CountryId.UKRAINE, ISO3166_alpha3_num: 'UKR' },
824
+ { name: 'Uruguay', ISO3166_num: 858, ISO3166: 'UY', id: CountryId.URUGUAY, ISO3166_alpha3_num: 'URY' },
825
+ {
826
+ name: 'Vanuatu',
827
+ ISO3166_num: 548,
828
+ ISO3166: 'VU',
829
+ id: CountryId.VANUATU,
830
+ ISO3166_alpha3_num: 'VUT',
831
+ isBlacklist: true,
832
+ },
833
+ { name: 'Venezuela', ISO3166_num: 862, ISO3166: 'VE', id: CountryId.VENEZUELA, ISO3166_alpha3_num: 'VEN' },
834
+ { name: 'Viet Nam', ISO3166_num: 704, ISO3166: 'VN', id: CountryId.VIET_NAM, ISO3166_alpha3_num: 'VNM' },
835
+ {
836
+ name: 'Wallis et Futuna',
837
+ ISO3166_num: 876,
838
+ ISO3166: 'WF',
839
+ id: CountryId.WALLIS_ET_FUTUNA,
840
+ ISO3166_alpha3_num: 'WLF',
538
841
  },
539
- { name: 'Territoire Palestinien Occupé', ISO3166_num: 275, ISO3166: null, id: CountryId.TERRITOIRE_PALESTINIEN_OC },
540
- { name: 'Thaïlande', ISO3166_num: 764, ISO3166: 'TH', id: CountryId.THAILANDE },
541
- { name: 'Timor-Leste', ISO3166_num: 626, ISO3166: 'TL', id: CountryId.TIMOR_LESTE },
542
- { name: 'Togo', ISO3166_num: 768, ISO3166: 'TG', id: CountryId.TOGO },
543
- { name: 'Tokelau', ISO3166_num: 772, ISO3166: 'TK', id: CountryId.TOKELAU },
544
- { name: 'Tonga', ISO3166_num: 776, ISO3166: 'TO', id: CountryId.TONGA },
545
- { name: 'Trinité-et-Tobago', ISO3166_num: 780, ISO3166: 'TT', id: CountryId.TRINITE_ET_TOBAGO, isBlacklist: true },
546
- { name: 'Tunisie', ISO3166_num: 788, ISO3166: 'TN', id: CountryId.TUNISIE },
547
- { name: 'Turkménistan', ISO3166_num: 795, ISO3166: 'TM', id: CountryId.TURKMENISTAN },
548
- { name: 'Turquie', ISO3166_num: 792, ISO3166: 'TR', id: CountryId.TURQUIE },
549
- { name: 'Tuvalu', ISO3166_num: 798, ISO3166: 'TV', id: CountryId.TUVALU },
550
- { name: 'Ukraine', ISO3166_num: 804, ISO3166: 'UA', id: CountryId.UKRAINE },
551
- { name: 'Uruguay', ISO3166_num: 858, ISO3166: 'UY', id: CountryId.URUGUAY },
552
- { name: 'Vanuatu', ISO3166_num: 548, ISO3166: 'VU', id: CountryId.VANUATU, isBlacklist: true },
553
- { name: 'Venezuela', ISO3166_num: 862, ISO3166: 'VE', id: CountryId.VENEZUELA },
554
- { name: 'Viet Nam', ISO3166_num: 704, ISO3166: 'VN', id: CountryId.VIET_NAM },
555
- { name: 'Wallis et Futuna', ISO3166_num: 876, ISO3166: 'WF', id: CountryId.WALLIS_ET_FUTUNA },
556
- { name: 'Yémen', ISO3166_num: 887, ISO3166: 'YE', id: CountryId.YEMEN },
557
- { name: 'Zambie', ISO3166_num: 894, ISO3166: 'ZM', id: CountryId.ZAMBIE },
558
- { name: 'Zimbabwe', ISO3166_num: 716, ISO3166: 'ZW', id: CountryId.ZIMBABWE },
559
- { name: 'Autre', ISO3166_num: 36, ISO3166: null, id: CountryId.AUTRE },
842
+ { name: 'Yémen', ISO3166_num: 887, ISO3166: 'YE', id: CountryId.YEMEN, ISO3166_alpha3_num: 'YEM' },
843
+ { name: 'Zambie', ISO3166_num: 894, ISO3166: 'ZM', id: CountryId.ZAMBIE, ISO3166_alpha3_num: 'ZMB' },
844
+ { name: 'Zimbabwe', ISO3166_num: 716, ISO3166: 'ZW', id: CountryId.ZIMBABWE, ISO3166_alpha3_num: 'ZWE' },
845
+ { name: 'Autre', ISO3166_num: 36, ISO3166: null, id: CountryId.AUTRE, ISO3166_alpha3_num: null },
560
846
  ];
561
847
  export var NationalityId;
562
848
  (function (NationalityId) {