globalpayments-api 3.5.3 → 3.6.2-fix

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 (275) hide show
  1. package/CHANGELOG.md +19 -1
  2. package/lib/src/Builders/BaseBuilder/ValidationClause.d.ts +1 -0
  3. package/lib/src/Builders/BaseBuilder/ValidationClause.js +25 -1
  4. package/lib/src/Builders/BaseBuilder/ValidationClause.js.map +1 -1
  5. package/lib/src/Builders/RequestBuilder/GpApi/GpApiSecureRequestBuilder.d.ts +20 -0
  6. package/lib/src/Builders/RequestBuilder/GpApi/GpApiSecureRequestBuilder.js +413 -0
  7. package/lib/src/Builders/RequestBuilder/GpApi/GpApiSecureRequestBuilder.js.map +1 -0
  8. package/lib/src/Builders/RequestBuilder/RequestBuilderFactory.d.ts +2 -2
  9. package/lib/src/Builders/RequestBuilder/RequestBuilderFactory.js +2 -0
  10. package/lib/src/Builders/RequestBuilder/RequestBuilderFactory.js.map +1 -1
  11. package/lib/src/Builders/Secure3dBuilder.d.ts +90 -0
  12. package/lib/src/Builders/Secure3dBuilder.js +423 -0
  13. package/lib/src/Builders/Secure3dBuilder.js.map +1 -0
  14. package/lib/src/Builders/SecureBuilder.d.ts +446 -0
  15. package/lib/src/Builders/SecureBuilder.js +729 -0
  16. package/lib/src/Builders/SecureBuilder.js.map +1 -0
  17. package/lib/src/Builders/index.d.ts +2 -0
  18. package/lib/src/Builders/index.js +2 -0
  19. package/lib/src/Builders/index.js.map +1 -1
  20. package/lib/src/ConfiguredServices.d.ts +5 -1
  21. package/lib/src/ConfiguredServices.js +20 -0
  22. package/lib/src/ConfiguredServices.js.map +1 -1
  23. package/lib/src/Entities/BrowserData.d.ts +13 -0
  24. package/lib/src/Entities/BrowserData.js +18 -0
  25. package/lib/src/Entities/BrowserData.js.map +1 -0
  26. package/lib/src/Entities/Enums/IsoCountries.d.ts +9 -0
  27. package/lib/src/Entities/Enums/IsoCountries.js +1941 -0
  28. package/lib/src/Entities/Enums/IsoCountries.js.map +1 -0
  29. package/lib/src/Entities/Enums.d.ts +149 -0
  30. package/lib/src/Entities/Enums.js +173 -2
  31. package/lib/src/Entities/Enums.js.map +1 -1
  32. package/lib/src/Entities/IRequestBuilder.d.ts +3 -3
  33. package/lib/src/Entities/MerchantDataCollection.d.ts +16 -0
  34. package/lib/src/Entities/MerchantDataCollection.js +102 -0
  35. package/lib/src/Entities/MerchantDataCollection.js.map +1 -0
  36. package/lib/src/Entities/MerchantKVP.d.ts +11 -0
  37. package/lib/src/Entities/MerchantKVP.js +28 -0
  38. package/lib/src/Entities/MerchantKVP.js.map +1 -0
  39. package/lib/src/Entities/MessageExtension.d.ts +6 -0
  40. package/lib/src/Entities/MessageExtension.js +11 -0
  41. package/lib/src/Entities/MessageExtension.js.map +1 -0
  42. package/lib/src/Entities/MobileData.d.ts +11 -0
  43. package/lib/src/Entities/MobileData.js +15 -0
  44. package/lib/src/Entities/MobileData.js.map +1 -0
  45. package/lib/src/Entities/ThreeDSecure.d.ts +66 -0
  46. package/lib/src/Entities/ThreeDSecure.js +162 -0
  47. package/lib/src/Entities/ThreeDSecure.js.map +1 -0
  48. package/lib/src/Entities/Transaction.d.ts +2 -1
  49. package/lib/src/Entities/Transaction.js +1 -0
  50. package/lib/src/Entities/Transaction.js.map +1 -1
  51. package/lib/src/Entities/index.d.ts +7 -0
  52. package/lib/src/Entities/index.js +7 -0
  53. package/lib/src/Entities/index.js.map +1 -1
  54. package/lib/src/Gateways/GpApiConnector.d.ts +2 -1
  55. package/lib/src/Gateways/GpApiConnector.js +7 -0
  56. package/lib/src/Gateways/GpApiConnector.js.map +1 -1
  57. package/lib/src/Gateways/PayPlanConnector.d.ts +1 -1
  58. package/lib/src/Gateways/PorticoConnector.d.ts +5 -5
  59. package/lib/src/Gateways/PorticoConnector.js +25 -0
  60. package/lib/src/Gateways/PorticoConnector.js.map +1 -1
  61. package/lib/src/Mapping/EnumMapping.d.ts +3 -1
  62. package/lib/src/Mapping/EnumMapping.js +26 -0
  63. package/lib/src/Mapping/EnumMapping.js.map +1 -1
  64. package/lib/src/Mapping/GpApiMapping.d.ts +1 -0
  65. package/lib/src/Mapping/GpApiMapping.js +96 -0
  66. package/lib/src/Mapping/GpApiMapping.js.map +1 -1
  67. package/lib/src/Mapping/GpEcomMapping.d.ts +1 -1
  68. package/lib/src/PaymentMethods/Credit.d.ts +2 -2
  69. package/lib/src/PaymentMethods/Credit.js +1 -1
  70. package/lib/src/PaymentMethods/Credit.js.map +1 -1
  71. package/lib/src/PaymentMethods/Interfaces.d.ts +4 -0
  72. package/lib/src/PaymentMethods/PaymentMethod.d.ts +2 -0
  73. package/lib/src/PaymentMethods/PaymentMethod.js +6 -0
  74. package/lib/src/PaymentMethods/PaymentMethod.js.map +1 -1
  75. package/lib/src/ServiceConfigs/Gateways/GpApiConfig.js +2 -0
  76. package/lib/src/ServiceConfigs/Gateways/GpApiConfig.js.map +1 -1
  77. package/lib/src/Services/Secure3dService.d.ts +8 -0
  78. package/lib/src/Services/Secure3dService.js +21 -0
  79. package/lib/src/Services/Secure3dService.js.map +1 -0
  80. package/lib/src/Services/index.d.ts +1 -0
  81. package/lib/src/Services/index.js +1 -0
  82. package/lib/src/Services/index.js.map +1 -1
  83. package/lib/src/ServicesContainer.d.ts +2 -1
  84. package/lib/src/ServicesContainer.js +15 -0
  85. package/lib/src/ServicesContainer.js.map +1 -1
  86. package/lib/src/Utils/CountryUtils.d.ts +9 -0
  87. package/lib/src/Utils/CountryUtils.js +131 -0
  88. package/lib/src/Utils/CountryUtils.js.map +1 -0
  89. package/lib/src/Utils/StringUtils.d.ts +2 -0
  90. package/lib/src/Utils/StringUtils.js +15 -0
  91. package/lib/src/Utils/StringUtils.js.map +1 -1
  92. package/lib/src/Utils/index.d.ts +1 -0
  93. package/lib/src/Utils/index.js +1 -0
  94. package/lib/src/Utils/index.js.map +1 -1
  95. package/lib/test/Data/BaseGpApiTestConfig.d.ts +14 -0
  96. package/lib/test/Data/BaseGpApiTestConfig.js +50 -0
  97. package/lib/test/Data/BaseGpApiTestConfig.js.map +1 -0
  98. package/lib/test/Data/GpApi3DSTestCards.d.ts +17 -0
  99. package/lib/test/Data/GpApi3DSTestCards.js +22 -0
  100. package/lib/test/Data/GpApi3DSTestCards.js.map +1 -0
  101. package/lib/test/Data/TestCards.d.ts +24 -0
  102. package/lib/test/Data/TestCards.js +220 -0
  103. package/lib/test/Data/TestCards.js.map +1 -0
  104. package/lib/test/Data/TestChecks.d.ts +4 -0
  105. package/lib/test/Data/TestChecks.js +27 -0
  106. package/lib/test/Data/TestChecks.js.map +1 -0
  107. package/lib/test/Data/index.d.ts +4 -0
  108. package/lib/test/Data/index.js +21 -0
  109. package/lib/test/Data/index.js.map +1 -0
  110. package/lib/test/Integration/Gateways/AcsResponse.d.ts +12 -0
  111. package/lib/test/Integration/Gateways/AcsResponse.js +33 -0
  112. package/lib/test/Integration/Gateways/AcsResponse.js.map +1 -0
  113. package/lib/test/Integration/Gateways/GpApiConnector/3DS2Test.d.ts +1 -0
  114. package/lib/test/Integration/Gateways/GpApiConnector/3DS2Test.js +1029 -0
  115. package/lib/test/Integration/Gateways/GpApiConnector/3DS2Test.js.map +1 -0
  116. package/lib/test/Integration/Gateways/GpApiConnector/3DSecureTest.d.ts +1 -0
  117. package/lib/test/Integration/Gateways/GpApiConnector/3DSecureTest.js +649 -0
  118. package/lib/test/Integration/Gateways/GpApiConnector/3DSecureTest.js.map +1 -0
  119. package/lib/test/Integration/Gateways/GpApiConnector/AccessTokenTest.d.ts +1 -0
  120. package/lib/test/Integration/Gateways/GpApiConnector/AccessTokenTest.js +109 -0
  121. package/lib/test/Integration/Gateways/GpApiConnector/AccessTokenTest.js.map +1 -0
  122. package/lib/test/Integration/Gateways/GpApiConnector/CreditCardNotPresentTest.d.ts +1 -0
  123. package/lib/test/Integration/Gateways/GpApiConnector/CreditCardNotPresentTest.js +1023 -0
  124. package/lib/test/Integration/Gateways/GpApiConnector/CreditCardNotPresentTest.js.map +1 -0
  125. package/lib/test/Integration/Gateways/GpApiConnector/CreditCardPresentTest.d.ts +1 -0
  126. package/lib/test/Integration/Gateways/GpApiConnector/CreditCardPresentTest.js +439 -0
  127. package/lib/test/Integration/Gateways/GpApiConnector/CreditCardPresentTest.js.map +1 -0
  128. package/lib/test/Integration/Gateways/GpApiConnector/DebitCardTest.d.ts +1 -0
  129. package/lib/test/Integration/Gateways/GpApiConnector/DebitCardTest.js +143 -0
  130. package/lib/test/Integration/Gateways/GpApiConnector/DebitCardTest.js.map +1 -0
  131. package/lib/test/Integration/Gateways/GpApiConnector/ReportingSettlementTransactionsTest.d.ts +1 -0
  132. package/lib/test/Integration/Gateways/GpApiConnector/ReportingSettlementTransactionsTest.js +434 -0
  133. package/lib/test/Integration/Gateways/GpApiConnector/ReportingSettlementTransactionsTest.js.map +1 -0
  134. package/lib/test/Integration/Gateways/GpApiConnector/ReportingStoredPaymentMethodsTest.d.ts +1 -0
  135. package/lib/test/Integration/Gateways/GpApiConnector/ReportingStoredPaymentMethodsTest.js +217 -0
  136. package/lib/test/Integration/Gateways/GpApiConnector/ReportingStoredPaymentMethodsTest.js.map +1 -0
  137. package/lib/test/Integration/Gateways/GpApiConnector/ReportingTransactionsTest.d.ts +1 -0
  138. package/lib/test/Integration/Gateways/GpApiConnector/ReportingTransactionsTest.js +337 -0
  139. package/lib/test/Integration/Gateways/GpApiConnector/ReportingTransactionsTest.js.map +1 -0
  140. package/lib/test/Integration/Gateways/GpEcomConnector/Certification/AuthTest.d.ts +1 -0
  141. package/lib/test/Integration/Gateways/GpEcomConnector/Certification/AuthTest.js +2446 -0
  142. package/lib/test/Integration/Gateways/GpEcomConnector/Certification/AuthTest.js.map +1 -0
  143. package/lib/test/Integration/Gateways/GpEcomConnector/Certification/AvsTest.d.ts +1 -0
  144. package/lib/test/Integration/Gateways/GpEcomConnector/Certification/AvsTest.js +506 -0
  145. package/lib/test/Integration/Gateways/GpEcomConnector/Certification/AvsTest.js.map +1 -0
  146. package/lib/test/Integration/Gateways/GpEcomConnector/Certification/CreditTest.d.ts +1 -0
  147. package/lib/test/Integration/Gateways/GpEcomConnector/Certification/CreditTest.js +1296 -0
  148. package/lib/test/Integration/Gateways/GpEcomConnector/Certification/CreditTest.js.map +1 -0
  149. package/lib/test/Integration/Gateways/GpEcomConnector/Certification/HoldTest.d.ts +1 -0
  150. package/lib/test/Integration/Gateways/GpEcomConnector/Certification/HoldTest.js +847 -0
  151. package/lib/test/Integration/Gateways/GpEcomConnector/Certification/HoldTest.js.map +1 -0
  152. package/lib/test/Integration/Gateways/GpEcomConnector/CreditTest.d.ts +1 -0
  153. package/lib/test/Integration/Gateways/GpEcomConnector/CreditTest.js +215 -0
  154. package/lib/test/Integration/Gateways/GpEcomConnector/CreditTest.js.map +1 -0
  155. package/lib/test/Integration/Gateways/GpEcomConnector/HppTest.d.ts +1 -0
  156. package/lib/test/Integration/Gateways/GpEcomConnector/HppTest.js +99 -0
  157. package/lib/test/Integration/Gateways/GpEcomConnector/HppTest.js.map +1 -0
  158. package/lib/test/Integration/Gateways/GpEcomConnector/RecurringTest.d.ts +1 -0
  159. package/lib/test/Integration/Gateways/GpEcomConnector/RecurringTest.js +133 -0
  160. package/lib/test/Integration/Gateways/GpEcomConnector/RecurringTest.js.map +1 -0
  161. package/lib/test/Integration/Gateways/PorticoConnector/AchTest.d.ts +1 -0
  162. package/lib/test/Integration/Gateways/PorticoConnector/AchTest.js +59 -0
  163. package/lib/test/Integration/Gateways/PorticoConnector/AchTest.js.map +1 -0
  164. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/CheckTest.d.ts +1 -0
  165. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/CheckTest.js +378 -0
  166. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/CheckTest.js.map +1 -0
  167. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceCheckTest.d.ts +1 -0
  168. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceCheckTest.js +86 -0
  169. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceCheckTest.js.map +1 -0
  170. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceTest.d.ts +1 -0
  171. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceTest.js +1723 -0
  172. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceTest.js.map +1 -0
  173. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoCheckTest.d.ts +1 -0
  174. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoCheckTest.js +86 -0
  175. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoCheckTest.js.map +1 -0
  176. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoTest.d.ts +1 -0
  177. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoTest.js +1760 -0
  178. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoTest.js.map +1 -0
  179. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RecurringTest.d.ts +1 -0
  180. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RecurringTest.js +420 -0
  181. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RecurringTest.js.map +1 -0
  182. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RetailTest.d.ts +1 -0
  183. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RetailTest.js +2221 -0
  184. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RetailTest.js.map +1 -0
  185. package/lib/test/Integration/Gateways/PorticoConnector/CreditTest.d.ts +1 -0
  186. package/lib/test/Integration/Gateways/PorticoConnector/CreditTest.js +392 -0
  187. package/lib/test/Integration/Gateways/PorticoConnector/CreditTest.js.map +1 -0
  188. package/lib/test/Integration/Gateways/PorticoConnector/DebitTest.d.ts +1 -0
  189. package/lib/test/Integration/Gateways/PorticoConnector/DebitTest.js +88 -0
  190. package/lib/test/Integration/Gateways/PorticoConnector/DebitTest.js.map +1 -0
  191. package/lib/test/Integration/Gateways/PorticoConnector/EbtTest.d.ts +1 -0
  192. package/lib/test/Integration/Gateways/PorticoConnector/EbtTest.js +72 -0
  193. package/lib/test/Integration/Gateways/PorticoConnector/EbtTest.js.map +1 -0
  194. package/lib/test/Integration/Gateways/PorticoConnector/EcommerceTest.d.ts +1 -0
  195. package/lib/test/Integration/Gateways/PorticoConnector/EcommerceTest.js +111 -0
  196. package/lib/test/Integration/Gateways/PorticoConnector/EcommerceTest.js.map +1 -0
  197. package/lib/test/Integration/Gateways/PorticoConnector/GiftTest.d.ts +1 -0
  198. package/lib/test/Integration/Gateways/PorticoConnector/GiftTest.js +147 -0
  199. package/lib/test/Integration/Gateways/PorticoConnector/GiftTest.js.map +1 -0
  200. package/lib/test/Integration/Gateways/PorticoConnector/PorticoManagementTokenTest.d.ts +1 -0
  201. package/lib/test/Integration/Gateways/PorticoConnector/PorticoManagementTokenTest.js +48 -0
  202. package/lib/test/Integration/Gateways/PorticoConnector/PorticoManagementTokenTest.js.map +1 -0
  203. package/lib/test/Integration/Gateways/PorticoConnector/RecurringTest.d.ts +1 -0
  204. package/lib/test/Integration/Gateways/PorticoConnector/RecurringTest.js +101 -0
  205. package/lib/test/Integration/Gateways/PorticoConnector/RecurringTest.js.map +1 -0
  206. package/lib/test/Integration/Gateways/PorticoConnector/ReportingTest.d.ts +1 -0
  207. package/lib/test/Integration/Gateways/PorticoConnector/ReportingTest.js +50 -0
  208. package/lib/test/Integration/Gateways/PorticoConnector/ReportingTest.js.map +1 -0
  209. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/GetInformationCertificationTest.d.ts +1 -0
  210. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/GetInformationCertificationTest.js +44 -0
  211. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/GetInformationCertificationTest.js.map +1 -0
  212. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayAccountCertificationTest.d.ts +1 -0
  213. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayAccountCertificationTest.js +221 -0
  214. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayAccountCertificationTest.js.map +1 -0
  215. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayFundCertificationTest.d.ts +1 -0
  216. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayFundCertificationTest.js +60 -0
  217. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayFundCertificationTest.js.map +1 -0
  218. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayInNetworkTransactionCertificationTest.d.ts +1 -0
  219. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayInNetworkTransactionCertificationTest.js +80 -0
  220. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayInNetworkTransactionCertificationTest.js.map +1 -0
  221. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/TestData/TestAccountData.d.ts +39 -0
  222. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/TestData/TestAccountData.js +393 -0
  223. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/TestData/TestAccountData.js.map +1 -0
  224. package/lib/test/Integration/Gateways/ProPayConnector/GetInformationTest.d.ts +1 -0
  225. package/lib/test/Integration/Gateways/ProPayConnector/GetInformationTest.js +44 -0
  226. package/lib/test/Integration/Gateways/ProPayConnector/GetInformationTest.js.map +1 -0
  227. package/lib/test/Integration/Gateways/ProPayConnector/ProPayAccountTest.d.ts +1 -0
  228. package/lib/test/Integration/Gateways/ProPayConnector/ProPayAccountTest.js +330 -0
  229. package/lib/test/Integration/Gateways/ProPayConnector/ProPayAccountTest.js.map +1 -0
  230. package/lib/test/Integration/Gateways/ProPayConnector/ProPayFundsTest.d.ts +1 -0
  231. package/lib/test/Integration/Gateways/ProPayConnector/ProPayFundsTest.js +60 -0
  232. package/lib/test/Integration/Gateways/ProPayConnector/ProPayFundsTest.js.map +1 -0
  233. package/lib/test/Integration/Gateways/ProPayConnector/ProPayInNetworkTransactionTest.d.ts +1 -0
  234. package/lib/test/Integration/Gateways/ProPayConnector/ProPayInNetworkTransactionTest.js +80 -0
  235. package/lib/test/Integration/Gateways/ProPayConnector/ProPayInNetworkTransactionTest.js.map +1 -0
  236. package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestAccountData.d.ts +34 -0
  237. package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestAccountData.js +322 -0
  238. package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestAccountData.js.map +1 -0
  239. package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestFundsData.d.ts +4 -0
  240. package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestFundsData.js +28 -0
  241. package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestFundsData.js.map +1 -0
  242. package/lib/test/Integration/Gateways/Terminals/RequestIdProvider.d.ts +4 -0
  243. package/lib/test/Integration/Gateways/Terminals/RequestIdProvider.js +10 -0
  244. package/lib/test/Integration/Gateways/Terminals/RequestIdProvider.js.map +1 -0
  245. package/lib/test/Integration/Gateways/Terminals/UPA/UpaMicTest.d.ts +1 -0
  246. package/lib/test/Integration/Gateways/Terminals/UPA/UpaMicTest.js +149 -0
  247. package/lib/test/Integration/Gateways/Terminals/UPA/UpaMicTest.js.map +1 -0
  248. package/lib/test/Integration/Gateways/ThreeDSecureAsClient.d.ts +16 -0
  249. package/lib/test/Integration/Gateways/ThreeDSecureAsClient.js +212 -0
  250. package/lib/test/Integration/Gateways/ThreeDSecureAsClient.js.map +1 -0
  251. package/lib/test/Integration/Services/CheckServiceTest.d.ts +1 -0
  252. package/lib/test/Integration/Services/CheckServiceTest.js +45 -0
  253. package/lib/test/Integration/Services/CheckServiceTest.js.map +1 -0
  254. package/lib/test/Integration/Services/CreditServiceTest.d.ts +1 -0
  255. package/lib/test/Integration/Services/CreditServiceTest.js +174 -0
  256. package/lib/test/Integration/Services/CreditServiceTest.js.map +1 -0
  257. package/lib/test/Integration/Services/DebitServiceTest.d.ts +1 -0
  258. package/lib/test/Integration/Services/DebitServiceTest.js +81 -0
  259. package/lib/test/Integration/Services/DebitServiceTest.js.map +1 -0
  260. package/lib/test/Integration/Services/EBTServiceTest.d.ts +1 -0
  261. package/lib/test/Integration/Services/EBTServiceTest.js +64 -0
  262. package/lib/test/Integration/Services/EBTServiceTest.js.map +1 -0
  263. package/lib/test/Unit/Builders/AuthorizationBuilder/ValidationTest.d.ts +1 -0
  264. package/lib/test/Unit/Builders/AuthorizationBuilder/ValidationTest.js +111 -0
  265. package/lib/test/Unit/Builders/AuthorizationBuilder/ValidationTest.js.map +1 -0
  266. package/lib/test/Unit/Builders/ReportBuilder/ValidationTest.d.ts +1 -0
  267. package/lib/test/Unit/Builders/ReportBuilder/ValidationTest.js +62 -0
  268. package/lib/test/Unit/Builders/ReportBuilder/ValidationTest.js.map +1 -0
  269. package/lib/test/Unit/Gateways/GpEcomConnector/CreditTest.d.ts +1 -0
  270. package/lib/test/Unit/Gateways/GpEcomConnector/CreditTest.js +34 -0
  271. package/lib/test/Unit/Gateways/GpEcomConnector/CreditTest.js.map +1 -0
  272. package/lib/test/Unit/Gateways/PorticoConnector/InputValidationTest.d.ts +1 -0
  273. package/lib/test/Unit/Gateways/PorticoConnector/InputValidationTest.js +125 -0
  274. package/lib/test/Unit/Gateways/PorticoConnector/InputValidationTest.js.map +1 -0
  275. package/package.json +2 -1
@@ -0,0 +1,1941 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IsoCountries = void 0;
4
+ class IsoCountries {
5
+ static allCountries = [
6
+ {
7
+ name: "Afghanistan",
8
+ numeric: "004",
9
+ alpha2: "AF",
10
+ alpha3: "AFG",
11
+ phoneCode: ["93"],
12
+ },
13
+ {
14
+ name: "Åland Islands",
15
+ numeric: "248",
16
+ alpha2: "AX",
17
+ alpha3: "ALA",
18
+ phoneCode: ["358"],
19
+ },
20
+ {
21
+ name: "Albania",
22
+ numeric: "008",
23
+ alpha2: "AL",
24
+ alpha3: "ALB",
25
+ phoneCode: ["355"],
26
+ },
27
+ {
28
+ name: "Algeria",
29
+ numeric: "012",
30
+ alpha2: "DZ",
31
+ alpha3: "DZA",
32
+ phoneCode: ["213"],
33
+ },
34
+ {
35
+ name: "American Samoa",
36
+ numeric: "016",
37
+ alpha2: "AS",
38
+ alpha3: "ASM",
39
+ phoneCode: ["1-684"],
40
+ },
41
+ {
42
+ name: "Andorra",
43
+ numeric: "020",
44
+ alpha2: "AD",
45
+ alpha3: "AND",
46
+ phoneCode: ["376"],
47
+ },
48
+ {
49
+ name: "Angola",
50
+ numeric: "024",
51
+ alpha2: "AO",
52
+ alpha3: "AGO",
53
+ phoneCode: ["244"],
54
+ },
55
+ {
56
+ name: "Anguilla",
57
+ numeric: "660",
58
+ alpha2: "AI",
59
+ alpha3: "AIA",
60
+ phoneCode: ["1-264"],
61
+ },
62
+ {
63
+ name: "Antarctica",
64
+ numeric: "010",
65
+ alpha2: "AQ",
66
+ alpha3: "ATA",
67
+ phoneCode: ["672"],
68
+ },
69
+ {
70
+ name: "Antigua and Barbuda",
71
+ numeric: "028",
72
+ alpha2: "AG",
73
+ alpha3: "ATG",
74
+ phoneCode: ["1-268"],
75
+ },
76
+ {
77
+ name: "Argentina",
78
+ numeric: "032",
79
+ alpha2: "AR",
80
+ alpha3: "ARG",
81
+ phoneCode: ["54"],
82
+ },
83
+ {
84
+ name: "Armenia",
85
+ numeric: "051",
86
+ alpha2: "AM",
87
+ alpha3: "ARM",
88
+ phoneCode: ["374"],
89
+ },
90
+ {
91
+ name: "Aruba",
92
+ numeric: "533",
93
+ alpha2: "AW",
94
+ alpha3: "ABW",
95
+ phoneCode: ["297"],
96
+ },
97
+ {
98
+ name: "Australia",
99
+ numeric: "036",
100
+ alpha2: "AU",
101
+ alpha3: "AUS",
102
+ phoneCode: ["61"],
103
+ },
104
+ {
105
+ name: "Austria",
106
+ numeric: "040",
107
+ alpha2: "AT",
108
+ alpha3: "AUT",
109
+ phoneCode: ["43"],
110
+ },
111
+ {
112
+ name: "Azerbaijan",
113
+ numeric: "031",
114
+ alpha2: "AZ",
115
+ alpha3: "AZE",
116
+ phoneCode: ["994"],
117
+ },
118
+ {
119
+ name: "Bahamas",
120
+ numeric: "044",
121
+ alpha2: "BS",
122
+ alpha3: "BHS",
123
+ phoneCode: ["1-242"],
124
+ },
125
+ {
126
+ name: "Bahrain",
127
+ numeric: "048",
128
+ alpha2: "BH",
129
+ alpha3: "BHR",
130
+ phoneCode: ["973"],
131
+ },
132
+ {
133
+ name: "Bangladesh",
134
+ numeric: "050",
135
+ alpha2: "BD",
136
+ alpha3: "BGD",
137
+ phoneCode: ["880"],
138
+ },
139
+ {
140
+ name: "Barbados",
141
+ numeric: "052",
142
+ alpha2: "BB",
143
+ alpha3: "BRB",
144
+ phoneCode: ["1-246"],
145
+ },
146
+ {
147
+ name: "Belarus",
148
+ numeric: "112",
149
+ alpha2: "BY",
150
+ alpha3: "BLR",
151
+ phoneCode: ["375"],
152
+ },
153
+ {
154
+ name: "Belgium",
155
+ numeric: "056",
156
+ alpha2: "BE",
157
+ alpha3: "BEL",
158
+ phoneCode: ["32"],
159
+ },
160
+ {
161
+ name: "Belize",
162
+ numeric: "084",
163
+ alpha2: "BZ",
164
+ alpha3: "BLZ",
165
+ phoneCode: ["501"],
166
+ },
167
+ {
168
+ name: "Benin",
169
+ numeric: "204",
170
+ alpha2: "BJ",
171
+ alpha3: "BEN",
172
+ phoneCode: ["229"],
173
+ },
174
+ {
175
+ name: "Bermuda",
176
+ numeric: "060",
177
+ alpha2: "BM",
178
+ alpha3: "BMU",
179
+ phoneCode: ["1-441"],
180
+ },
181
+ {
182
+ name: "Bhutan",
183
+ numeric: "064",
184
+ alpha2: "BT",
185
+ alpha3: "BTN",
186
+ phoneCode: ["975"],
187
+ },
188
+ {
189
+ name: "Bolivia, Plurinational State of",
190
+ numeric: "068",
191
+ alpha2: "BO",
192
+ alpha3: "BOL",
193
+ phoneCode: ["591"],
194
+ },
195
+ {
196
+ name: "Bonaire, Sint Eustatius and Saba",
197
+ numeric: "535",
198
+ alpha2: "BQ",
199
+ alpha3: "BES",
200
+ phoneCode: ["599"],
201
+ },
202
+ {
203
+ name: "Bosnia and Herzegovina",
204
+ numeric: "070",
205
+ alpha2: "BA",
206
+ alpha3: "BIH",
207
+ phoneCode: ["387"],
208
+ },
209
+ {
210
+ name: "Botswana",
211
+ numeric: "072",
212
+ alpha2: "BW",
213
+ alpha3: "BWA",
214
+ phoneCode: ["267"],
215
+ },
216
+ {
217
+ name: "Bouvet Island",
218
+ numeric: "074",
219
+ alpha2: "BV",
220
+ alpha3: "BVT",
221
+ phoneCode: ["55"],
222
+ },
223
+ {
224
+ name: "Brazil",
225
+ numeric: "076",
226
+ alpha2: "BR",
227
+ alpha3: "BRA",
228
+ phoneCode: ["55"],
229
+ },
230
+ {
231
+ name: "British Indian Ocean Territory",
232
+ numeric: "086",
233
+ alpha2: "IO",
234
+ alpha3: "IOT",
235
+ phoneCode: ["246"],
236
+ },
237
+ {
238
+ name: "Brunei Darussalam",
239
+ numeric: "096",
240
+ alpha2: "BN",
241
+ alpha3: "BRN",
242
+ phoneCode: ["673"],
243
+ },
244
+ {
245
+ name: "Bulgaria",
246
+ numeric: "100",
247
+ alpha2: "BG",
248
+ alpha3: "BGR",
249
+ phoneCode: ["359"],
250
+ },
251
+ {
252
+ name: "Burkina Faso",
253
+ numeric: "854",
254
+ alpha2: "BF",
255
+ alpha3: "BFA",
256
+ phoneCode: ["226"],
257
+ },
258
+ {
259
+ name: "Burundi",
260
+ numeric: "108",
261
+ alpha2: "BI",
262
+ alpha3: "BDI",
263
+ phoneCode: ["257"],
264
+ },
265
+ {
266
+ name: "Cambodia",
267
+ numeric: "116",
268
+ alpha2: "KH",
269
+ alpha3: "KHM",
270
+ phoneCode: ["855"],
271
+ },
272
+ {
273
+ name: "Cameroon",
274
+ numeric: "120",
275
+ alpha2: "CM",
276
+ alpha3: "CMR",
277
+ phoneCode: ["237"],
278
+ },
279
+ {
280
+ name: "Canada",
281
+ numeric: "124",
282
+ alpha2: "CA",
283
+ alpha3: "CAN",
284
+ phoneCode: ["1"],
285
+ },
286
+ {
287
+ name: "Cabo Verde",
288
+ numeric: "132",
289
+ alpha2: "CV",
290
+ alpha3: "CPV",
291
+ phoneCode: ["238"],
292
+ },
293
+ {
294
+ name: "Cayman Islands",
295
+ numeric: "136",
296
+ alpha2: "KY",
297
+ alpha3: "CYM",
298
+ phoneCode: ["1-345"],
299
+ },
300
+ {
301
+ name: "Central African Republic",
302
+ numeric: "140",
303
+ alpha2: "CF",
304
+ alpha3: "CAF",
305
+ phoneCode: ["236"],
306
+ },
307
+ {
308
+ name: "Chad",
309
+ numeric: "148",
310
+ alpha2: "TD",
311
+ alpha3: "TCD",
312
+ phoneCode: ["235"],
313
+ },
314
+ {
315
+ name: "Chile",
316
+ numeric: "152",
317
+ alpha2: "CL",
318
+ alpha3: "CHL",
319
+ phoneCode: ["56"],
320
+ },
321
+ {
322
+ name: "China",
323
+ numeric: "156",
324
+ alpha2: "CN",
325
+ alpha3: "CHN",
326
+ phoneCode: ["86"],
327
+ },
328
+ {
329
+ name: "Christmas Island",
330
+ numeric: "162",
331
+ alpha2: "CX",
332
+ alpha3: "CXR",
333
+ phoneCode: ["61"],
334
+ },
335
+ {
336
+ name: "Cocos (Keeling) Islands",
337
+ numeric: "166",
338
+ alpha2: "CC",
339
+ alpha3: "CCK",
340
+ phoneCode: ["61"],
341
+ },
342
+ {
343
+ name: "Colombia",
344
+ numeric: "170",
345
+ alpha2: "CO",
346
+ alpha3: "COL",
347
+ phoneCode: ["57"],
348
+ },
349
+ {
350
+ name: "Comoros",
351
+ numeric: "174",
352
+ alpha2: "KM",
353
+ alpha3: "COM",
354
+ phoneCode: ["269"],
355
+ },
356
+ {
357
+ name: "Congo",
358
+ numeric: "178",
359
+ alpha2: "CG",
360
+ alpha3: "COG",
361
+ phoneCode: ["242"],
362
+ },
363
+ {
364
+ name: "Congo, the Democratic Republic of the",
365
+ numeric: "180",
366
+ alpha2: "CD",
367
+ alpha3: "COD",
368
+ phoneCode: ["243"],
369
+ },
370
+ {
371
+ name: "Cook Islands",
372
+ numeric: "184",
373
+ alpha2: "CK",
374
+ alpha3: "COK",
375
+ phoneCode: ["682"],
376
+ },
377
+ {
378
+ name: "Costa Rica",
379
+ numeric: "188",
380
+ alpha2: "CR",
381
+ alpha3: "CRI",
382
+ phoneCode: ["506"],
383
+ },
384
+ {
385
+ name: "Côte d'Ivoire",
386
+ numeric: "384",
387
+ alpha2: "CI",
388
+ alpha3: "CIV",
389
+ phoneCode: ["225"],
390
+ },
391
+ {
392
+ name: "Croatia",
393
+ numeric: "191",
394
+ alpha2: "HR",
395
+ alpha3: "HRV",
396
+ phoneCode: ["385"],
397
+ },
398
+ {
399
+ name: "Cuba",
400
+ numeric: "192",
401
+ alpha2: "CU",
402
+ alpha3: "CUB",
403
+ phoneCode: ["53"],
404
+ },
405
+ {
406
+ name: "Curaçao",
407
+ numeric: "531",
408
+ alpha2: "CW",
409
+ alpha3: "CUW",
410
+ phoneCode: ["599"],
411
+ },
412
+ {
413
+ name: "Cyprus",
414
+ numeric: "196",
415
+ alpha2: "CY",
416
+ alpha3: "CYP",
417
+ phoneCode: ["357"],
418
+ },
419
+ {
420
+ name: "Czech Republic",
421
+ numeric: "203",
422
+ alpha2: "CZ",
423
+ alpha3: "CZE",
424
+ phoneCode: ["420"],
425
+ },
426
+ {
427
+ name: "Denmark",
428
+ numeric: "208",
429
+ alpha2: "DK",
430
+ alpha3: "DNK",
431
+ phoneCode: ["45"],
432
+ },
433
+ {
434
+ name: "Djibouti",
435
+ numeric: "262",
436
+ alpha2: "DJ",
437
+ alpha3: "DJI",
438
+ phoneCode: ["253"],
439
+ },
440
+ {
441
+ name: "Dominica",
442
+ numeric: "212",
443
+ alpha2: "DM",
444
+ alpha3: "DMA",
445
+ phoneCode: ["1-767"],
446
+ },
447
+ {
448
+ name: "Dominican Republic",
449
+ numeric: "214",
450
+ alpha2: "DO",
451
+ alpha3: "DOM",
452
+ phoneCode: ["1-809", "1-829", "1-849"],
453
+ },
454
+ {
455
+ name: "Ecuador",
456
+ numeric: "218",
457
+ alpha2: "EC",
458
+ alpha3: "ECU",
459
+ phoneCode: ["593"],
460
+ },
461
+ {
462
+ name: "Egypt",
463
+ numeric: "818",
464
+ alpha2: "EG",
465
+ alpha3: "EGY",
466
+ phoneCode: ["20"],
467
+ },
468
+ {
469
+ name: "El Salvador",
470
+ numeric: "222",
471
+ alpha2: "SV",
472
+ alpha3: "SLV",
473
+ phoneCode: ["503"],
474
+ },
475
+ {
476
+ name: "Equatorial Guinea",
477
+ numeric: "226",
478
+ alpha2: "GQ",
479
+ alpha3: "GNQ",
480
+ phoneCode: ["240"],
481
+ },
482
+ {
483
+ name: "Eritrea",
484
+ numeric: "232",
485
+ alpha2: "ER",
486
+ alpha3: "ERI",
487
+ phoneCode: ["291"],
488
+ },
489
+ {
490
+ name: "Estonia",
491
+ numeric: "233",
492
+ alpha2: "EE",
493
+ alpha3: "EST",
494
+ phoneCode: ["372"],
495
+ },
496
+ {
497
+ name: "Ethiopia",
498
+ numeric: "231",
499
+ alpha2: "ET",
500
+ alpha3: "ETH",
501
+ phoneCode: ["251"],
502
+ },
503
+ {
504
+ name: "Falkland Islands (Malvinas)",
505
+ numeric: "238",
506
+ alpha2: "FK",
507
+ alpha3: "FLK",
508
+ phoneCode: ["500"],
509
+ },
510
+ {
511
+ name: "Faroe Islands",
512
+ numeric: "234",
513
+ alpha2: "FO",
514
+ alpha3: "FRO",
515
+ phoneCode: ["298"],
516
+ },
517
+ {
518
+ name: "Fiji",
519
+ numeric: "242",
520
+ alpha2: "FJ",
521
+ alpha3: "FJI",
522
+ phoneCode: ["679"],
523
+ },
524
+ {
525
+ name: "Finland",
526
+ numeric: "246",
527
+ alpha2: "FI",
528
+ alpha3: "FIN",
529
+ phoneCode: ["358"],
530
+ },
531
+ {
532
+ name: "France",
533
+ numeric: "250",
534
+ alpha2: "FR",
535
+ alpha3: "FRA",
536
+ phoneCode: ["33"],
537
+ },
538
+ {
539
+ name: "French Guiana",
540
+ numeric: "254",
541
+ alpha2: "GF",
542
+ alpha3: "GUF",
543
+ phoneCode: ["594"],
544
+ },
545
+ {
546
+ name: "French Polynesia",
547
+ numeric: "258",
548
+ alpha2: "PF",
549
+ alpha3: "PYF",
550
+ phoneCode: ["689"],
551
+ },
552
+ {
553
+ name: "French Southern Territories",
554
+ numeric: "260",
555
+ alpha2: "TF",
556
+ alpha3: "ATF",
557
+ phoneCode: ["262"],
558
+ },
559
+ {
560
+ name: "Gabon",
561
+ numeric: "266",
562
+ alpha2: "GA",
563
+ alpha3: "GAB",
564
+ phoneCode: ["241"],
565
+ },
566
+ {
567
+ name: "Gambia",
568
+ numeric: "270",
569
+ alpha2: "GM",
570
+ alpha3: "GMB",
571
+ phoneCode: ["220"],
572
+ },
573
+ {
574
+ name: "Georgia",
575
+ numeric: "268",
576
+ alpha2: "GE",
577
+ alpha3: "GEO",
578
+ phoneCode: ["995"],
579
+ },
580
+ {
581
+ name: "Germany",
582
+ numeric: "276",
583
+ alpha2: "DE",
584
+ alpha3: "DEU",
585
+ phoneCode: ["49"],
586
+ },
587
+ {
588
+ name: "Ghana",
589
+ numeric: "288",
590
+ alpha2: "GH",
591
+ alpha3: "GHA",
592
+ phoneCode: ["233"],
593
+ },
594
+ {
595
+ name: "Gibraltar",
596
+ numeric: "292",
597
+ alpha2: "GI",
598
+ alpha3: "GIB",
599
+ phoneCode: ["350"],
600
+ },
601
+ {
602
+ name: "Greece",
603
+ numeric: "300",
604
+ alpha2: "GR",
605
+ alpha3: "GRC",
606
+ phoneCode: ["30"],
607
+ },
608
+ {
609
+ name: "Greenland",
610
+ numeric: "304",
611
+ alpha2: "GL",
612
+ alpha3: "GRL",
613
+ phoneCode: ["299"],
614
+ },
615
+ {
616
+ name: "Grenada",
617
+ numeric: "308",
618
+ alpha2: "GD",
619
+ alpha3: "GRD",
620
+ phoneCode: ["1-473"],
621
+ },
622
+ {
623
+ name: "Guadeloupe",
624
+ numeric: "312",
625
+ alpha2: "GP",
626
+ alpha3: "GLP",
627
+ phoneCode: ["590"],
628
+ },
629
+ {
630
+ name: "Guam",
631
+ numeric: "316",
632
+ alpha2: "GU",
633
+ alpha3: "GUM",
634
+ phoneCode: ["1-671"],
635
+ },
636
+ {
637
+ name: "Guatemala",
638
+ numeric: "320",
639
+ alpha2: "GT",
640
+ alpha3: "GTM",
641
+ phoneCode: ["502"],
642
+ },
643
+ {
644
+ name: "Guernsey",
645
+ numeric: "831",
646
+ alpha2: "GG",
647
+ alpha3: "GGY",
648
+ phoneCode: ["44-1481"],
649
+ },
650
+ {
651
+ name: "Guinea",
652
+ numeric: "324",
653
+ alpha2: "GN",
654
+ alpha3: "GIN",
655
+ phoneCode: ["224"],
656
+ },
657
+ {
658
+ name: "Guinea-Bissau",
659
+ numeric: "624",
660
+ alpha2: "GW",
661
+ alpha3: "GNB",
662
+ phoneCode: ["245"],
663
+ },
664
+ {
665
+ name: "Guyana",
666
+ numeric: "328",
667
+ alpha2: "GY",
668
+ alpha3: "GUY",
669
+ phoneCode: ["592"],
670
+ },
671
+ {
672
+ name: "Haiti",
673
+ numeric: "332",
674
+ alpha2: "HT",
675
+ alpha3: "HTI",
676
+ phoneCode: ["509"],
677
+ },
678
+ {
679
+ name: "Heard Island and McDonald Islands",
680
+ numeric: "334",
681
+ alpha2: "HM",
682
+ alpha3: "HMD",
683
+ phoneCode: ["672"],
684
+ },
685
+ {
686
+ name: "Holy See (Vatican City State)",
687
+ numeric: "336",
688
+ alpha2: "VA",
689
+ alpha3: "VAT",
690
+ phoneCode: ["379"],
691
+ },
692
+ {
693
+ name: "Honduras",
694
+ numeric: "340",
695
+ alpha2: "HN",
696
+ alpha3: "HND",
697
+ phoneCode: ["504"],
698
+ },
699
+ {
700
+ name: "Hong Kong",
701
+ numeric: "344",
702
+ alpha2: "HK",
703
+ alpha3: "HKG",
704
+ phoneCode: ["852"],
705
+ },
706
+ {
707
+ name: "Hungary",
708
+ numeric: "348",
709
+ alpha2: "HU",
710
+ alpha3: "HUN",
711
+ phoneCode: ["36"],
712
+ },
713
+ {
714
+ name: "Iceland",
715
+ numeric: "352",
716
+ alpha2: "IS",
717
+ alpha3: "ISL",
718
+ phoneCode: ["354"],
719
+ },
720
+ {
721
+ name: "India",
722
+ numeric: "356",
723
+ alpha2: "IN",
724
+ alpha3: "IND",
725
+ phoneCode: ["91"],
726
+ },
727
+ {
728
+ name: "Indonesia",
729
+ numeric: "360",
730
+ alpha2: "ID",
731
+ alpha3: "IDN",
732
+ phoneCode: ["62"],
733
+ },
734
+ {
735
+ name: "Iran, Islamic Republic of",
736
+ numeric: "364",
737
+ alpha2: "IR",
738
+ alpha3: "IRN",
739
+ phoneCode: ["98"],
740
+ },
741
+ {
742
+ name: "Iraq",
743
+ numeric: "368",
744
+ alpha2: "IQ",
745
+ alpha3: "IRQ",
746
+ phoneCode: ["964"],
747
+ },
748
+ {
749
+ name: "Ireland",
750
+ numeric: "372",
751
+ alpha2: "IE",
752
+ alpha3: "IRL",
753
+ phoneCode: ["353"],
754
+ },
755
+ {
756
+ name: "Isle of Man",
757
+ numeric: "833",
758
+ alpha2: "IM",
759
+ alpha3: "IMN",
760
+ phoneCode: ["44-1624"],
761
+ },
762
+ {
763
+ name: "Israel",
764
+ numeric: "376",
765
+ alpha2: "IL",
766
+ alpha3: "ISR",
767
+ phoneCode: ["972"],
768
+ },
769
+ {
770
+ name: "Italy",
771
+ numeric: "380",
772
+ alpha2: "IT",
773
+ alpha3: "ITA",
774
+ phoneCode: ["39"],
775
+ },
776
+ {
777
+ name: "Jamaica",
778
+ numeric: "388",
779
+ alpha2: "JM",
780
+ alpha3: "JAM",
781
+ phoneCode: ["1-876"],
782
+ },
783
+ {
784
+ name: "Japan",
785
+ numeric: "392",
786
+ alpha2: "JP",
787
+ alpha3: "JPN",
788
+ phoneCode: ["81"],
789
+ },
790
+ {
791
+ name: "Jersey",
792
+ numeric: "832",
793
+ alpha2: "JE",
794
+ alpha3: "JEY",
795
+ phoneCode: ["44-1534"],
796
+ },
797
+ {
798
+ name: "Jordan",
799
+ numeric: "400",
800
+ alpha2: "JO",
801
+ alpha3: "JOR",
802
+ phoneCode: ["962"],
803
+ },
804
+ {
805
+ name: "Kazakhstan",
806
+ numeric: "398",
807
+ alpha2: "KZ",
808
+ alpha3: "KAZ",
809
+ phoneCode: ["7"],
810
+ },
811
+ {
812
+ name: "Kenya",
813
+ numeric: "404",
814
+ alpha2: "KE",
815
+ alpha3: "KEN",
816
+ phoneCode: ["254"],
817
+ },
818
+ {
819
+ name: "Kiribati",
820
+ numeric: "296",
821
+ alpha2: "KI",
822
+ alpha3: "KIR",
823
+ phoneCode: ["686"],
824
+ },
825
+ {
826
+ name: "Korea, Democratic People's Republic of",
827
+ numeric: "408",
828
+ alpha2: "KP",
829
+ alpha3: "PRK",
830
+ phoneCode: ["850"],
831
+ },
832
+ {
833
+ name: "Korea, Republic of",
834
+ numeric: "410",
835
+ alpha2: "KR",
836
+ alpha3: "KOR",
837
+ phoneCode: ["82"],
838
+ },
839
+ {
840
+ name: "Kuwait",
841
+ numeric: "414",
842
+ alpha2: "KW",
843
+ alpha3: "KWT",
844
+ phoneCode: ["965"],
845
+ },
846
+ {
847
+ name: "Kyrgyzstan",
848
+ numeric: "417",
849
+ alpha2: "KG",
850
+ alpha3: "KGZ",
851
+ phoneCode: ["996"],
852
+ },
853
+ {
854
+ name: "Lao People's Democratic Republic",
855
+ numeric: "418",
856
+ alpha2: "LA",
857
+ alpha3: "LAO",
858
+ phoneCode: ["856"],
859
+ },
860
+ {
861
+ name: "Latvia",
862
+ numeric: "428",
863
+ alpha2: "LV",
864
+ alpha3: "LVA",
865
+ phoneCode: ["371"],
866
+ },
867
+ {
868
+ name: "Lebanon",
869
+ numeric: "422",
870
+ alpha2: "LB",
871
+ alpha3: "LBN",
872
+ phoneCode: ["961"],
873
+ },
874
+ {
875
+ name: "Lesotho",
876
+ numeric: "426",
877
+ alpha2: "LS",
878
+ alpha3: "LSO",
879
+ phoneCode: ["266"],
880
+ },
881
+ {
882
+ name: "Liberia",
883
+ numeric: "430",
884
+ alpha2: "LR",
885
+ alpha3: "LBR",
886
+ phoneCode: ["231"],
887
+ },
888
+ {
889
+ name: "Libya",
890
+ numeric: "434",
891
+ alpha2: "LY",
892
+ alpha3: "LBY",
893
+ phoneCode: ["218"],
894
+ },
895
+ {
896
+ name: "Liechtenstein",
897
+ numeric: "438",
898
+ alpha2: "LI",
899
+ alpha3: "LIE",
900
+ phoneCode: ["423"],
901
+ },
902
+ {
903
+ name: "Lithuania",
904
+ numeric: "440",
905
+ alpha2: "LT",
906
+ alpha3: "LTU",
907
+ phoneCode: ["370"],
908
+ },
909
+ {
910
+ name: "Luxembourg",
911
+ numeric: "442",
912
+ alpha2: "LU",
913
+ alpha3: "LUX",
914
+ phoneCode: ["352"],
915
+ },
916
+ {
917
+ name: "Macao",
918
+ numeric: "446",
919
+ alpha2: "MO",
920
+ alpha3: "MAC",
921
+ phoneCode: ["853"],
922
+ },
923
+ {
924
+ name: "Macedonia, the former Yugoslav Republic of",
925
+ numeric: "807",
926
+ alpha2: "MK",
927
+ alpha3: "MKD",
928
+ phoneCode: ["389"],
929
+ },
930
+ {
931
+ name: "Madagascar",
932
+ numeric: "450",
933
+ alpha2: "MG",
934
+ alpha3: "MDG",
935
+ phoneCode: ["261"],
936
+ },
937
+ {
938
+ name: "Malawi",
939
+ numeric: "454",
940
+ alpha2: "MW",
941
+ alpha3: "MWI",
942
+ phoneCode: ["265"],
943
+ },
944
+ {
945
+ name: "Malaysia",
946
+ numeric: "458",
947
+ alpha2: "MY",
948
+ alpha3: "MYS",
949
+ phoneCode: ["60"],
950
+ },
951
+ {
952
+ name: "Maldives",
953
+ numeric: "462",
954
+ alpha2: "MV",
955
+ alpha3: "MDV",
956
+ phoneCode: ["960"],
957
+ },
958
+ {
959
+ name: "Mali",
960
+ numeric: "466",
961
+ alpha2: "ML",
962
+ alpha3: "MLI",
963
+ phoneCode: ["223"],
964
+ },
965
+ {
966
+ name: "Malta",
967
+ numeric: "470",
968
+ alpha2: "MT",
969
+ alpha3: "MLT",
970
+ phoneCode: ["356"],
971
+ },
972
+ {
973
+ name: "Marshall Islands",
974
+ numeric: "584",
975
+ alpha2: "MH",
976
+ alpha3: "MHL",
977
+ phoneCode: ["692"],
978
+ },
979
+ {
980
+ name: "Martinique",
981
+ numeric: "474",
982
+ alpha2: "MQ",
983
+ alpha3: "MTQ",
984
+ phoneCode: ["596"],
985
+ },
986
+ {
987
+ name: "Mauritania",
988
+ numeric: "478",
989
+ alpha2: "MR",
990
+ alpha3: "MRT",
991
+ phoneCode: ["222"],
992
+ },
993
+ {
994
+ name: "Mauritius",
995
+ numeric: "480",
996
+ alpha2: "MU",
997
+ alpha3: "MUS",
998
+ phoneCode: ["230"],
999
+ },
1000
+ {
1001
+ name: "Mayotte",
1002
+ numeric: "175",
1003
+ alpha2: "YT",
1004
+ alpha3: "MYT",
1005
+ phoneCode: ["262"],
1006
+ },
1007
+ {
1008
+ name: "Mexico",
1009
+ numeric: "484",
1010
+ alpha2: "MX",
1011
+ alpha3: "MEX",
1012
+ phoneCode: ["52"],
1013
+ },
1014
+ {
1015
+ name: "Micronesia, Federated States of",
1016
+ numeric: "583",
1017
+ alpha2: "FM",
1018
+ alpha3: "FSM",
1019
+ phoneCode: ["691"],
1020
+ },
1021
+ {
1022
+ name: "Moldova, Republic of",
1023
+ numeric: "498",
1024
+ alpha2: "MD",
1025
+ alpha3: "MDA",
1026
+ phoneCode: ["373"],
1027
+ },
1028
+ {
1029
+ name: "Monaco",
1030
+ numeric: "492",
1031
+ alpha2: "MC",
1032
+ alpha3: "MCO",
1033
+ phoneCode: ["377"],
1034
+ },
1035
+ {
1036
+ name: "Mongolia",
1037
+ numeric: "496",
1038
+ alpha2: "MN",
1039
+ alpha3: "MNG",
1040
+ phoneCode: ["976"],
1041
+ },
1042
+ {
1043
+ name: "Montenegro",
1044
+ numeric: "499",
1045
+ alpha2: "ME",
1046
+ alpha3: "MNE",
1047
+ phoneCode: ["382"],
1048
+ },
1049
+ {
1050
+ name: "Montserrat",
1051
+ numeric: "500",
1052
+ alpha2: "MS",
1053
+ alpha3: "MSR",
1054
+ phoneCode: ["1-664"],
1055
+ },
1056
+ {
1057
+ name: "Morocco",
1058
+ numeric: "504",
1059
+ alpha2: "MA",
1060
+ alpha3: "MAR",
1061
+ phoneCode: ["212"],
1062
+ },
1063
+ {
1064
+ name: "Mozambique",
1065
+ numeric: "508",
1066
+ alpha2: "MZ",
1067
+ alpha3: "MOZ",
1068
+ phoneCode: ["258"],
1069
+ },
1070
+ {
1071
+ name: "Myanmar",
1072
+ numeric: "104",
1073
+ alpha2: "MM",
1074
+ alpha3: "MMR",
1075
+ phoneCode: ["95"],
1076
+ },
1077
+ {
1078
+ name: "Namibia",
1079
+ numeric: "516",
1080
+ alpha2: "NA",
1081
+ alpha3: "NAM",
1082
+ phoneCode: ["264"],
1083
+ },
1084
+ {
1085
+ name: "Nauru",
1086
+ numeric: "520",
1087
+ alpha2: "NR",
1088
+ alpha3: "NRU",
1089
+ phoneCode: ["674"],
1090
+ },
1091
+ {
1092
+ name: "Nepal",
1093
+ numeric: "524",
1094
+ alpha2: "NP",
1095
+ alpha3: "NPL",
1096
+ phoneCode: ["977"],
1097
+ },
1098
+ {
1099
+ name: "Netherlands",
1100
+ numeric: "528",
1101
+ alpha2: "NL",
1102
+ alpha3: "NLD",
1103
+ phoneCode: ["31"],
1104
+ },
1105
+ {
1106
+ name: "Netherlands Antilles",
1107
+ numeric: "530",
1108
+ alpha2: "AN",
1109
+ alpha3: "ANT",
1110
+ phoneCode: ["599"],
1111
+ },
1112
+ {
1113
+ name: "New Caledonia",
1114
+ numeric: "540",
1115
+ alpha2: "NC",
1116
+ alpha3: "NCL",
1117
+ phoneCode: ["687"],
1118
+ },
1119
+ {
1120
+ name: "New Zealand",
1121
+ numeric: "554",
1122
+ alpha2: "NZ",
1123
+ alpha3: "NZL",
1124
+ phoneCode: ["64"],
1125
+ },
1126
+ {
1127
+ name: "Nicaragua",
1128
+ numeric: "558",
1129
+ alpha2: "NI",
1130
+ alpha3: "NIC",
1131
+ phoneCode: ["505"],
1132
+ },
1133
+ {
1134
+ name: "Niger",
1135
+ numeric: "562",
1136
+ alpha2: "NE",
1137
+ alpha3: "NER",
1138
+ phoneCode: ["227"],
1139
+ },
1140
+ {
1141
+ name: "Nigeria",
1142
+ numeric: "566",
1143
+ alpha2: "NG",
1144
+ alpha3: "NGA",
1145
+ phoneCode: ["234"],
1146
+ },
1147
+ {
1148
+ name: "Niue",
1149
+ numeric: "570",
1150
+ alpha2: "NU",
1151
+ alpha3: "NIU",
1152
+ phoneCode: ["683"],
1153
+ },
1154
+ {
1155
+ name: "Norfolk Island",
1156
+ numeric: "574",
1157
+ alpha2: "NF",
1158
+ alpha3: "NFK",
1159
+ phoneCode: ["672"],
1160
+ },
1161
+ {
1162
+ name: "Northern Mariana Islands",
1163
+ numeric: "580",
1164
+ alpha2: "MP",
1165
+ alpha3: "MNP",
1166
+ phoneCode: ["1-670"],
1167
+ },
1168
+ {
1169
+ name: "Norway",
1170
+ numeric: "578",
1171
+ alpha2: "NO",
1172
+ alpha3: "NOR",
1173
+ phoneCode: ["47"],
1174
+ },
1175
+ {
1176
+ name: "Oman",
1177
+ numeric: "512",
1178
+ alpha2: "OM",
1179
+ alpha3: "OMN",
1180
+ phoneCode: ["968"],
1181
+ },
1182
+ {
1183
+ name: "Pakistan",
1184
+ numeric: "586",
1185
+ alpha2: "PK",
1186
+ alpha3: "PAK",
1187
+ phoneCode: ["92"],
1188
+ },
1189
+ {
1190
+ name: "Palau",
1191
+ numeric: "585",
1192
+ alpha2: "PW",
1193
+ alpha3: "PLW",
1194
+ phoneCode: ["680"],
1195
+ },
1196
+ {
1197
+ name: "Palestine, State of",
1198
+ numeric: "275",
1199
+ alpha2: "PS",
1200
+ alpha3: "PSE",
1201
+ phoneCode: ["970"],
1202
+ },
1203
+ {
1204
+ name: "Panama",
1205
+ numeric: "591",
1206
+ alpha2: "PA",
1207
+ alpha3: "PAN",
1208
+ phoneCode: ["507"],
1209
+ },
1210
+ {
1211
+ name: "Papua New Guinea",
1212
+ numeric: "598",
1213
+ alpha2: "PG",
1214
+ alpha3: "PNG",
1215
+ phoneCode: ["675"],
1216
+ },
1217
+ {
1218
+ name: "Paraguay",
1219
+ numeric: "600",
1220
+ alpha2: "PY",
1221
+ alpha3: "PRY",
1222
+ phoneCode: ["595"],
1223
+ },
1224
+ {
1225
+ name: "Peru",
1226
+ numeric: "604",
1227
+ alpha2: "PE",
1228
+ alpha3: "PER",
1229
+ phoneCode: ["51"],
1230
+ },
1231
+ {
1232
+ name: "Philippines",
1233
+ numeric: "608",
1234
+ alpha2: "PH",
1235
+ alpha3: "PHL",
1236
+ phoneCode: ["63"],
1237
+ },
1238
+ {
1239
+ name: "Pitcairn",
1240
+ numeric: "612",
1241
+ alpha2: "PN",
1242
+ alpha3: "PCN",
1243
+ phoneCode: ["64"],
1244
+ },
1245
+ {
1246
+ name: "Poland",
1247
+ numeric: "616",
1248
+ alpha2: "PL",
1249
+ alpha3: "POL",
1250
+ phoneCode: ["48"],
1251
+ },
1252
+ {
1253
+ name: "Portugal",
1254
+ numeric: "620",
1255
+ alpha2: "PT",
1256
+ alpha3: "PRT",
1257
+ phoneCode: ["351"],
1258
+ },
1259
+ {
1260
+ name: "Puerto Rico",
1261
+ numeric: "630",
1262
+ alpha2: "PR",
1263
+ alpha3: "PRI",
1264
+ phoneCode: ["1-787", "1-939"],
1265
+ },
1266
+ {
1267
+ name: "Qatar",
1268
+ numeric: "634",
1269
+ alpha2: "QA",
1270
+ alpha3: "QAT",
1271
+ phoneCode: ["974"],
1272
+ },
1273
+ {
1274
+ name: "Réunion",
1275
+ numeric: "638",
1276
+ alpha2: "RE",
1277
+ alpha3: "REU",
1278
+ phoneCode: ["262"],
1279
+ },
1280
+ {
1281
+ name: "Romania",
1282
+ numeric: "642",
1283
+ alpha2: "RO",
1284
+ alpha3: "ROU",
1285
+ phoneCode: ["40"],
1286
+ },
1287
+ {
1288
+ name: "Russian Federation",
1289
+ numeric: "643",
1290
+ alpha2: "RU",
1291
+ alpha3: "RUS",
1292
+ phoneCode: ["7"],
1293
+ },
1294
+ {
1295
+ name: "Rwanda",
1296
+ numeric: "646",
1297
+ alpha2: "RW",
1298
+ alpha3: "RWA",
1299
+ phoneCode: ["250"],
1300
+ },
1301
+ {
1302
+ name: "New Zealand",
1303
+ numeric: "554",
1304
+ alpha2: "NZ",
1305
+ alpha3: "NZL",
1306
+ phoneCode: ["64"],
1307
+ },
1308
+ {
1309
+ name: "Nicaragua",
1310
+ numeric: "558",
1311
+ alpha2: "NI",
1312
+ alpha3: "NIC",
1313
+ phoneCode: ["505"],
1314
+ },
1315
+ {
1316
+ name: "Niger",
1317
+ numeric: "562",
1318
+ alpha2: "NE",
1319
+ alpha3: "NER",
1320
+ phoneCode: ["227"],
1321
+ },
1322
+ {
1323
+ name: "Nigeria",
1324
+ numeric: "566",
1325
+ alpha2: "NG",
1326
+ alpha3: "NGA",
1327
+ phoneCode: ["234"],
1328
+ },
1329
+ {
1330
+ name: "Niue",
1331
+ numeric: "570",
1332
+ alpha2: "NU",
1333
+ alpha3: "NIU",
1334
+ phoneCode: ["683"],
1335
+ },
1336
+ {
1337
+ name: "Norfolk Island",
1338
+ numeric: "574",
1339
+ alpha2: "NF",
1340
+ alpha3: "NFK",
1341
+ phoneCode: ["672"],
1342
+ },
1343
+ {
1344
+ name: "Northern Mariana Islands",
1345
+ numeric: "580",
1346
+ alpha2: "MP",
1347
+ alpha3: "MNP",
1348
+ phoneCode: ["1-670"],
1349
+ },
1350
+ {
1351
+ name: "Norway",
1352
+ numeric: "578",
1353
+ alpha2: "NO",
1354
+ alpha3: "NOR",
1355
+ phoneCode: ["47"],
1356
+ },
1357
+ {
1358
+ name: "Oman",
1359
+ numeric: "512",
1360
+ alpha2: "OM",
1361
+ alpha3: "OMN",
1362
+ phoneCode: ["968"],
1363
+ },
1364
+ {
1365
+ name: "Pakistan",
1366
+ numeric: "586",
1367
+ alpha2: "PK",
1368
+ alpha3: "PAK",
1369
+ phoneCode: ["92"],
1370
+ },
1371
+ {
1372
+ name: "Palau",
1373
+ numeric: "585",
1374
+ alpha2: "PW",
1375
+ alpha3: "PLW",
1376
+ phoneCode: ["680"],
1377
+ },
1378
+ {
1379
+ name: "Palestine, State of",
1380
+ numeric: "275",
1381
+ alpha2: "PS",
1382
+ alpha3: "PSE",
1383
+ phoneCode: ["970"],
1384
+ },
1385
+ {
1386
+ name: "Panama",
1387
+ numeric: "591",
1388
+ alpha2: "PA",
1389
+ alpha3: "PAN",
1390
+ phoneCode: ["507"],
1391
+ },
1392
+ {
1393
+ name: "Papua New Guinea",
1394
+ numeric: "598",
1395
+ alpha2: "PG",
1396
+ alpha3: "PNG",
1397
+ phoneCode: ["675"],
1398
+ },
1399
+ {
1400
+ name: "Paraguay",
1401
+ numeric: "600",
1402
+ alpha2: "PY",
1403
+ alpha3: "PRY",
1404
+ phoneCode: ["595"],
1405
+ },
1406
+ {
1407
+ name: "Peru",
1408
+ numeric: "604",
1409
+ alpha2: "PE",
1410
+ alpha3: "PER",
1411
+ phoneCode: ["51"],
1412
+ },
1413
+ {
1414
+ name: "Philippines",
1415
+ numeric: "608",
1416
+ alpha2: "PH",
1417
+ alpha3: "PHL",
1418
+ phoneCode: ["63"],
1419
+ },
1420
+ {
1421
+ name: "Pitcairn",
1422
+ numeric: "612",
1423
+ alpha2: "PN",
1424
+ alpha3: "PCN",
1425
+ phoneCode: ["64"],
1426
+ },
1427
+ {
1428
+ name: "Poland",
1429
+ numeric: "616",
1430
+ alpha2: "PL",
1431
+ alpha3: "POL",
1432
+ phoneCode: ["48"],
1433
+ },
1434
+ {
1435
+ name: "Portugal",
1436
+ numeric: "620",
1437
+ alpha2: "PT",
1438
+ alpha3: "PRT",
1439
+ phoneCode: ["351"],
1440
+ },
1441
+ {
1442
+ name: "Puerto Rico",
1443
+ numeric: "630",
1444
+ alpha2: "PR",
1445
+ alpha3: "PRI",
1446
+ phoneCode: ["1-787", "1-939"],
1447
+ },
1448
+ {
1449
+ name: "Qatar",
1450
+ numeric: "634",
1451
+ alpha2: "QA",
1452
+ alpha3: "QAT",
1453
+ phoneCode: ["974"],
1454
+ },
1455
+ {
1456
+ name: "Réunion",
1457
+ numeric: "638",
1458
+ alpha2: "RE",
1459
+ alpha3: "REU",
1460
+ phoneCode: ["262"],
1461
+ },
1462
+ {
1463
+ name: "Romania",
1464
+ numeric: "642",
1465
+ alpha2: "RO",
1466
+ alpha3: "ROU",
1467
+ phoneCode: ["40"],
1468
+ },
1469
+ {
1470
+ name: "Russian Federation",
1471
+ numeric: "643",
1472
+ alpha2: "RU",
1473
+ alpha3: "RUS",
1474
+ phoneCode: ["7"],
1475
+ },
1476
+ {
1477
+ name: "Rwanda",
1478
+ numeric: "646",
1479
+ alpha2: "RW",
1480
+ alpha3: "RWA",
1481
+ phoneCode: ["250"],
1482
+ },
1483
+ {
1484
+ name: "Saint Barthélemy",
1485
+ numeric: "652",
1486
+ alpha2: "BL",
1487
+ alpha3: "BLM",
1488
+ phoneCode: ["590"],
1489
+ },
1490
+ {
1491
+ name: "Saint Helena, Ascension and Tristan da Cunha",
1492
+ numeric: "654",
1493
+ alpha2: "SH",
1494
+ alpha3: "SHN",
1495
+ phoneCode: ["290"],
1496
+ },
1497
+ {
1498
+ name: "Saint Kitts and Nevis",
1499
+ numeric: "659",
1500
+ alpha2: "KN",
1501
+ alpha3: "KNA",
1502
+ phoneCode: ["1-869"],
1503
+ },
1504
+ {
1505
+ name: "Saint Lucia",
1506
+ numeric: "662",
1507
+ alpha2: "LC",
1508
+ alpha3: "LCA",
1509
+ phoneCode: ["1-758"],
1510
+ },
1511
+ {
1512
+ name: "Saint Martin",
1513
+ numeric: "663",
1514
+ alpha2: "MF",
1515
+ alpha3: "MAF",
1516
+ phoneCode: ["590"],
1517
+ },
1518
+ {
1519
+ name: "Saint Pierre and Miquelon",
1520
+ numeric: "666",
1521
+ alpha2: "PM",
1522
+ alpha3: "SPM",
1523
+ phoneCode: ["508"],
1524
+ },
1525
+ {
1526
+ name: "Saint Vincent and the Grenadines",
1527
+ numeric: "670",
1528
+ alpha2: "VC",
1529
+ alpha3: "VCT",
1530
+ phoneCode: ["1-784"],
1531
+ },
1532
+ {
1533
+ name: "Samoa",
1534
+ numeric: "882",
1535
+ alpha2: "WS",
1536
+ alpha3: "WSM",
1537
+ phoneCode: ["685"],
1538
+ },
1539
+ {
1540
+ name: "San Marino",
1541
+ numeric: "674",
1542
+ alpha2: "SM",
1543
+ alpha3: "SMR",
1544
+ phoneCode: ["378"],
1545
+ },
1546
+ {
1547
+ name: "Sao Tome and Principe",
1548
+ numeric: "678",
1549
+ alpha2: "ST",
1550
+ alpha3: "STP",
1551
+ phoneCode: ["239"],
1552
+ },
1553
+ {
1554
+ name: "Saudi Arabia",
1555
+ numeric: "682",
1556
+ alpha2: "SA",
1557
+ alpha3: "SAU",
1558
+ phoneCode: ["966"],
1559
+ },
1560
+ {
1561
+ name: "Senegal",
1562
+ numeric: "686",
1563
+ alpha2: "SN",
1564
+ alpha3: "SEN",
1565
+ phoneCode: ["221"],
1566
+ },
1567
+ {
1568
+ name: "Serbia",
1569
+ numeric: "688",
1570
+ alpha2: "RS",
1571
+ alpha3: "SRB",
1572
+ phoneCode: ["381"],
1573
+ },
1574
+ {
1575
+ name: "Seychelles",
1576
+ numeric: "690",
1577
+ alpha2: "SC",
1578
+ alpha3: "SYC",
1579
+ phoneCode: ["248"],
1580
+ },
1581
+ {
1582
+ name: "Sierra Leone",
1583
+ numeric: "694",
1584
+ alpha2: "SL",
1585
+ alpha3: "SLE",
1586
+ phoneCode: ["232"],
1587
+ },
1588
+ {
1589
+ name: "Singapore",
1590
+ numeric: "702",
1591
+ alpha2: "SG",
1592
+ alpha3: "SGP",
1593
+ phoneCode: ["65"],
1594
+ },
1595
+ {
1596
+ name: "Sint Maarten (Dutch part)",
1597
+ numeric: "534",
1598
+ alpha2: "SX",
1599
+ alpha3: "SXM",
1600
+ phoneCode: ["1-721"],
1601
+ },
1602
+ {
1603
+ name: "Slovakia",
1604
+ numeric: "703",
1605
+ alpha2: "SK",
1606
+ alpha3: "SVK",
1607
+ phoneCode: ["421"],
1608
+ },
1609
+ {
1610
+ name: "Slovenia",
1611
+ numeric: "705",
1612
+ alpha2: "SI",
1613
+ alpha3: "SVN",
1614
+ phoneCode: ["386"],
1615
+ },
1616
+ {
1617
+ name: "Solomon Islands",
1618
+ numeric: "090",
1619
+ alpha2: "SB",
1620
+ alpha3: "SLB",
1621
+ phoneCode: ["677"],
1622
+ },
1623
+ {
1624
+ name: "Somalia",
1625
+ numeric: "706",
1626
+ alpha2: "SO",
1627
+ alpha3: "SOM",
1628
+ phoneCode: ["252"],
1629
+ },
1630
+ {
1631
+ name: "South Africa",
1632
+ numeric: "710",
1633
+ alpha2: "ZA",
1634
+ alpha3: "ZAF",
1635
+ phoneCode: ["27"],
1636
+ },
1637
+ {
1638
+ name: "South Georgia and the South Sandwich Islands",
1639
+ numeric: "239",
1640
+ alpha2: "GS",
1641
+ alpha3: "SGS",
1642
+ phoneCode: ["500"],
1643
+ },
1644
+ {
1645
+ name: "South Sudan",
1646
+ numeric: "728",
1647
+ alpha2: "SS",
1648
+ alpha3: "SSD",
1649
+ phoneCode: ["211"],
1650
+ },
1651
+ {
1652
+ name: "Spain",
1653
+ numeric: "724",
1654
+ alpha2: "ES",
1655
+ alpha3: "ESP",
1656
+ phoneCode: ["34"],
1657
+ },
1658
+ {
1659
+ name: "Sri Lanka",
1660
+ numeric: "144",
1661
+ alpha2: "LK",
1662
+ alpha3: "LKA",
1663
+ phoneCode: ["94"],
1664
+ },
1665
+ {
1666
+ name: "Sudan",
1667
+ numeric: "729",
1668
+ alpha2: "SD",
1669
+ alpha3: "SDN",
1670
+ phoneCode: ["249"],
1671
+ },
1672
+ {
1673
+ name: "Suriname",
1674
+ numeric: "740",
1675
+ alpha2: "SR",
1676
+ alpha3: "SUR",
1677
+ phoneCode: ["597"],
1678
+ },
1679
+ {
1680
+ name: "Svalbard and Jan Mayen",
1681
+ numeric: "744",
1682
+ alpha2: "SJ",
1683
+ alpha3: "SJM",
1684
+ phoneCode: ["47"],
1685
+ },
1686
+ {
1687
+ name: "Swaziland",
1688
+ numeric: "748",
1689
+ alpha2: "SZ",
1690
+ alpha3: "SWZ",
1691
+ phoneCode: ["268"],
1692
+ },
1693
+ {
1694
+ name: "Sweden",
1695
+ numeric: "752",
1696
+ alpha2: "SE",
1697
+ alpha3: "SWE",
1698
+ phoneCode: ["46"],
1699
+ },
1700
+ {
1701
+ name: "Switzerland",
1702
+ numeric: "756",
1703
+ alpha2: "CH",
1704
+ alpha3: "CHE",
1705
+ phoneCode: ["41"],
1706
+ },
1707
+ {
1708
+ name: "Syrian Arab Republic",
1709
+ numeric: "760",
1710
+ alpha2: "SY",
1711
+ alpha3: "SYR",
1712
+ phoneCode: ["963"],
1713
+ },
1714
+ {
1715
+ name: "Taiwan, Province of China",
1716
+ numeric: "158",
1717
+ alpha2: "TW",
1718
+ alpha3: "TWN",
1719
+ phoneCode: ["886"],
1720
+ },
1721
+ {
1722
+ name: "Tajikistan",
1723
+ numeric: "762",
1724
+ alpha2: "TJ",
1725
+ alpha3: "TJK",
1726
+ phoneCode: ["992"],
1727
+ },
1728
+ {
1729
+ name: "Tanzania, United Republic of",
1730
+ numeric: "834",
1731
+ alpha2: "TZ",
1732
+ alpha3: "TZA",
1733
+ phoneCode: ["255"],
1734
+ },
1735
+ {
1736
+ name: "Thailand",
1737
+ numeric: "764",
1738
+ alpha2: "TH",
1739
+ alpha3: "THA",
1740
+ phoneCode: ["66"],
1741
+ },
1742
+ {
1743
+ name: "Timor-Leste",
1744
+ numeric: "626",
1745
+ alpha2: "TL",
1746
+ alpha3: "TLS",
1747
+ phoneCode: ["670"],
1748
+ },
1749
+ {
1750
+ name: "Togo",
1751
+ numeric: "768",
1752
+ alpha2: "TG",
1753
+ alpha3: "TGO",
1754
+ phoneCode: ["228"],
1755
+ },
1756
+ {
1757
+ name: "Tokelau",
1758
+ numeric: "772",
1759
+ alpha2: "TK",
1760
+ alpha3: "TKL",
1761
+ phoneCode: ["690"],
1762
+ },
1763
+ {
1764
+ name: "Tonga",
1765
+ numeric: "776",
1766
+ alpha2: "TO",
1767
+ alpha3: "TON",
1768
+ phoneCode: ["676"],
1769
+ },
1770
+ {
1771
+ name: "Trinidad and Tobago",
1772
+ numeric: "780",
1773
+ alpha2: "TT",
1774
+ alpha3: "TTO",
1775
+ phoneCode: ["1-868"],
1776
+ },
1777
+ {
1778
+ name: "Tunisia",
1779
+ numeric: "788",
1780
+ alpha2: "TN",
1781
+ alpha3: "TUN",
1782
+ phoneCode: ["216"],
1783
+ },
1784
+ {
1785
+ name: "Turkey",
1786
+ numeric: "792",
1787
+ alpha2: "TR",
1788
+ alpha3: "TUR",
1789
+ phoneCode: ["90"],
1790
+ },
1791
+ {
1792
+ name: "Turkmenistan",
1793
+ numeric: "795",
1794
+ alpha2: "TM",
1795
+ alpha3: "TKM",
1796
+ phoneCode: ["993"],
1797
+ },
1798
+ {
1799
+ name: "Turks and Caicos Islands",
1800
+ numeric: "796",
1801
+ alpha2: "TC",
1802
+ alpha3: "TCA",
1803
+ phoneCode: ["1-649"],
1804
+ },
1805
+ {
1806
+ name: "Tuvalu",
1807
+ numeric: "798",
1808
+ alpha2: "TV",
1809
+ alpha3: "TUV",
1810
+ phoneCode: ["688"],
1811
+ },
1812
+ {
1813
+ name: "Uganda",
1814
+ numeric: "800",
1815
+ alpha2: "UG",
1816
+ alpha3: "UGA",
1817
+ phoneCode: ["256"],
1818
+ },
1819
+ {
1820
+ name: "Ukraine",
1821
+ numeric: "804",
1822
+ alpha2: "UA",
1823
+ alpha3: "UKR",
1824
+ phoneCode: ["380"],
1825
+ },
1826
+ {
1827
+ name: "United Arab Emirates",
1828
+ numeric: "784",
1829
+ alpha2: "AE",
1830
+ alpha3: "ARE",
1831
+ phoneCode: ["971"],
1832
+ },
1833
+ {
1834
+ name: "United Kingdom of Great Britain and Northern Ireland",
1835
+ numeric: "826",
1836
+ alpha2: "GB",
1837
+ alpha3: "GBR",
1838
+ phoneCode: ["44"],
1839
+ },
1840
+ {
1841
+ name: "United States of America",
1842
+ numeric: "840",
1843
+ alpha2: "US",
1844
+ alpha3: "USA",
1845
+ phoneCode: ["1"],
1846
+ },
1847
+ {
1848
+ name: "United States Minor Outlying Islands",
1849
+ numeric: "581",
1850
+ alpha2: "UM",
1851
+ alpha3: "UMI",
1852
+ phoneCode: ["1"],
1853
+ },
1854
+ {
1855
+ name: "Uruguay",
1856
+ numeric: "858",
1857
+ alpha2: "UY",
1858
+ alpha3: "URY",
1859
+ phoneCode: ["598"],
1860
+ },
1861
+ {
1862
+ name: "Uzbekistan",
1863
+ numeric: "860",
1864
+ alpha2: "UZ",
1865
+ alpha3: "UZB",
1866
+ phoneCode: ["998"],
1867
+ },
1868
+ {
1869
+ name: "Vanuatu",
1870
+ numeric: "548",
1871
+ alpha2: "VU",
1872
+ alpha3: "VUT",
1873
+ phoneCode: ["678"],
1874
+ },
1875
+ {
1876
+ name: "Venezuela (Bolivarian Republic of)",
1877
+ numeric: "862",
1878
+ alpha2: "VE",
1879
+ alpha3: "VEN",
1880
+ phoneCode: ["58"],
1881
+ },
1882
+ {
1883
+ name: "Vietnam",
1884
+ numeric: "704",
1885
+ alpha2: "VN",
1886
+ alpha3: "VNM",
1887
+ phoneCode: ["84"],
1888
+ },
1889
+ {
1890
+ name: "Virgin Islands (British)",
1891
+ numeric: "092",
1892
+ alpha2: "VG",
1893
+ alpha3: "VGB",
1894
+ phoneCode: ["1-284"],
1895
+ },
1896
+ {
1897
+ name: "Virgin Islands (U.S.)",
1898
+ numeric: "850",
1899
+ alpha2: "VI",
1900
+ alpha3: "VIR",
1901
+ phoneCode: ["1-340"],
1902
+ },
1903
+ {
1904
+ name: "Wallis and Futuna",
1905
+ numeric: "876",
1906
+ alpha2: "WF",
1907
+ alpha3: "WLF",
1908
+ phoneCode: ["681"],
1909
+ },
1910
+ {
1911
+ name: "Western Sahara",
1912
+ numeric: "732",
1913
+ alpha2: "EH",
1914
+ alpha3: "ESH",
1915
+ phoneCode: ["212"],
1916
+ },
1917
+ {
1918
+ name: "Yemen",
1919
+ numeric: "887",
1920
+ alpha2: "YE",
1921
+ alpha3: "YEM",
1922
+ phoneCode: ["967"],
1923
+ },
1924
+ {
1925
+ name: "Zambia",
1926
+ numeric: "894",
1927
+ alpha2: "ZM",
1928
+ alpha3: "ZMB",
1929
+ phoneCode: ["260"],
1930
+ },
1931
+ {
1932
+ name: "Zimbabwe",
1933
+ numeric: "716",
1934
+ alpha2: "ZW",
1935
+ alpha3: "ZWE",
1936
+ phoneCode: ["263"],
1937
+ },
1938
+ ];
1939
+ }
1940
+ exports.IsoCountries = IsoCountries;
1941
+ //# sourceMappingURL=IsoCountries.js.map