@evercamps/evercamps 2.0.1

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 (4510) hide show
  1. package/.swcrc +27 -0
  2. package/README.md +101 -0
  3. package/dist/bin/build/client/index.d.ts +1 -0
  4. package/dist/bin/build/client/index.js +20 -0
  5. package/dist/bin/build/client/index.js.map +1 -0
  6. package/dist/bin/build/complie.d.ts +1 -0
  7. package/dist/bin/build/complie.js +25 -0
  8. package/dist/bin/build/complie.js.map +1 -0
  9. package/dist/bin/build/index.d.ts +1 -0
  10. package/dist/bin/build/index.js +76 -0
  11. package/dist/bin/build/index.js.map +1 -0
  12. package/dist/bin/build/initEnvBuild.d.ts +1 -0
  13. package/dist/bin/build/initEnvBuild.js +4 -0
  14. package/dist/bin/build/initEnvBuild.js.map +1 -0
  15. package/dist/bin/build/server/index.d.ts +1 -0
  16. package/dist/bin/build/server/index.js +21 -0
  17. package/dist/bin/build/server/index.js.map +1 -0
  18. package/dist/bin/build/server/useDDL.d.ts +1 -0
  19. package/dist/bin/build/server/useDDL.js +210 -0
  20. package/dist/bin/build/server/useDDL.js.map +1 -0
  21. package/dist/bin/build/server/useVendorChunk.d.ts +1 -0
  22. package/dist/bin/build/server/useVendorChunk.js +76 -0
  23. package/dist/bin/build/server/useVendorChunk.js.map +1 -0
  24. package/dist/bin/dev/compileTs.d.ts +1 -0
  25. package/dist/bin/dev/compileTs.js +17 -0
  26. package/dist/bin/dev/compileTs.js.map +1 -0
  27. package/dist/bin/dev/enableWatcher.d.ts +1 -0
  28. package/dist/bin/dev/enableWatcher.js +33 -0
  29. package/dist/bin/dev/enableWatcher.js.map +1 -0
  30. package/dist/bin/dev/hooks.d.ts +2 -0
  31. package/dist/bin/dev/hooks.js +29 -0
  32. package/dist/bin/dev/hooks.js.map +1 -0
  33. package/dist/bin/dev/index.d.ts +1 -0
  34. package/dist/bin/dev/index.js +38 -0
  35. package/dist/bin/dev/index.js.map +1 -0
  36. package/dist/bin/dev/init.d.ts +2 -0
  37. package/dist/bin/dev/init.js +35 -0
  38. package/dist/bin/dev/init.js.map +1 -0
  39. package/dist/bin/dev/initEnvDev.d.ts +1 -0
  40. package/dist/bin/dev/initEnvDev.js +4 -0
  41. package/dist/bin/dev/initEnvDev.js.map +1 -0
  42. package/dist/bin/dev/register.d.ts +2 -0
  43. package/dist/bin/dev/register.js +16 -0
  44. package/dist/bin/dev/register.js.map +1 -0
  45. package/dist/bin/evercamps.d.ts +2 -0
  46. package/dist/bin/evercamps.js +44 -0
  47. package/dist/bin/evercamps.js.map +1 -0
  48. package/dist/bin/extension/index.d.ts +2 -0
  49. package/dist/bin/extension/index.js +65 -0
  50. package/dist/bin/extension/index.js.map +1 -0
  51. package/dist/bin/install/createMigrationTable.d.ts +1 -0
  52. package/dist/bin/install/createMigrationTable.js +12 -0
  53. package/dist/bin/install/createMigrationTable.js.map +1 -0
  54. package/dist/bin/install/index.d.ts +1 -0
  55. package/dist/bin/install/index.js +246 -0
  56. package/dist/bin/install/index.js.map +1 -0
  57. package/dist/bin/install/templates/config.json +17 -0
  58. package/dist/bin/lib/addDefaultMiddlewareFuncs.d.ts +1 -0
  59. package/dist/bin/lib/addDefaultMiddlewareFuncs.js +281 -0
  60. package/dist/bin/lib/addDefaultMiddlewareFuncs.js.map +1 -0
  61. package/dist/bin/lib/app.d.ts +1 -0
  62. package/dist/bin/lib/app.js +75 -0
  63. package/dist/bin/lib/app.js.map +1 -0
  64. package/dist/bin/lib/bootstrap/bootstrap.d.ts +13 -0
  65. package/dist/bin/lib/bootstrap/bootstrap.js +20 -0
  66. package/dist/bin/lib/bootstrap/bootstrap.js.map +1 -0
  67. package/dist/bin/lib/bootstrap/migrate.d.ts +1 -0
  68. package/dist/bin/lib/bootstrap/migrate.js +74 -0
  69. package/dist/bin/lib/bootstrap/migrate.js.map +1 -0
  70. package/dist/bin/lib/buildEntry.d.ts +4 -0
  71. package/dist/bin/lib/buildEntry.js +129 -0
  72. package/dist/bin/lib/buildEntry.js.map +1 -0
  73. package/dist/bin/lib/findRoute.d.ts +1 -0
  74. package/dist/bin/lib/findRoute.js +25 -0
  75. package/dist/bin/lib/findRoute.js.map +1 -0
  76. package/dist/bin/lib/loadModules.d.ts +9 -0
  77. package/dist/bin/lib/loadModules.js +99 -0
  78. package/dist/bin/lib/loadModules.js.map +1 -0
  79. package/dist/bin/lib/normalizePort.d.ts +4 -0
  80. package/dist/bin/lib/normalizePort.js +15 -0
  81. package/dist/bin/lib/normalizePort.js.map +1 -0
  82. package/dist/bin/lib/onError.d.ts +4 -0
  83. package/dist/bin/lib/onError.js +26 -0
  84. package/dist/bin/lib/onError.js.map +1 -0
  85. package/dist/bin/lib/onListening.d.ts +4 -0
  86. package/dist/bin/lib/onListening.js +19 -0
  87. package/dist/bin/lib/onListening.js.map +1 -0
  88. package/dist/bin/lib/prepare.d.ts +1 -0
  89. package/dist/bin/lib/prepare.js +68 -0
  90. package/dist/bin/lib/prepare.js.map +1 -0
  91. package/dist/bin/lib/startCronProcess.d.ts +1 -0
  92. package/dist/bin/lib/startCronProcess.js +28 -0
  93. package/dist/bin/lib/startCronProcess.js.map +1 -0
  94. package/dist/bin/lib/startSubscriberProcess.d.ts +1 -0
  95. package/dist/bin/lib/startSubscriberProcess.js +28 -0
  96. package/dist/bin/lib/startSubscriberProcess.js.map +1 -0
  97. package/dist/bin/lib/startUp.d.ts +1 -0
  98. package/dist/bin/lib/startUp.js +94 -0
  99. package/dist/bin/lib/startUp.js.map +1 -0
  100. package/dist/bin/lib/watch/broadcast.d.ts +1 -0
  101. package/dist/bin/lib/watch/broadcast.js +16 -0
  102. package/dist/bin/lib/watch/broadcast.js.map +1 -0
  103. package/dist/bin/lib/watch/compileSwc.d.ts +2 -0
  104. package/dist/bin/lib/watch/compileSwc.js +63 -0
  105. package/dist/bin/lib/watch/compileSwc.js.map +1 -0
  106. package/dist/bin/lib/watch/effect.d.ts +5 -0
  107. package/dist/bin/lib/watch/effect.js +206 -0
  108. package/dist/bin/lib/watch/effect.js.map +1 -0
  109. package/dist/bin/lib/watch/getDistPaths.d.ts +2 -0
  110. package/dist/bin/lib/watch/getDistPaths.js +4 -0
  111. package/dist/bin/lib/watch/getDistPaths.js.map +1 -0
  112. package/dist/bin/lib/watch/getRootPaths.d.ts +7 -0
  113. package/dist/bin/lib/watch/getRootPaths.js +23 -0
  114. package/dist/bin/lib/watch/getRootPaths.js.map +1 -0
  115. package/dist/bin/lib/watch/getSrcPaths.d.ts +2 -0
  116. package/dist/bin/lib/watch/getSrcPaths.js +14 -0
  117. package/dist/bin/lib/watch/getSrcPaths.js.map +1 -0
  118. package/dist/bin/lib/watch/isDist.d.ts +1 -0
  119. package/dist/bin/lib/watch/isDist.js +11 -0
  120. package/dist/bin/lib/watch/isDist.js.map +1 -0
  121. package/dist/bin/lib/watch/isRestartRequired.d.ts +2 -0
  122. package/dist/bin/lib/watch/isRestartRequired.js +22 -0
  123. package/dist/bin/lib/watch/isRestartRequired.js.map +1 -0
  124. package/dist/bin/lib/watch/isSrc.d.ts +1 -0
  125. package/dist/bin/lib/watch/isSrc.js +11 -0
  126. package/dist/bin/lib/watch/isSrc.js.map +1 -0
  127. package/dist/bin/lib/watch/processors/addAdminRoute.d.ts +3 -0
  128. package/dist/bin/lib/watch/processors/addAdminRoute.js +19 -0
  129. package/dist/bin/lib/watch/processors/addAdminRoute.js.map +1 -0
  130. package/dist/bin/lib/watch/processors/addApiRoute.d.ts +3 -0
  131. package/dist/bin/lib/watch/processors/addApiRoute.js +42 -0
  132. package/dist/bin/lib/watch/processors/addApiRoute.js.map +1 -0
  133. package/dist/bin/lib/watch/processors/addComponent.d.ts +3 -0
  134. package/dist/bin/lib/watch/processors/addComponent.js +11 -0
  135. package/dist/bin/lib/watch/processors/addComponent.js.map +1 -0
  136. package/dist/bin/lib/watch/processors/addFrontStoreRoute.d.ts +3 -0
  137. package/dist/bin/lib/watch/processors/addFrontStoreRoute.js +19 -0
  138. package/dist/bin/lib/watch/processors/addFrontStoreRoute.js.map +1 -0
  139. package/dist/bin/lib/watch/processors/addMiddleware.d.ts +3 -0
  140. package/dist/bin/lib/watch/processors/addMiddleware.js +13 -0
  141. package/dist/bin/lib/watch/processors/addMiddleware.js.map +1 -0
  142. package/dist/bin/lib/watch/processors/deleteARoute.d.ts +3 -0
  143. package/dist/bin/lib/watch/processors/deleteARoute.js +18 -0
  144. package/dist/bin/lib/watch/processors/deleteARoute.js.map +1 -0
  145. package/dist/bin/lib/watch/processors/index.d.ts +6 -0
  146. package/dist/bin/lib/watch/processors/index.js +38 -0
  147. package/dist/bin/lib/watch/processors/index.js.map +1 -0
  148. package/dist/bin/lib/watch/processors/removeMiddleware.d.ts +3 -0
  149. package/dist/bin/lib/watch/processors/removeMiddleware.js +13 -0
  150. package/dist/bin/lib/watch/processors/removeMiddleware.js.map +1 -0
  151. package/dist/bin/lib/watch/processors/restart.d.ts +1 -0
  152. package/dist/bin/lib/watch/processors/restart.js +4 -0
  153. package/dist/bin/lib/watch/processors/restart.js.map +1 -0
  154. package/dist/bin/lib/watch/processors/restartCronJob.d.ts +1 -0
  155. package/dist/bin/lib/watch/processors/restartCronJob.js +4 -0
  156. package/dist/bin/lib/watch/processors/restartCronJob.js.map +1 -0
  157. package/dist/bin/lib/watch/processors/restartSubscriber.d.ts +1 -0
  158. package/dist/bin/lib/watch/processors/restartSubscriber.js +4 -0
  159. package/dist/bin/lib/watch/processors/restartSubscriber.js.map +1 -0
  160. package/dist/bin/lib/watch/processors/touch.d.ts +1 -0
  161. package/dist/bin/lib/watch/processors/touch.js +7 -0
  162. package/dist/bin/lib/watch/processors/touch.js.map +1 -0
  163. package/dist/bin/lib/watch/processors/updateAdminRoute.d.ts +3 -0
  164. package/dist/bin/lib/watch/processors/updateAdminRoute.js +15 -0
  165. package/dist/bin/lib/watch/processors/updateAdminRoute.js.map +1 -0
  166. package/dist/bin/lib/watch/processors/updateApiRoute.d.ts +3 -0
  167. package/dist/bin/lib/watch/processors/updateApiRoute.js +15 -0
  168. package/dist/bin/lib/watch/processors/updateApiRoute.js.map +1 -0
  169. package/dist/bin/lib/watch/processors/updateFrontStoreRoute.d.ts +3 -0
  170. package/dist/bin/lib/watch/processors/updateFrontStoreRoute.js +15 -0
  171. package/dist/bin/lib/watch/processors/updateFrontStoreRoute.js.map +1 -0
  172. package/dist/bin/lib/watch/watchHandler.d.ts +10 -0
  173. package/dist/bin/lib/watch/watchHandler.js +72 -0
  174. package/dist/bin/lib/watch/watchHandler.js.map +1 -0
  175. package/dist/bin/start/index.d.ts +1 -0
  176. package/dist/bin/start/index.js +18 -0
  177. package/dist/bin/start/index.js.map +1 -0
  178. package/dist/bin/start/initEnvStart.d.ts +1 -0
  179. package/dist/bin/start/initEnvStart.js +4 -0
  180. package/dist/bin/start/initEnvStart.js.map +1 -0
  181. package/dist/bin/user/changePassword.d.ts +1 -0
  182. package/dist/bin/user/changePassword.js +61 -0
  183. package/dist/bin/user/changePassword.js.map +1 -0
  184. package/dist/bin/user/create.d.ts +1 -0
  185. package/dist/bin/user/create.js +72 -0
  186. package/dist/bin/user/create.js.map +1 -0
  187. package/dist/components/admin/auth/AuthContext.d.ts +3 -0
  188. package/dist/components/admin/auth/AuthContext.js +18 -0
  189. package/dist/components/admin/auth/AuthContext.js.map +1 -0
  190. package/dist/components/admin/camp/participantEdit/AddCustomer.d.ts +18 -0
  191. package/dist/components/admin/camp/participantEdit/AddCustomer.js +41 -0
  192. package/dist/components/admin/camp/participantEdit/AddCustomer.js.map +1 -0
  193. package/dist/components/admin/camp/participantEdit/AddRegistrations.d.ts +20 -0
  194. package/dist/components/admin/camp/participantEdit/AddRegistrations.js +39 -0
  195. package/dist/components/admin/camp/participantEdit/AddRegistrations.js.map +1 -0
  196. package/dist/components/admin/camp/participantEdit/CustomerSelector.d.ts +22 -0
  197. package/dist/components/admin/camp/participantEdit/CustomerSelector.js +128 -0
  198. package/dist/components/admin/camp/participantEdit/CustomerSelector.js.map +1 -0
  199. package/dist/components/admin/camp/participantGrid/rows/ParticipantFirstName.d.ts +10 -0
  200. package/dist/components/admin/camp/participantGrid/rows/ParticipantFirstName.js +14 -0
  201. package/dist/components/admin/camp/participantGrid/rows/ParticipantFirstName.js.map +1 -0
  202. package/dist/components/admin/camp/participantGrid/rows/ParticipantLastName.d.ts +10 -0
  203. package/dist/components/admin/camp/participantGrid/rows/ParticipantLastName.js +14 -0
  204. package/dist/components/admin/camp/participantGrid/rows/ParticipantLastName.js.map +1 -0
  205. package/dist/components/admin/catalog/attributeGrid/headers/GroupHeader.d.ts +16 -0
  206. package/dist/components/admin/catalog/attributeGrid/headers/GroupHeader.js +56 -0
  207. package/dist/components/admin/catalog/attributeGrid/headers/GroupHeader.js.map +1 -0
  208. package/dist/components/admin/catalog/attributeGrid/rows/AttributeName.d.ts +12 -0
  209. package/dist/components/admin/catalog/attributeGrid/rows/AttributeName.js +12 -0
  210. package/dist/components/admin/catalog/attributeGrid/rows/AttributeName.js.map +1 -0
  211. package/dist/components/admin/catalog/attributeGrid/rows/GroupRow.d.ts +10 -0
  212. package/dist/components/admin/catalog/attributeGrid/rows/GroupRow.js +58 -0
  213. package/dist/components/admin/catalog/attributeGrid/rows/GroupRow.js.map +1 -0
  214. package/dist/components/admin/catalog/categoryGrid/rows/CategoryName.d.ts +10 -0
  215. package/dist/components/admin/catalog/categoryGrid/rows/CategoryName.js +16 -0
  216. package/dist/components/admin/catalog/categoryGrid/rows/CategoryName.js.map +1 -0
  217. package/dist/components/admin/catalog/collection/collectionEdit/AddProducts.d.ts +18 -0
  218. package/dist/components/admin/catalog/collection/collectionEdit/AddProducts.js +37 -0
  219. package/dist/components/admin/catalog/collection/collectionEdit/AddProducts.js.map +1 -0
  220. package/dist/components/admin/catalog/collectionGrid/rows/CollectionNameRow.d.ts +12 -0
  221. package/dist/components/admin/catalog/collectionGrid/rows/CollectionNameRow.js +12 -0
  222. package/dist/components/admin/catalog/collectionGrid/rows/CollectionNameRow.js.map +1 -0
  223. package/dist/components/admin/catalog/productEdit/category/CategoryItem.d.ts +20 -0
  224. package/dist/components/admin/catalog/productEdit/category/CategoryItem.js +76 -0
  225. package/dist/components/admin/catalog/productEdit/category/CategoryItem.js.map +1 -0
  226. package/dist/components/admin/catalog/productEdit/category/CategoryTree.d.ts +12 -0
  227. package/dist/components/admin/catalog/productEdit/category/CategoryTree.js +65 -0
  228. package/dist/components/admin/catalog/productEdit/category/CategoryTree.js.map +1 -0
  229. package/dist/components/admin/catalog/productEdit/category/CategoryTree.scss +15 -0
  230. package/dist/components/admin/catalog/productEdit/media/ProductMediaManager.d.ts +14 -0
  231. package/dist/components/admin/catalog/productEdit/media/ProductMediaManager.js +163 -0
  232. package/dist/components/admin/catalog/productEdit/media/ProductMediaManager.js.map +1 -0
  233. package/dist/components/admin/catalog/productEdit/media/ProductMediaManager.scss +76 -0
  234. package/dist/components/admin/catalog/productEdit/variants/CreateVariant.d.ts +19 -0
  235. package/dist/components/admin/catalog/productEdit/variants/CreateVariant.js +48 -0
  236. package/dist/components/admin/catalog/productEdit/variants/CreateVariant.js.map +1 -0
  237. package/dist/components/admin/catalog/productEdit/variants/CreateVariantGroup.d.ts +11 -0
  238. package/dist/components/admin/catalog/productEdit/variants/CreateVariantGroup.js +101 -0
  239. package/dist/components/admin/catalog/productEdit/variants/CreateVariantGroup.js.map +1 -0
  240. package/dist/components/admin/catalog/productEdit/variants/EditVariant.d.ts +15 -0
  241. package/dist/components/admin/catalog/productEdit/variants/EditVariant.js +67 -0
  242. package/dist/components/admin/catalog/productEdit/variants/EditVariant.js.map +1 -0
  243. package/dist/components/admin/catalog/productEdit/variants/New.d.ts +11 -0
  244. package/dist/components/admin/catalog/productEdit/variants/New.js +29 -0
  245. package/dist/components/admin/catalog/productEdit/variants/New.js.map +1 -0
  246. package/dist/components/admin/catalog/productEdit/variants/Search.d.ts +11 -0
  247. package/dist/components/admin/catalog/productEdit/variants/Search.js +31 -0
  248. package/dist/components/admin/catalog/productEdit/variants/Search.js.map +1 -0
  249. package/dist/components/admin/catalog/productEdit/variants/SearchModal.d.ts +15 -0
  250. package/dist/components/admin/catalog/productEdit/variants/SearchModal.js +115 -0
  251. package/dist/components/admin/catalog/productEdit/variants/SearchModal.js.map +1 -0
  252. package/dist/components/admin/catalog/productEdit/variants/SubmitButton.d.ts +21 -0
  253. package/dist/components/admin/catalog/productEdit/variants/SubmitButton.js +111 -0
  254. package/dist/components/admin/catalog/productEdit/variants/SubmitButton.js.map +1 -0
  255. package/dist/components/admin/catalog/productEdit/variants/Variant.d.ts +15 -0
  256. package/dist/components/admin/catalog/productEdit/variants/Variant.js +36 -0
  257. package/dist/components/admin/catalog/productEdit/variants/Variant.js.map +1 -0
  258. package/dist/components/admin/catalog/productEdit/variants/VariantModal.d.ts +19 -0
  259. package/dist/components/admin/catalog/productEdit/variants/VariantModal.js +116 -0
  260. package/dist/components/admin/catalog/productEdit/variants/VariantModal.js.map +1 -0
  261. package/dist/components/admin/catalog/productEdit/variants/VariantType.d.ts +1 -0
  262. package/dist/components/admin/catalog/productEdit/variants/VariantType.js +18 -0
  263. package/dist/components/admin/catalog/productEdit/variants/VariantType.js.map +1 -0
  264. package/dist/components/admin/catalog/productEdit/variants/Variants.d.ts +26 -0
  265. package/dist/components/admin/catalog/productEdit/variants/Variants.js +124 -0
  266. package/dist/components/admin/catalog/productEdit/variants/Variants.js.map +1 -0
  267. package/dist/components/admin/catalog/productEdit/variants/Variants.scss +50 -0
  268. package/dist/components/admin/catalog/productGrid/rows/PriceRow.d.ts +12 -0
  269. package/dist/components/admin/catalog/productGrid/rows/PriceRow.js +19 -0
  270. package/dist/components/admin/catalog/productGrid/rows/PriceRow.js.map +1 -0
  271. package/dist/components/admin/catalog/productGrid/rows/ProductName.d.ts +12 -0
  272. package/dist/components/admin/catalog/productGrid/rows/ProductName.js +12 -0
  273. package/dist/components/admin/catalog/productGrid/rows/ProductName.js.map +1 -0
  274. package/dist/components/admin/catalog/productGrid/rows/QtyRow.d.ts +10 -0
  275. package/dist/components/admin/catalog/productGrid/rows/QtyRow.js +11 -0
  276. package/dist/components/admin/catalog/productGrid/rows/QtyRow.js.map +1 -0
  277. package/dist/components/admin/catalog/productGrid/rows/ThumbnailRow.d.ts +12 -0
  278. package/dist/components/admin/catalog/productGrid/rows/ThumbnailRow.js +14 -0
  279. package/dist/components/admin/catalog/productGrid/rows/ThumbnailRow.js.map +1 -0
  280. package/dist/components/admin/checkout/shippingSetting/Method.d.ts +25 -0
  281. package/dist/components/admin/checkout/shippingSetting/Method.js +95 -0
  282. package/dist/components/admin/checkout/shippingSetting/Method.js.map +1 -0
  283. package/dist/components/admin/checkout/shippingSetting/MethodForm.d.ts +20 -0
  284. package/dist/components/admin/checkout/shippingSetting/MethodForm.js +211 -0
  285. package/dist/components/admin/checkout/shippingSetting/MethodForm.js.map +1 -0
  286. package/dist/components/admin/checkout/shippingSetting/Methods.d.ts +13 -0
  287. package/dist/components/admin/checkout/shippingSetting/Methods.js +40 -0
  288. package/dist/components/admin/checkout/shippingSetting/Methods.js.map +1 -0
  289. package/dist/components/admin/checkout/shippingSetting/PriceBasedPrice.d.ts +14 -0
  290. package/dist/components/admin/checkout/shippingSetting/PriceBasedPrice.js +58 -0
  291. package/dist/components/admin/checkout/shippingSetting/PriceBasedPrice.js.map +1 -0
  292. package/dist/components/admin/checkout/shippingSetting/WeightBasedPrice.d.ts +14 -0
  293. package/dist/components/admin/checkout/shippingSetting/WeightBasedPrice.js +58 -0
  294. package/dist/components/admin/checkout/shippingSetting/WeightBasedPrice.js.map +1 -0
  295. package/dist/components/admin/checkout/shippingSetting/Zone.d.ts +14 -0
  296. package/dist/components/admin/checkout/shippingSetting/Zone.js +91 -0
  297. package/dist/components/admin/checkout/shippingSetting/Zone.js.map +1 -0
  298. package/dist/components/admin/checkout/shippingSetting/ZoneForm.d.ts +26 -0
  299. package/dist/components/admin/checkout/shippingSetting/ZoneForm.js +74 -0
  300. package/dist/components/admin/checkout/shippingSetting/ZoneForm.js.map +1 -0
  301. package/dist/components/admin/checkout/shippingSetting/Zones.d.ts +13 -0
  302. package/dist/components/admin/checkout/shippingSetting/Zones.js +35 -0
  303. package/dist/components/admin/checkout/shippingSetting/Zones.js.map +1 -0
  304. package/dist/components/admin/cms/Card.d.ts +50 -0
  305. package/dist/components/admin/cms/Card.js +75 -0
  306. package/dist/components/admin/cms/Card.js.map +1 -0
  307. package/dist/components/admin/cms/Card.scss +38 -0
  308. package/dist/components/admin/cms/NavigationItem.d.ts +8 -0
  309. package/dist/components/admin/cms/NavigationItem.js +27 -0
  310. package/dist/components/admin/cms/NavigationItem.js.map +1 -0
  311. package/dist/components/admin/cms/NavigationItem.scss +10 -0
  312. package/dist/components/admin/cms/NavigationItemGroup.d.ts +19 -0
  313. package/dist/components/admin/cms/NavigationItemGroup.js +25 -0
  314. package/dist/components/admin/cms/NavigationItemGroup.js.map +1 -0
  315. package/dist/components/admin/cms/NavigationItemGroup.scss +32 -0
  316. package/dist/components/admin/cms/PageHeading.d.ts +16 -0
  317. package/dist/components/admin/cms/PageHeading.js +61 -0
  318. package/dist/components/admin/cms/PageHeading.js.map +1 -0
  319. package/dist/components/admin/cms/PageHeading.scss +19 -0
  320. package/dist/components/admin/cms/Title.d.ts +10 -0
  321. package/dist/components/admin/cms/Title.js +9 -0
  322. package/dist/components/admin/cms/Title.js.map +1 -0
  323. package/dist/components/admin/cms/cmsPageGrid/rows/NameRow.d.ts +16 -0
  324. package/dist/components/admin/cms/cmsPageGrid/rows/NameRow.js +15 -0
  325. package/dist/components/admin/cms/cmsPageGrid/rows/NameRow.js.map +1 -0
  326. package/dist/components/admin/cms/cmsPageGrid/rows/PageName.d.ts +12 -0
  327. package/dist/components/admin/cms/cmsPageGrid/rows/PageName.js +12 -0
  328. package/dist/components/admin/cms/cmsPageGrid/rows/PageName.js.map +1 -0
  329. package/dist/components/admin/cms/navigation/DashboardMenuItem.d.ts +10 -0
  330. package/dist/components/admin/cms/navigation/DashboardMenuItem.js +11 -0
  331. package/dist/components/admin/cms/navigation/DashboardMenuItem.js.map +1 -0
  332. package/dist/components/admin/cms/navigation/PagesMenuItem.d.ts +10 -0
  333. package/dist/components/admin/cms/navigation/PagesMenuItem.js +11 -0
  334. package/dist/components/admin/cms/navigation/PagesMenuItem.js.map +1 -0
  335. package/dist/components/admin/cms/widget/WidgetTypes.d.ts +10 -0
  336. package/dist/components/admin/cms/widget/WidgetTypes.js +14 -0
  337. package/dist/components/admin/cms/widget/WidgetTypes.js.map +1 -0
  338. package/dist/components/admin/cms/widget/grid/WidgetTypeRow.d.ts +12 -0
  339. package/dist/components/admin/cms/widget/grid/WidgetTypeRow.js +21 -0
  340. package/dist/components/admin/cms/widget/grid/WidgetTypeRow.js.map +1 -0
  341. package/dist/components/admin/customer/customerGrid/rows/CreateAt.d.ts +10 -0
  342. package/dist/components/admin/customer/customerGrid/rows/CreateAt.js +11 -0
  343. package/dist/components/admin/customer/customerGrid/rows/CreateAt.js.map +1 -0
  344. package/dist/components/admin/customer/customerGrid/rows/CustomerName.d.ts +12 -0
  345. package/dist/components/admin/customer/customerGrid/rows/CustomerName.js +12 -0
  346. package/dist/components/admin/customer/customerGrid/rows/CustomerName.js.map +1 -0
  347. package/dist/components/admin/index.d.ts +4 -0
  348. package/dist/components/admin/index.js +5 -0
  349. package/dist/components/admin/index.js.map +1 -0
  350. package/dist/components/admin/oms/orderEdit/Shipment.d.ts +23 -0
  351. package/dist/components/admin/oms/orderEdit/Shipment.js +173 -0
  352. package/dist/components/admin/oms/orderEdit/Shipment.js.map +1 -0
  353. package/dist/components/admin/oms/orderEdit/items/ItemOptions.d.ts +9 -0
  354. package/dist/components/admin/oms/orderEdit/items/ItemOptions.js +37 -0
  355. package/dist/components/admin/oms/orderEdit/items/ItemOptions.js.map +1 -0
  356. package/dist/components/admin/oms/orderEdit/items/ItemVariantOptions.d.ts +13 -0
  357. package/dist/components/admin/oms/orderEdit/items/ItemVariantOptions.js +24 -0
  358. package/dist/components/admin/oms/orderEdit/items/ItemVariantOptions.js.map +1 -0
  359. package/dist/components/admin/oms/orderEdit/items/Name.d.ts +20 -0
  360. package/dist/components/admin/oms/orderEdit/items/Name.js +47 -0
  361. package/dist/components/admin/oms/orderEdit/items/Name.js.map +1 -0
  362. package/dist/components/admin/oms/orderEdit/items/Price.d.ts +11 -0
  363. package/dist/components/admin/oms/orderEdit/items/Price.js +15 -0
  364. package/dist/components/admin/oms/orderEdit/items/Price.js.map +1 -0
  365. package/dist/components/admin/oms/orderEdit/items/Thumbnail.d.ts +15 -0
  366. package/dist/components/admin/oms/orderEdit/items/Thumbnail.js +19 -0
  367. package/dist/components/admin/oms/orderEdit/items/Thumbnail.js.map +1 -0
  368. package/dist/components/admin/oms/orderEdit/payment/Discount.d.ts +17 -0
  369. package/dist/components/admin/oms/orderEdit/payment/Discount.js +18 -0
  370. package/dist/components/admin/oms/orderEdit/payment/Discount.js.map +1 -0
  371. package/dist/components/admin/oms/orderEdit/payment/Shipping.d.ts +11 -0
  372. package/dist/components/admin/oms/orderEdit/payment/Shipping.js +14 -0
  373. package/dist/components/admin/oms/orderEdit/payment/Shipping.js.map +1 -0
  374. package/dist/components/admin/oms/orderEdit/payment/SubTotal.d.ts +11 -0
  375. package/dist/components/admin/oms/orderEdit/payment/SubTotal.js +16 -0
  376. package/dist/components/admin/oms/orderEdit/payment/SubTotal.js.map +1 -0
  377. package/dist/components/admin/oms/orderEdit/payment/Tax.d.ts +11 -0
  378. package/dist/components/admin/oms/orderEdit/payment/Tax.js +15 -0
  379. package/dist/components/admin/oms/orderEdit/payment/Tax.js.map +1 -0
  380. package/dist/components/admin/oms/orderEdit/payment/Total.d.ts +9 -0
  381. package/dist/components/admin/oms/orderEdit/payment/Total.js +13 -0
  382. package/dist/components/admin/oms/orderEdit/payment/Total.js.map +1 -0
  383. package/dist/components/admin/oms/orderGrid/headers/OrderDateColumnHeader.d.ts +12 -0
  384. package/dist/components/admin/oms/orderGrid/headers/OrderDateColumnHeader.js +56 -0
  385. package/dist/components/admin/oms/orderGrid/headers/OrderDateColumnHeader.js.map +1 -0
  386. package/dist/components/admin/oms/orderGrid/headers/PaymentStatusColumnHeader.d.ts +16 -0
  387. package/dist/components/admin/oms/orderGrid/headers/PaymentStatusColumnHeader.js +41 -0
  388. package/dist/components/admin/oms/orderGrid/headers/PaymentStatusColumnHeader.js.map +1 -0
  389. package/dist/components/admin/oms/orderGrid/headers/ShipmentStatusColumnHeader.d.ts +16 -0
  390. package/dist/components/admin/oms/orderGrid/headers/ShipmentStatusColumnHeader.js +41 -0
  391. package/dist/components/admin/oms/orderGrid/headers/ShipmentStatusColumnHeader.js.map +1 -0
  392. package/dist/components/admin/oms/orderGrid/rows/OrderNumberRow.d.ts +12 -0
  393. package/dist/components/admin/oms/orderGrid/rows/OrderNumberRow.js +14 -0
  394. package/dist/components/admin/oms/orderGrid/rows/OrderNumberRow.js.map +1 -0
  395. package/dist/components/admin/oms/orderGrid/rows/PaymentStatus.d.ts +10 -0
  396. package/dist/components/admin/oms/orderGrid/rows/PaymentStatus.js +15 -0
  397. package/dist/components/admin/oms/orderGrid/rows/PaymentStatus.js.map +1 -0
  398. package/dist/components/admin/oms/orderGrid/rows/ShipmentStatus.d.ts +10 -0
  399. package/dist/components/admin/oms/orderGrid/rows/ShipmentStatus.js +15 -0
  400. package/dist/components/admin/oms/orderGrid/rows/ShipmentStatus.js.map +1 -0
  401. package/dist/components/admin/oms/orderGrid/rows/TotalRow.d.ts +10 -0
  402. package/dist/components/admin/oms/orderGrid/rows/TotalRow.js +9 -0
  403. package/dist/components/admin/oms/orderGrid/rows/TotalRow.js.map +1 -0
  404. package/dist/components/admin/promotion/couponEdit/AttributeGroupConditionSelector.d.ts +16 -0
  405. package/dist/components/admin/promotion/couponEdit/AttributeGroupConditionSelector.js +64 -0
  406. package/dist/components/admin/promotion/couponEdit/AttributeGroupConditionSelector.js.map +1 -0
  407. package/dist/components/admin/promotion/couponEdit/AttributeGroupSelector.d.ts +20 -0
  408. package/dist/components/admin/promotion/couponEdit/AttributeGroupSelector.js +123 -0
  409. package/dist/components/admin/promotion/couponEdit/AttributeGroupSelector.js.map +1 -0
  410. package/dist/components/admin/promotion/couponEdit/BuyXGetY.d.ts +15 -0
  411. package/dist/components/admin/promotion/couponEdit/BuyXGetY.js +149 -0
  412. package/dist/components/admin/promotion/couponEdit/BuyXGetY.js.map +1 -0
  413. package/dist/components/admin/promotion/couponEdit/CategoryConditionSelector.d.ts +16 -0
  414. package/dist/components/admin/promotion/couponEdit/CategoryConditionSelector.js +63 -0
  415. package/dist/components/admin/promotion/couponEdit/CategoryConditionSelector.js.map +1 -0
  416. package/dist/components/admin/promotion/couponEdit/CategorySelector.d.ts +20 -0
  417. package/dist/components/admin/promotion/couponEdit/CategorySelector.js +108 -0
  418. package/dist/components/admin/promotion/couponEdit/CategorySelector.js.map +1 -0
  419. package/dist/components/admin/promotion/couponEdit/CollectionConditionSelector.d.ts +16 -0
  420. package/dist/components/admin/promotion/couponEdit/CollectionConditionSelector.js +64 -0
  421. package/dist/components/admin/promotion/couponEdit/CollectionConditionSelector.js.map +1 -0
  422. package/dist/components/admin/promotion/couponEdit/CollectionSelector.d.ts +20 -0
  423. package/dist/components/admin/promotion/couponEdit/CollectionSelector.js +103 -0
  424. package/dist/components/admin/promotion/couponEdit/CollectionSelector.js.map +1 -0
  425. package/dist/components/admin/promotion/couponEdit/CompareKeyList.d.ts +4 -0
  426. package/dist/components/admin/promotion/couponEdit/CompareKeyList.js +23 -0
  427. package/dist/components/admin/promotion/couponEdit/CompareKeyList.js.map +1 -0
  428. package/dist/components/admin/promotion/couponEdit/CompareOperatorList.d.ts +5 -0
  429. package/dist/components/admin/promotion/couponEdit/CompareOperatorList.js +43 -0
  430. package/dist/components/admin/promotion/couponEdit/CompareOperatorList.js.map +1 -0
  431. package/dist/components/admin/promotion/couponEdit/PriceConditionSelector.d.ts +16 -0
  432. package/dist/components/admin/promotion/couponEdit/PriceConditionSelector.js +33 -0
  433. package/dist/components/admin/promotion/couponEdit/PriceConditionSelector.js.map +1 -0
  434. package/dist/components/admin/promotion/couponEdit/ProductSkuSelector.d.ts +16 -0
  435. package/dist/components/admin/promotion/couponEdit/ProductSkuSelector.js +140 -0
  436. package/dist/components/admin/promotion/couponEdit/ProductSkuSelector.js.map +1 -0
  437. package/dist/components/admin/promotion/couponEdit/RegistrationSkuSelector.d.ts +16 -0
  438. package/dist/components/admin/promotion/couponEdit/RegistrationSkuSelector.js +143 -0
  439. package/dist/components/admin/promotion/couponEdit/RegistrationSkuSelector.js.map +1 -0
  440. package/dist/components/admin/promotion/couponEdit/RequireProducts.d.ts +13 -0
  441. package/dist/components/admin/promotion/couponEdit/RequireProducts.js +246 -0
  442. package/dist/components/admin/promotion/couponEdit/RequireProducts.js.map +1 -0
  443. package/dist/components/admin/promotion/couponEdit/Setting.d.ts +21 -0
  444. package/dist/components/admin/promotion/couponEdit/Setting.js +25 -0
  445. package/dist/components/admin/promotion/couponEdit/Setting.js.map +1 -0
  446. package/dist/components/admin/promotion/couponEdit/SkuConditionSelector.d.ts +22 -0
  447. package/dist/components/admin/promotion/couponEdit/SkuConditionSelector.js +70 -0
  448. package/dist/components/admin/promotion/couponEdit/SkuConditionSelector.js.map +1 -0
  449. package/dist/components/admin/promotion/couponEdit/TargetProducts.d.ts +21 -0
  450. package/dist/components/admin/promotion/couponEdit/TargetProducts.js +304 -0
  451. package/dist/components/admin/promotion/couponEdit/TargetProducts.js.map +1 -0
  452. package/dist/components/admin/promotion/couponGrid/rows/CouponName.d.ts +12 -0
  453. package/dist/components/admin/promotion/couponGrid/rows/CouponName.js +12 -0
  454. package/dist/components/admin/promotion/couponGrid/rows/CouponName.js.map +1 -0
  455. package/dist/components/admin/setting/SettingMenu.d.ts +2 -0
  456. package/dist/components/admin/setting/SettingMenu.js +10 -0
  457. package/dist/components/admin/setting/SettingMenu.js.map +1 -0
  458. package/dist/components/admin/setting/SettingMenu.scss +8 -0
  459. package/dist/components/admin/tax/taxSetting/Rate.d.ts +12 -0
  460. package/dist/components/admin/tax/taxSetting/Rate.js +49 -0
  461. package/dist/components/admin/tax/taxSetting/Rate.js.map +1 -0
  462. package/dist/components/admin/tax/taxSetting/RateForm.d.ts +20 -0
  463. package/dist/components/admin/tax/taxSetting/RateForm.js +89 -0
  464. package/dist/components/admin/tax/taxSetting/RateForm.js.map +1 -0
  465. package/dist/components/admin/tax/taxSetting/Rates.d.ts +13 -0
  466. package/dist/components/admin/tax/taxSetting/Rates.js +43 -0
  467. package/dist/components/admin/tax/taxSetting/Rates.js.map +1 -0
  468. package/dist/components/admin/tax/taxSetting/TaxClass.d.ts +12 -0
  469. package/dist/components/admin/tax/taxSetting/TaxClass.js +29 -0
  470. package/dist/components/admin/tax/taxSetting/TaxClass.js.map +1 -0
  471. package/dist/components/admin/tax/taxSetting/TaxClassForm.d.ts +14 -0
  472. package/dist/components/admin/tax/taxSetting/TaxClassForm.js +31 -0
  473. package/dist/components/admin/tax/taxSetting/TaxClassForm.js.map +1 -0
  474. package/dist/components/admin/tax/taxSetting/TaxClasses.d.ts +13 -0
  475. package/dist/components/admin/tax/taxSetting/TaxClasses.js +32 -0
  476. package/dist/components/admin/tax/taxSetting/TaxClasses.js.map +1 -0
  477. package/dist/components/admin/widgets/BasicMenuSetting.d.ts +24 -0
  478. package/dist/components/admin/widgets/BasicMenuSetting.js +422 -0
  479. package/dist/components/admin/widgets/BasicMenuSetting.js.map +1 -0
  480. package/dist/components/admin/widgets/BasicMenuSetting.scss +19 -0
  481. package/dist/components/admin/widgets/CollectionProductsSetting.d.ts +22 -0
  482. package/dist/components/admin/widgets/CollectionProductsSetting.js +120 -0
  483. package/dist/components/admin/widgets/CollectionProductsSetting.js.map +1 -0
  484. package/dist/components/admin/widgets/TextBlockSetting.d.ts +30 -0
  485. package/dist/components/admin/widgets/TextBlockSetting.js +42 -0
  486. package/dist/components/admin/widgets/TextBlockSetting.js.map +1 -0
  487. package/dist/components/admin/widgets/index.d.ts +4 -0
  488. package/dist/components/admin/widgets/index.js +5 -0
  489. package/dist/components/admin/widgets/index.js.map +1 -0
  490. package/dist/components/common/Area.d.ts +37 -0
  491. package/dist/components/common/Area.js +81 -0
  492. package/dist/components/common/Area.js.map +1 -0
  493. package/dist/components/common/Badge.d.ts +14 -0
  494. package/dist/components/common/Badge.js +41 -0
  495. package/dist/components/common/Badge.js.map +1 -0
  496. package/dist/components/common/Badge.scss +111 -0
  497. package/dist/components/common/Body.d.ts +2 -0
  498. package/dist/components/common/Body.js +7 -0
  499. package/dist/components/common/Body.js.map +1 -0
  500. package/dist/components/common/BundleCss.d.ts +2 -0
  501. package/dist/components/common/BundleCss.js +14 -0
  502. package/dist/components/common/BundleCss.js.map +1 -0
  503. package/dist/components/common/BundleJs.d.ts +2 -0
  504. package/dist/components/common/BundleJs.js +9 -0
  505. package/dist/components/common/BundleJs.js.map +1 -0
  506. package/dist/components/common/CKEditor.d.ts +13 -0
  507. package/dist/components/common/CKEditor.js +14 -0
  508. package/dist/components/common/CKEditor.js.map +1 -0
  509. package/dist/components/common/CKEditor.scss +462 -0
  510. package/dist/components/common/Circle.d.ts +7 -0
  511. package/dist/components/common/Circle.js +19 -0
  512. package/dist/components/common/Circle.js.map +1 -0
  513. package/dist/components/common/Circle.scss +90 -0
  514. package/dist/components/common/Dot.d.ts +16 -0
  515. package/dist/components/common/Dot.js +33 -0
  516. package/dist/components/common/Dot.js.map +1 -0
  517. package/dist/components/common/Dot.scss +32 -0
  518. package/dist/components/common/Editor.d.ts +10 -0
  519. package/dist/components/common/Editor.js +127 -0
  520. package/dist/components/common/Editor.js.map +1 -0
  521. package/dist/components/common/Link.d.ts +24 -0
  522. package/dist/components/common/Link.js +17 -0
  523. package/dist/components/common/Link.js.map +1 -0
  524. package/dist/components/common/LoadingBar.d.ts +3 -0
  525. package/dist/components/common/LoadingBar.js +34 -0
  526. package/dist/components/common/LoadingBar.js.map +1 -0
  527. package/dist/components/common/LoadingBar.scss +14 -0
  528. package/dist/components/common/Meta.d.ts +2 -0
  529. package/dist/components/common/Meta.js +22 -0
  530. package/dist/components/common/Meta.js.map +1 -0
  531. package/dist/components/common/Notification.d.ts +2 -0
  532. package/dist/components/common/Notification.js +32 -0
  533. package/dist/components/common/Notification.js.map +1 -0
  534. package/dist/components/common/Notification.scss +536 -0
  535. package/dist/components/common/Off.d.ts +2 -0
  536. package/dist/components/common/Off.js +7 -0
  537. package/dist/components/common/Off.js.map +1 -0
  538. package/dist/components/common/Off.scss +26 -0
  539. package/dist/components/common/On.d.ts +2 -0
  540. package/dist/components/common/On.js +7 -0
  541. package/dist/components/common/On.js.map +1 -0
  542. package/dist/components/common/On.scss +26 -0
  543. package/dist/components/common/ProductNoThumbnail.d.ts +18 -0
  544. package/dist/components/common/ProductNoThumbnail.js +20 -0
  545. package/dist/components/common/ProductNoThumbnail.js.map +1 -0
  546. package/dist/components/common/RenderIfTrue.d.ts +11 -0
  547. package/dist/components/common/RenderIfTrue.js +9 -0
  548. package/dist/components/common/RenderIfTrue.js.map +1 -0
  549. package/dist/components/common/Script.d.ts +16 -0
  550. package/dist/components/common/Script.js +13 -0
  551. package/dist/components/common/Script.js.map +1 -0
  552. package/dist/components/common/SimplePagination.d.ts +17 -0
  553. package/dist/components/common/SimplePagination.js +35 -0
  554. package/dist/components/common/SimplePagination.js.map +1 -0
  555. package/dist/components/common/Spinner.d.ts +18 -0
  556. package/dist/components/common/Spinner.js +19 -0
  557. package/dist/components/common/Spinner.js.map +1 -0
  558. package/dist/components/common/Title.d.ts +10 -0
  559. package/dist/components/common/Title.js +9 -0
  560. package/dist/components/common/Title.js.map +1 -0
  561. package/dist/components/common/context/app.d.ts +13 -0
  562. package/dist/components/common/context/app.js +47 -0
  563. package/dist/components/common/context/app.js.map +1 -0
  564. package/dist/components/common/context/checkout.d.ts +19 -0
  565. package/dist/components/common/context/checkout.js +70 -0
  566. package/dist/components/common/context/checkout.js.map +1 -0
  567. package/dist/components/common/context/checkoutSteps.d.ts +13 -0
  568. package/dist/components/common/context/checkoutSteps.js +89 -0
  569. package/dist/components/common/context/checkoutSteps.js.map +1 -0
  570. package/dist/components/common/customer/address/AddressSummary.d.ts +4 -0
  571. package/dist/components/common/customer/address/AddressSummary.js +58 -0
  572. package/dist/components/common/customer/address/AddressSummary.js.map +1 -0
  573. package/dist/components/common/form/Button.d.ts +36 -0
  574. package/dist/components/common/form/Button.js +52 -0
  575. package/dist/components/common/form/Button.js.map +1 -0
  576. package/dist/components/common/form/Button.scss +66 -0
  577. package/dist/components/common/form/Field.d.ts +19 -0
  578. package/dist/components/common/form/Field.js +120 -0
  579. package/dist/components/common/form/Field.js.map +1 -0
  580. package/dist/components/common/form/Field.scss +203 -0
  581. package/dist/components/common/form/Form.d.ts +47 -0
  582. package/dist/components/common/form/Form.js +192 -0
  583. package/dist/components/common/form/Form.js.map +1 -0
  584. package/dist/components/common/form/fields/Checkbox.d.ts +31 -0
  585. package/dist/components/common/form/fields/Checkbox.js +50 -0
  586. package/dist/components/common/form/fields/Checkbox.js.map +1 -0
  587. package/dist/components/common/form/fields/Checkbox.scss +1 -0
  588. package/dist/components/common/form/fields/Ckeditor.d.ts +26 -0
  589. package/dist/components/common/form/fields/Ckeditor.js +292 -0
  590. package/dist/components/common/form/fields/Ckeditor.js.map +1 -0
  591. package/dist/components/common/form/fields/Ckeditor.scss +53 -0
  592. package/dist/components/common/form/fields/Date.d.ts +2 -0
  593. package/dist/components/common/form/fields/Date.js +48 -0
  594. package/dist/components/common/form/fields/Date.js.map +1 -0
  595. package/dist/components/common/form/fields/Date.scss +1 -0
  596. package/dist/components/common/form/fields/DateTime.d.ts +2 -0
  597. package/dist/components/common/form/fields/DateTime.js +48 -0
  598. package/dist/components/common/form/fields/DateTime.js.map +1 -0
  599. package/dist/components/common/form/fields/DateTime.scss +1 -0
  600. package/dist/components/common/form/fields/Editor.d.ts +28 -0
  601. package/dist/components/common/form/fields/Editor.js +236 -0
  602. package/dist/components/common/form/fields/Editor.js.map +1 -0
  603. package/dist/components/common/form/fields/Editor.scss +32 -0
  604. package/dist/components/common/form/fields/Error.d.ts +14 -0
  605. package/dist/components/common/form/fields/Error.js +18 -0
  606. package/dist/components/common/form/fields/Error.js.map +1 -0
  607. package/dist/components/common/form/fields/Flatpickr.d.ts +2 -0
  608. package/dist/components/common/form/fields/Flatpickr.js +4 -0
  609. package/dist/components/common/form/fields/Flatpickr.js.map +1 -0
  610. package/dist/components/common/form/fields/Flatpickr.scss +789 -0
  611. package/dist/components/common/form/fields/Hidden.d.ts +19 -0
  612. package/dist/components/common/form/fields/Hidden.js +18 -0
  613. package/dist/components/common/form/fields/Hidden.js.map +1 -0
  614. package/dist/components/common/form/fields/Input.d.ts +2 -0
  615. package/dist/components/common/form/fields/Input.js +67 -0
  616. package/dist/components/common/form/fields/Input.js.map +1 -0
  617. package/dist/components/common/form/fields/Input.scss +1 -0
  618. package/dist/components/common/form/fields/MultiSelect.d.ts +2 -0
  619. package/dist/components/common/form/fields/MultiSelect.js +49 -0
  620. package/dist/components/common/form/fields/MultiSelect.js.map +1 -0
  621. package/dist/components/common/form/fields/MultiSelect.scss +1 -0
  622. package/dist/components/common/form/fields/Password.d.ts +2 -0
  623. package/dist/components/common/form/fields/Password.js +63 -0
  624. package/dist/components/common/form/fields/Password.js.map +1 -0
  625. package/dist/components/common/form/fields/Radio.d.ts +33 -0
  626. package/dist/components/common/form/fields/Radio.js +53 -0
  627. package/dist/components/common/form/fields/Radio.js.map +1 -0
  628. package/dist/components/common/form/fields/Radio.scss +1 -0
  629. package/dist/components/common/form/fields/Select.d.ts +2 -0
  630. package/dist/components/common/form/fields/Select.js +59 -0
  631. package/dist/components/common/form/fields/Select.js.map +1 -0
  632. package/dist/components/common/form/fields/Select.scss +1 -0
  633. package/dist/components/common/form/fields/Textarea.d.ts +35 -0
  634. package/dist/components/common/form/fields/Textarea.js +41 -0
  635. package/dist/components/common/form/fields/Textarea.js.map +1 -0
  636. package/dist/components/common/form/fields/Textarea.scss +1 -0
  637. package/dist/components/common/form/fields/Toggle.d.ts +29 -0
  638. package/dist/components/common/form/fields/Toggle.js +77 -0
  639. package/dist/components/common/form/fields/Toggle.js.map +1 -0
  640. package/dist/components/common/form/fields/Toggle.scss +26 -0
  641. package/dist/components/common/form/fields/editor/FileBrowser.d.ts +26 -0
  642. package/dist/components/common/form/fields/editor/FileBrowser.js +251 -0
  643. package/dist/components/common/form/fields/editor/FileBrowser.js.map +1 -0
  644. package/dist/components/common/form/fields/editor/FileBrowser.scss +37 -0
  645. package/dist/components/common/form/fields/editor/GetColumnClasses.d.ts +2 -0
  646. package/dist/components/common/form/fields/editor/GetColumnClasses.js +14 -0
  647. package/dist/components/common/form/fields/editor/GetColumnClasses.js.map +1 -0
  648. package/dist/components/common/form/fields/editor/GetRowClasses.d.ts +2 -0
  649. package/dist/components/common/form/fields/editor/GetRowClasses.js +18 -0
  650. package/dist/components/common/form/fields/editor/GetRowClasses.js.map +1 -0
  651. package/dist/components/common/form/fields/editor/RowTemplates.d.ts +10 -0
  652. package/dist/components/common/form/fields/editor/RowTemplates.js +53 -0
  653. package/dist/components/common/form/fields/editor/RowTemplates.js.map +1 -0
  654. package/dist/components/common/form/validator.d.ts +5 -0
  655. package/dist/components/common/form/validator.js +53 -0
  656. package/dist/components/common/form/validator.js.map +1 -0
  657. package/dist/components/common/grid/Pagination.d.ts +14 -0
  658. package/dist/components/common/grid/Pagination.js +115 -0
  659. package/dist/components/common/grid/Pagination.js.map +1 -0
  660. package/dist/components/common/grid/Pagination.scss +26 -0
  661. package/dist/components/common/grid/headers/Action.d.ts +14 -0
  662. package/dist/components/common/grid/headers/Action.js +19 -0
  663. package/dist/components/common/grid/headers/Action.js.map +1 -0
  664. package/dist/components/common/grid/headers/Dropdown.d.ts +20 -0
  665. package/dist/components/common/grid/headers/Dropdown.js +42 -0
  666. package/dist/components/common/grid/headers/Dropdown.js.map +1 -0
  667. package/dist/components/common/grid/headers/Dummy.d.ts +10 -0
  668. package/dist/components/common/grid/headers/Dummy.js +12 -0
  669. package/dist/components/common/grid/headers/Dummy.js.map +1 -0
  670. package/dist/components/common/grid/headers/FromTo.d.ts +18 -0
  671. package/dist/components/common/grid/headers/FromTo.js +43 -0
  672. package/dist/components/common/grid/headers/FromTo.js.map +1 -0
  673. package/dist/components/common/grid/headers/Sortable.d.ts +18 -0
  674. package/dist/components/common/grid/headers/Sortable.js +60 -0
  675. package/dist/components/common/grid/headers/Sortable.js.map +1 -0
  676. package/dist/components/common/grid/headers/Status.d.ts +18 -0
  677. package/dist/components/common/grid/headers/Status.js +38 -0
  678. package/dist/components/common/grid/headers/Status.js.map +1 -0
  679. package/dist/components/common/grid/rows/ActionRow.d.ts +12 -0
  680. package/dist/components/common/grid/rows/ActionRow.js +25 -0
  681. package/dist/components/common/grid/rows/ActionRow.js.map +1 -0
  682. package/dist/components/common/grid/rows/BasicRow.d.ts +12 -0
  683. package/dist/components/common/grid/rows/BasicRow.js +14 -0
  684. package/dist/components/common/grid/rows/BasicRow.js.map +1 -0
  685. package/dist/components/common/grid/rows/DateRow.d.ts +12 -0
  686. package/dist/components/common/grid/rows/DateRow.js +26 -0
  687. package/dist/components/common/grid/rows/DateRow.js.map +1 -0
  688. package/dist/components/common/grid/rows/PriceRow.d.ts +12 -0
  689. package/dist/components/common/grid/rows/PriceRow.js +21 -0
  690. package/dist/components/common/grid/rows/PriceRow.js.map +1 -0
  691. package/dist/components/common/grid/rows/StatusRow.d.ts +12 -0
  692. package/dist/components/common/grid/rows/StatusRow.js +18 -0
  693. package/dist/components/common/grid/rows/StatusRow.js.map +1 -0
  694. package/dist/components/common/grid/rows/TextRow.d.ts +10 -0
  695. package/dist/components/common/grid/rows/TextRow.js +9 -0
  696. package/dist/components/common/grid/rows/TextRow.js.map +1 -0
  697. package/dist/components/common/grid/rows/ThumbnailRow.d.ts +12 -0
  698. package/dist/components/common/grid/rows/ThumbnailRow.js +18 -0
  699. package/dist/components/common/grid/rows/ThumbnailRow.js.map +1 -0
  700. package/dist/components/common/grid/rows/YesNoRow.d.ts +10 -0
  701. package/dist/components/common/grid/rows/YesNoRow.js +17 -0
  702. package/dist/components/common/grid/rows/YesNoRow.js.map +1 -0
  703. package/dist/components/common/index.d.ts +11 -0
  704. package/dist/components/common/index.js +12 -0
  705. package/dist/components/common/index.js.map +1 -0
  706. package/dist/components/common/list/Filter.d.ts +22 -0
  707. package/dist/components/common/list/Filter.js +33 -0
  708. package/dist/components/common/list/Filter.js.map +1 -0
  709. package/dist/components/common/list/Filter.scss +39 -0
  710. package/dist/components/common/locale/CountryOption.d.ts +12 -0
  711. package/dist/components/common/locale/CountryOption.js +271 -0
  712. package/dist/components/common/locale/CountryOption.js.map +1 -0
  713. package/dist/components/common/locale/CurrencyOption.d.ts +12 -0
  714. package/dist/components/common/locale/CurrencyOption.js +191 -0
  715. package/dist/components/common/locale/CurrencyOption.js.map +1 -0
  716. package/dist/components/common/locale/LanguageOption.d.ts +12 -0
  717. package/dist/components/common/locale/LanguageOption.js +213 -0
  718. package/dist/components/common/locale/LanguageOption.js.map +1 -0
  719. package/dist/components/common/locale/ProvinceOption.d.ts +8 -0
  720. package/dist/components/common/locale/ProvinceOption.js +3683 -0
  721. package/dist/components/common/locale/ProvinceOption.js.map +1 -0
  722. package/dist/components/common/locale/TimezoneOption.d.ts +8 -0
  723. package/dist/components/common/locale/TimezoneOption.js +1262 -0
  724. package/dist/components/common/locale/TimezoneOption.js.map +1 -0
  725. package/dist/components/common/modal/Alert.d.ts +10 -0
  726. package/dist/components/common/modal/Alert.js +87 -0
  727. package/dist/components/common/modal/Alert.js.map +1 -0
  728. package/dist/components/common/modal/Alert.scss +84 -0
  729. package/dist/components/common/modal/Modal.d.ts +20 -0
  730. package/dist/components/common/modal/Modal.js +39 -0
  731. package/dist/components/common/modal/Modal.js.map +1 -0
  732. package/dist/components/common/modal/useModal.d.ts +7 -0
  733. package/dist/components/common/modal/useModal.js +44 -0
  734. package/dist/components/common/modal/useModal.js.map +1 -0
  735. package/dist/components/common/react/Head.d.ts +1 -0
  736. package/dist/components/common/react/Head.js +7 -0
  737. package/dist/components/common/react/Head.js.map +1 -0
  738. package/dist/components/common/react/client/Client.d.ts +9 -0
  739. package/dist/components/common/react/client/Client.js +25 -0
  740. package/dist/components/common/react/client/Client.js.map +1 -0
  741. package/dist/components/common/react/client/HotReload.d.ts +9 -0
  742. package/dist/components/common/react/client/HotReload.js +48 -0
  743. package/dist/components/common/react/client/HotReload.js.map +1 -0
  744. package/dist/components/common/react/client/Hydrate.d.ts +10 -0
  745. package/dist/components/common/react/client/Hydrate.js +19 -0
  746. package/dist/components/common/react/client/Hydrate.js.map +1 -0
  747. package/dist/components/common/react/client/HydrateAdmin.d.ts +2 -0
  748. package/dist/components/common/react/client/HydrateAdmin.js +10 -0
  749. package/dist/components/common/react/client/HydrateAdmin.js.map +1 -0
  750. package/dist/components/common/react/client/HydrateFrontStore.d.ts +2 -0
  751. package/dist/components/common/react/client/HydrateFrontStore.js +10 -0
  752. package/dist/components/common/react/client/HydrateFrontStore.js.map +1 -0
  753. package/dist/components/common/react/client/Index.d.ts +1 -0
  754. package/dist/components/common/react/client/Index.js +11 -0
  755. package/dist/components/common/react/client/Index.js.map +1 -0
  756. package/dist/components/common/react/getComponents.d.ts +1 -0
  757. package/dist/components/common/react/getComponents.js +14 -0
  758. package/dist/components/common/react/getComponents.js.map +1 -0
  759. package/dist/components/common/react/server/Server.d.ts +14 -0
  760. package/dist/components/common/react/server/Server.js +24 -0
  761. package/dist/components/common/react/server/Server.js.map +1 -0
  762. package/dist/components/common/react/server/render.d.ts +1 -0
  763. package/dist/components/common/react/server/render.js +11 -0
  764. package/dist/components/common/react/server/render.js.map +1 -0
  765. package/dist/components/frontStore/catalog/categoryView/filter/AttributeFilter.d.ts +17 -0
  766. package/dist/components/frontStore/catalog/categoryView/filter/AttributeFilter.js +97 -0
  767. package/dist/components/frontStore/catalog/categoryView/filter/AttributeFilter.js.map +1 -0
  768. package/dist/components/frontStore/catalog/categoryView/filter/CategoryFilter.d.ts +17 -0
  769. package/dist/components/frontStore/catalog/categoryView/filter/CategoryFilter.js +95 -0
  770. package/dist/components/frontStore/catalog/categoryView/filter/CategoryFilter.js.map +1 -0
  771. package/dist/components/frontStore/catalog/categoryView/filter/CategoryFilter.scss +5 -0
  772. package/dist/components/frontStore/catalog/categoryView/filter/PriceFilter.d.ts +25 -0
  773. package/dist/components/frontStore/catalog/categoryView/filter/PriceFilter.js +164 -0
  774. package/dist/components/frontStore/catalog/categoryView/filter/PriceFilter.js.map +1 -0
  775. package/dist/components/frontStore/catalog/categoryView/filter/PriceFilter.scss +25 -0
  776. package/dist/components/frontStore/catalog/product/list/List.d.ts +12 -0
  777. package/dist/components/frontStore/catalog/product/list/List.js +72 -0
  778. package/dist/components/frontStore/catalog/product/list/List.js.map +1 -0
  779. package/dist/components/frontStore/catalog/product/list/Pagination.d.ts +13 -0
  780. package/dist/components/frontStore/catalog/product/list/Pagination.js +93 -0
  781. package/dist/components/frontStore/catalog/product/list/Pagination.js.map +1 -0
  782. package/dist/components/frontStore/catalog/product/list/Pagination.scss +21 -0
  783. package/dist/components/frontStore/catalog/product/list/SortOptions.d.ts +5 -0
  784. package/dist/components/frontStore/catalog/product/list/SortOptions.js +7 -0
  785. package/dist/components/frontStore/catalog/product/list/SortOptions.js.map +1 -0
  786. package/dist/components/frontStore/catalog/product/list/Sorting.d.ts +2 -0
  787. package/dist/components/frontStore/catalog/product/list/Sorting.js +73 -0
  788. package/dist/components/frontStore/catalog/product/list/Sorting.js.map +1 -0
  789. package/dist/components/frontStore/catalog/product/list/item/Name.d.ts +17 -0
  790. package/dist/components/frontStore/catalog/product/list/item/Name.js +17 -0
  791. package/dist/components/frontStore/catalog/product/list/item/Name.js.map +1 -0
  792. package/dist/components/frontStore/catalog/product/list/item/Name.scss +3 -0
  793. package/dist/components/frontStore/catalog/product/list/item/Price.d.ts +11 -0
  794. package/dist/components/frontStore/catalog/product/list/item/Price.js +23 -0
  795. package/dist/components/frontStore/catalog/product/list/item/Price.js.map +1 -0
  796. package/dist/components/frontStore/catalog/product/list/item/Thumbnail.d.ts +21 -0
  797. package/dist/components/frontStore/catalog/product/list/item/Thumbnail.js +23 -0
  798. package/dist/components/frontStore/catalog/product/list/item/Thumbnail.js.map +1 -0
  799. package/dist/components/frontStore/catalog/product/list/item/Thumbnail.scss +9 -0
  800. package/dist/components/frontStore/catalog/product/single/Name.d.ts +9 -0
  801. package/dist/components/frontStore/catalog/product/single/Name.js +9 -0
  802. package/dist/components/frontStore/catalog/product/single/Name.js.map +1 -0
  803. package/dist/components/frontStore/catalog/product/single/NoThumbnail.d.ts +18 -0
  804. package/dist/components/frontStore/catalog/product/single/NoThumbnail.js +18 -0
  805. package/dist/components/frontStore/catalog/product/single/NoThumbnail.js.map +1 -0
  806. package/dist/components/frontStore/catalog/product/single/Price.d.ts +11 -0
  807. package/dist/components/frontStore/catalog/product/single/Price.js +22 -0
  808. package/dist/components/frontStore/catalog/product/single/Price.js.map +1 -0
  809. package/dist/components/frontStore/catalog/product/single/Sku.d.ts +9 -0
  810. package/dist/components/frontStore/catalog/product/single/Sku.js +12 -0
  811. package/dist/components/frontStore/catalog/product/single/Sku.js.map +1 -0
  812. package/dist/components/frontStore/checkout/cart/Empty.d.ts +2 -0
  813. package/dist/components/frontStore/checkout/cart/Empty.js +24 -0
  814. package/dist/components/frontStore/checkout/cart/Empty.js.map +1 -0
  815. package/dist/components/frontStore/checkout/cart/items/EditParticipantForm.d.ts +8 -0
  816. package/dist/components/frontStore/checkout/cart/items/EditParticipantForm.js +25 -0
  817. package/dist/components/frontStore/checkout/cart/items/EditParticipantForm.js.map +1 -0
  818. package/dist/components/frontStore/checkout/cart/items/ItemOptions.d.ts +13 -0
  819. package/dist/components/frontStore/checkout/cart/items/ItemOptions.js +42 -0
  820. package/dist/components/frontStore/checkout/cart/items/ItemOptions.js.map +1 -0
  821. package/dist/components/frontStore/checkout/cart/items/ItemVariantOptions.d.ts +13 -0
  822. package/dist/components/frontStore/checkout/cart/items/ItemVariantOptions.js +23 -0
  823. package/dist/components/frontStore/checkout/cart/items/ItemVariantOptions.js.map +1 -0
  824. package/dist/components/frontStore/checkout/cart/items/Items.d.ts +14 -0
  825. package/dist/components/frontStore/checkout/cart/items/Items.js +209 -0
  826. package/dist/components/frontStore/checkout/cart/items/Items.js.map +1 -0
  827. package/dist/components/frontStore/checkout/cart/items/Items.scss +97 -0
  828. package/dist/components/frontStore/checkout/cart/items/Quantity.d.ts +13 -0
  829. package/dist/components/frontStore/checkout/cart/items/Quantity.js +78 -0
  830. package/dist/components/frontStore/checkout/cart/items/Quantity.js.map +1 -0
  831. package/dist/components/frontStore/checkout/checkout/CheckoutButton.d.ts +12 -0
  832. package/dist/components/frontStore/checkout/checkout/CheckoutButton.js +19 -0
  833. package/dist/components/frontStore/checkout/checkout/CheckoutButton.js.map +1 -0
  834. package/dist/components/frontStore/checkout/checkout/StepTitle.d.ts +9 -0
  835. package/dist/components/frontStore/checkout/checkout/StepTitle.js +19 -0
  836. package/dist/components/frontStore/checkout/checkout/StepTitle.js.map +1 -0
  837. package/dist/components/frontStore/checkout/checkout/payment/paymentMethods/Methods.d.ts +2 -0
  838. package/dist/components/frontStore/checkout/checkout/payment/paymentMethods/Methods.js +5 -0
  839. package/dist/components/frontStore/checkout/checkout/payment/paymentMethods/Methods.js.map +1 -0
  840. package/dist/components/frontStore/checkout/checkout/payment/paymentStep/BillingAddress.d.ts +12 -0
  841. package/dist/components/frontStore/checkout/checkout/payment/paymentStep/BillingAddress.js +22 -0
  842. package/dist/components/frontStore/checkout/checkout/payment/paymentStep/BillingAddress.js.map +1 -0
  843. package/dist/components/frontStore/checkout/checkout/payment/paymentStep/StepContent.d.ts +15 -0
  844. package/dist/components/frontStore/checkout/checkout/payment/paymentStep/StepContent.js +156 -0
  845. package/dist/components/frontStore/checkout/checkout/payment/paymentStep/StepContent.js.map +1 -0
  846. package/dist/components/frontStore/checkout/checkout/shipment/StepContent.d.ts +24 -0
  847. package/dist/components/frontStore/checkout/checkout/shipment/StepContent.js +146 -0
  848. package/dist/components/frontStore/checkout/checkout/shipment/StepContent.js.map +1 -0
  849. package/dist/components/frontStore/checkout/checkout/summary/Cart.d.ts +66 -0
  850. package/dist/components/frontStore/checkout/checkout/summary/Cart.js +65 -0
  851. package/dist/components/frontStore/checkout/checkout/summary/Cart.js.map +1 -0
  852. package/dist/components/frontStore/checkout/checkout/summary/Items.d.ts +17 -0
  853. package/dist/components/frontStore/checkout/checkout/summary/Items.js +65 -0
  854. package/dist/components/frontStore/checkout/checkout/summary/Items.js.map +1 -0
  855. package/dist/components/frontStore/checkout/checkout/summary/Items.scss +53 -0
  856. package/dist/components/frontStore/checkout/checkout/summary/cart/Discount.d.ts +17 -0
  857. package/dist/components/frontStore/checkout/checkout/summary/cart/Discount.js +22 -0
  858. package/dist/components/frontStore/checkout/checkout/summary/cart/Discount.js.map +1 -0
  859. package/dist/components/frontStore/checkout/checkout/summary/cart/Shipping.d.ts +17 -0
  860. package/dist/components/frontStore/checkout/checkout/summary/cart/Shipping.js +22 -0
  861. package/dist/components/frontStore/checkout/checkout/summary/cart/Shipping.js.map +1 -0
  862. package/dist/components/frontStore/checkout/checkout/summary/cart/Subtotal.d.ts +11 -0
  863. package/dist/components/frontStore/checkout/checkout/summary/cart/Subtotal.js +15 -0
  864. package/dist/components/frontStore/checkout/checkout/summary/cart/Subtotal.js.map +1 -0
  865. package/dist/components/frontStore/checkout/checkout/summary/cart/Tax.d.ts +13 -0
  866. package/dist/components/frontStore/checkout/checkout/summary/cart/Tax.js +17 -0
  867. package/dist/components/frontStore/checkout/checkout/summary/cart/Tax.js.map +1 -0
  868. package/dist/components/frontStore/checkout/checkout/summary/cart/Total.d.ts +17 -0
  869. package/dist/components/frontStore/checkout/checkout/summary/cart/Total.js +27 -0
  870. package/dist/components/frontStore/checkout/checkout/summary/cart/Total.js.map +1 -0
  871. package/dist/components/frontStore/checkout/success/summary/items/ItemOptions.d.ts +13 -0
  872. package/dist/components/frontStore/checkout/success/summary/items/ItemOptions.js +42 -0
  873. package/dist/components/frontStore/checkout/success/summary/items/ItemOptions.js.map +1 -0
  874. package/dist/components/frontStore/checkout/success/summary/items/Items.d.ts +11 -0
  875. package/dist/components/frontStore/checkout/success/summary/items/Items.js +42 -0
  876. package/dist/components/frontStore/checkout/success/summary/items/Items.js.map +1 -0
  877. package/dist/components/frontStore/checkout/success/summary/items/Items.scss +53 -0
  878. package/dist/components/frontStore/checkout/success/summary/order/Discount.d.ts +17 -0
  879. package/dist/components/frontStore/checkout/success/summary/order/Discount.js +22 -0
  880. package/dist/components/frontStore/checkout/success/summary/order/Discount.js.map +1 -0
  881. package/dist/components/frontStore/checkout/success/summary/order/OrderSummary.d.ts +62 -0
  882. package/dist/components/frontStore/checkout/success/summary/order/OrderSummary.js +72 -0
  883. package/dist/components/frontStore/checkout/success/summary/order/OrderSummary.js.map +1 -0
  884. package/dist/components/frontStore/checkout/success/summary/order/Shipping.d.ts +17 -0
  885. package/dist/components/frontStore/checkout/success/summary/order/Shipping.js +22 -0
  886. package/dist/components/frontStore/checkout/success/summary/order/Shipping.js.map +1 -0
  887. package/dist/components/frontStore/checkout/success/summary/order/Subtotal.d.ts +11 -0
  888. package/dist/components/frontStore/checkout/success/summary/order/Subtotal.js +15 -0
  889. package/dist/components/frontStore/checkout/success/summary/order/Subtotal.js.map +1 -0
  890. package/dist/components/frontStore/checkout/success/summary/order/Tax.d.ts +13 -0
  891. package/dist/components/frontStore/checkout/success/summary/order/Tax.js +17 -0
  892. package/dist/components/frontStore/checkout/success/summary/order/Tax.js.map +1 -0
  893. package/dist/components/frontStore/checkout/success/summary/order/Total.d.ts +13 -0
  894. package/dist/components/frontStore/checkout/success/summary/order/Total.js +24 -0
  895. package/dist/components/frontStore/checkout/success/summary/order/Total.js.map +1 -0
  896. package/dist/components/frontStore/cms/Button.d.ts +2 -0
  897. package/dist/components/frontStore/cms/Button.js +5 -0
  898. package/dist/components/frontStore/cms/Button.js.map +1 -0
  899. package/dist/components/frontStore/cms/Button.scss +67 -0
  900. package/dist/components/frontStore/cms/MetaDescription.d.ts +2 -0
  901. package/dist/components/frontStore/cms/MetaDescription.js +9 -0
  902. package/dist/components/frontStore/cms/MetaDescription.js.map +1 -0
  903. package/dist/components/frontStore/cms/MetaTitle.d.ts +2 -0
  904. package/dist/components/frontStore/cms/MetaTitle.js +9 -0
  905. package/dist/components/frontStore/cms/MetaTitle.js.map +1 -0
  906. package/dist/components/frontStore/cod/CODLogo.d.ts +18 -0
  907. package/dist/components/frontStore/cod/CODLogo.js +14 -0
  908. package/dist/components/frontStore/cod/CODLogo.js.map +1 -0
  909. package/dist/components/frontStore/customer/address/addressForm/AddressForm.d.ts +25 -0
  910. package/dist/components/frontStore/customer/address/addressForm/AddressForm.js +147 -0
  911. package/dist/components/frontStore/customer/address/addressForm/AddressForm.js.map +1 -0
  912. package/dist/components/frontStore/customer/address/addressForm/AddressFormLoadingSkeleton.d.ts +2 -0
  913. package/dist/components/frontStore/customer/address/addressForm/AddressFormLoadingSkeleton.js +15 -0
  914. package/dist/components/frontStore/customer/address/addressForm/AddressFormLoadingSkeleton.js.map +1 -0
  915. package/dist/components/frontStore/customer/address/addressForm/AddressFormLoadingSkeleton.scss +26 -0
  916. package/dist/components/frontStore/customer/address/addressForm/Country.d.ts +21 -0
  917. package/dist/components/frontStore/customer/address/addressForm/Country.js +30 -0
  918. package/dist/components/frontStore/customer/address/addressForm/Country.js.map +1 -0
  919. package/dist/components/frontStore/customer/address/addressForm/Index.d.ts +24 -0
  920. package/dist/components/frontStore/customer/address/addressForm/Index.js +55 -0
  921. package/dist/components/frontStore/customer/address/addressForm/Index.js.map +1 -0
  922. package/dist/components/frontStore/customer/address/addressForm/NameAndTelephone.d.ts +17 -0
  923. package/dist/components/frontStore/customer/address/addressForm/NameAndTelephone.js +37 -0
  924. package/dist/components/frontStore/customer/address/addressForm/NameAndTelephone.js.map +1 -0
  925. package/dist/components/frontStore/customer/address/addressForm/Province.d.ts +23 -0
  926. package/dist/components/frontStore/customer/address/addressForm/Province.js +39 -0
  927. package/dist/components/frontStore/customer/address/addressForm/Province.js.map +1 -0
  928. package/dist/components/frontStore/customer/address/addressForm/ProvinceAndPostcode.d.ts +23 -0
  929. package/dist/components/frontStore/customer/address/addressForm/ProvinceAndPostcode.js +43 -0
  930. package/dist/components/frontStore/customer/address/addressForm/ProvinceAndPostcode.js.map +1 -0
  931. package/dist/components/frontStore/customer/checkout/Edit.d.ts +23 -0
  932. package/dist/components/frontStore/customer/checkout/Edit.js +67 -0
  933. package/dist/components/frontStore/customer/checkout/Edit.js.map +1 -0
  934. package/dist/components/frontStore/customer/detail/Order.d.ts +10 -0
  935. package/dist/components/frontStore/customer/detail/Order.js +55 -0
  936. package/dist/components/frontStore/customer/detail/Order.js.map +1 -0
  937. package/dist/components/frontStore/index.d.ts +2 -0
  938. package/dist/components/frontStore/index.js +3 -0
  939. package/dist/components/frontStore/index.js.map +1 -0
  940. package/dist/components/frontStore/mollie/MollieLogo.d.ts +18 -0
  941. package/dist/components/frontStore/mollie/MollieLogo.js +14 -0
  942. package/dist/components/frontStore/mollie/MollieLogo.js.map +1 -0
  943. package/dist/components/frontStore/paypal/PaypalLogo.d.ts +18 -0
  944. package/dist/components/frontStore/paypal/PaypalLogo.js +14 -0
  945. package/dist/components/frontStore/paypal/PaypalLogo.js.map +1 -0
  946. package/dist/components/frontStore/stripe/StripeLogo.d.ts +18 -0
  947. package/dist/components/frontStore/stripe/StripeLogo.js +14 -0
  948. package/dist/components/frontStore/stripe/StripeLogo.js.map +1 -0
  949. package/dist/components/frontStore/stripe/checkout/CheckoutForm.d.ts +14 -0
  950. package/dist/components/frontStore/stripe/checkout/CheckoutForm.js +169 -0
  951. package/dist/components/frontStore/stripe/checkout/CheckoutForm.js.map +1 -0
  952. package/dist/components/frontStore/stripe/checkout/CheckoutForm.scss +24 -0
  953. package/dist/components/frontStore/stripe/checkout/TestCards.d.ts +14 -0
  954. package/dist/components/frontStore/stripe/checkout/TestCards.js +57 -0
  955. package/dist/components/frontStore/stripe/checkout/TestCards.js.map +1 -0
  956. package/dist/components/frontStore/widgets/BasicMenu.d.ts +16 -0
  957. package/dist/components/frontStore/widgets/BasicMenu.js +70 -0
  958. package/dist/components/frontStore/widgets/BasicMenu.js.map +1 -0
  959. package/dist/components/frontStore/widgets/CollectionProducts.d.ts +13 -0
  960. package/dist/components/frontStore/widgets/CollectionProducts.js +81 -0
  961. package/dist/components/frontStore/widgets/CollectionProducts.js.map +1 -0
  962. package/dist/components/frontStore/widgets/TextBlock.d.ts +23 -0
  963. package/dist/components/frontStore/widgets/TextBlock.js +37 -0
  964. package/dist/components/frontStore/widgets/TextBlock.js.map +1 -0
  965. package/dist/components/frontStore/widgets/index.d.ts +4 -0
  966. package/dist/components/frontStore/widgets/index.js +5 -0
  967. package/dist/components/frontStore/widgets/index.js.map +1 -0
  968. package/dist/lib/babel/config.d.ts +7 -0
  969. package/dist/lib/babel/config.js +18 -0
  970. package/dist/lib/babel/config.js.map +1 -0
  971. package/dist/lib/babel/index.d.ts +1 -0
  972. package/dist/lib/babel/index.js +4 -0
  973. package/dist/lib/babel/index.js.map +1 -0
  974. package/dist/lib/componee/getComponentsByRoute.d.ts +1 -0
  975. package/dist/lib/componee/getComponentsByRoute.js +28 -0
  976. package/dist/lib/componee/getComponentsByRoute.js.map +1 -0
  977. package/dist/lib/componee/scanForComponents.d.ts +2 -0
  978. package/dist/lib/componee/scanForComponents.js +79 -0
  979. package/dist/lib/componee/scanForComponents.js.map +1 -0
  980. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/all/Banner.d.ts +1 -0
  981. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/all/Banner.js +2 -0
  982. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/all/Banner.js.map +1 -0
  983. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/all/CommentList.d.ts +1 -0
  984. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/all/CommentList.js +2 -0
  985. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/all/CommentList.js.map +1 -0
  986. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/productView/Attribute.d.ts +1 -0
  987. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/productView/Attribute.js +2 -0
  988. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/productView/Attribute.js.map +1 -0
  989. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/productView/Comment.d.ts +1 -0
  990. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/productView/Comment.js +2 -0
  991. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/productView/Comment.js.map +1 -0
  992. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/productView/Name.d.ts +1 -0
  993. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/productView/Name.js +2 -0
  994. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/productView/Name.js.map +1 -0
  995. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/productView/Price.d.ts +1 -0
  996. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/productView/Price.js +2 -0
  997. package/dist/lib/componee/tests/unit/__mocks__/extensions/firstExtension/pages/frontStore/productView/Price.js.map +1 -0
  998. package/dist/lib/componee/tests/unit/__mocks__/extensions/secondExtension/pages/frontStore/all/CommentList.d.ts +1 -0
  999. package/dist/lib/componee/tests/unit/__mocks__/extensions/secondExtension/pages/frontStore/all/CommentList.js +2 -0
  1000. package/dist/lib/componee/tests/unit/__mocks__/extensions/secondExtension/pages/frontStore/all/CommentList.js.map +1 -0
  1001. package/dist/lib/componee/tests/unit/__mocks__/extensions/secondExtension/pages/frontStore/productView/Comment.d.ts +1 -0
  1002. package/dist/lib/componee/tests/unit/__mocks__/extensions/secondExtension/pages/frontStore/productView/Comment.js +2 -0
  1003. package/dist/lib/componee/tests/unit/__mocks__/extensions/secondExtension/pages/frontStore/productView/Comment.js.map +1 -0
  1004. package/dist/lib/componee/tests/unit/__mocks__/extensions/secondExtension/pages/frontStore/productView/Name.d.ts +1 -0
  1005. package/dist/lib/componee/tests/unit/__mocks__/extensions/secondExtension/pages/frontStore/productView/Name.js +2 -0
  1006. package/dist/lib/componee/tests/unit/__mocks__/extensions/secondExtension/pages/frontStore/productView/Name.js.map +1 -0
  1007. package/dist/lib/componee/tests/unit/__mocks__/extensions/secondExtension/pages/frontStore/productView/Review.d.ts +1 -0
  1008. package/dist/lib/componee/tests/unit/__mocks__/extensions/secondExtension/pages/frontStore/productView/Review.js +2 -0
  1009. package/dist/lib/componee/tests/unit/__mocks__/extensions/secondExtension/pages/frontStore/productView/Review.js.map +1 -0
  1010. package/dist/lib/componee/tests/unit/__mocks__/modules/firstModule/pages/frontStore/all/Menu.d.ts +1 -0
  1011. package/dist/lib/componee/tests/unit/__mocks__/modules/firstModule/pages/frontStore/all/Menu.js +2 -0
  1012. package/dist/lib/componee/tests/unit/__mocks__/modules/firstModule/pages/frontStore/all/Menu.js.map +1 -0
  1013. package/dist/lib/componee/tests/unit/__mocks__/modules/firstModule/pages/frontStore/productView/Name.d.ts +1 -0
  1014. package/dist/lib/componee/tests/unit/__mocks__/modules/firstModule/pages/frontStore/productView/Name.js +2 -0
  1015. package/dist/lib/componee/tests/unit/__mocks__/modules/firstModule/pages/frontStore/productView/Name.js.map +1 -0
  1016. package/dist/lib/componee/tests/unit/__mocks__/modules/firstModule/pages/frontStore/productView/Price.d.ts +1 -0
  1017. package/dist/lib/componee/tests/unit/__mocks__/modules/firstModule/pages/frontStore/productView/Price.js +2 -0
  1018. package/dist/lib/componee/tests/unit/__mocks__/modules/firstModule/pages/frontStore/productView/Price.js.map +1 -0
  1019. package/dist/lib/componee/tests/unit/__mocks__/modules/secondModule/pages/frontStore/all/Banner.d.ts +1 -0
  1020. package/dist/lib/componee/tests/unit/__mocks__/modules/secondModule/pages/frontStore/all/Banner.js +2 -0
  1021. package/dist/lib/componee/tests/unit/__mocks__/modules/secondModule/pages/frontStore/all/Banner.js.map +1 -0
  1022. package/dist/lib/componee/tests/unit/__mocks__/modules/secondModule/pages/frontStore/productView/Description.d.ts +1 -0
  1023. package/dist/lib/componee/tests/unit/__mocks__/modules/secondModule/pages/frontStore/productView/Description.js +2 -0
  1024. package/dist/lib/componee/tests/unit/__mocks__/modules/secondModule/pages/frontStore/productView/Description.js.map +1 -0
  1025. package/dist/lib/componee/tests/unit/__mocks__/modules/secondModule/pages/frontStore/productView/Inventory.d.ts +1 -0
  1026. package/dist/lib/componee/tests/unit/__mocks__/modules/secondModule/pages/frontStore/productView/Inventory.js +2 -0
  1027. package/dist/lib/componee/tests/unit/__mocks__/modules/secondModule/pages/frontStore/productView/Inventory.js.map +1 -0
  1028. package/dist/lib/componee/tests/unit/__mocks__/modules/secondModule/pages/frontStore/productView/Name.d.ts +1 -0
  1029. package/dist/lib/componee/tests/unit/__mocks__/modules/secondModule/pages/frontStore/productView/Name.js +2 -0
  1030. package/dist/lib/componee/tests/unit/__mocks__/modules/secondModule/pages/frontStore/productView/Name.js.map +1 -0
  1031. package/dist/lib/componee/tests/unit/__mocks__/themes/justatheme/pages/all/CommentList.d.ts +1 -0
  1032. package/dist/lib/componee/tests/unit/__mocks__/themes/justatheme/pages/all/CommentList.js +2 -0
  1033. package/dist/lib/componee/tests/unit/__mocks__/themes/justatheme/pages/all/CommentList.js.map +1 -0
  1034. package/dist/lib/componee/tests/unit/__mocks__/themes/justatheme/pages/all/Shipping.d.ts +1 -0
  1035. package/dist/lib/componee/tests/unit/__mocks__/themes/justatheme/pages/all/Shipping.js +2 -0
  1036. package/dist/lib/componee/tests/unit/__mocks__/themes/justatheme/pages/all/Shipping.js.map +1 -0
  1037. package/dist/lib/componee/tests/unit/__mocks__/themes/justatheme/pages/productView/Name.d.ts +1 -0
  1038. package/dist/lib/componee/tests/unit/__mocks__/themes/justatheme/pages/productView/Name.js +2 -0
  1039. package/dist/lib/componee/tests/unit/__mocks__/themes/justatheme/pages/productView/Name.js.map +1 -0
  1040. package/dist/lib/componee/tests/unit/__mocks__/themes/justatheme/pages/productView/OutOfStock.d.ts +1 -0
  1041. package/dist/lib/componee/tests/unit/__mocks__/themes/justatheme/pages/productView/OutOfStock.js +2 -0
  1042. package/dist/lib/componee/tests/unit/__mocks__/themes/justatheme/pages/productView/OutOfStock.js.map +1 -0
  1043. package/dist/lib/componee/tests/unit/__mocks__/themes/justatheme/pages/productView/Price.d.ts +1 -0
  1044. package/dist/lib/componee/tests/unit/__mocks__/themes/justatheme/pages/productView/Price.js +2 -0
  1045. package/dist/lib/componee/tests/unit/__mocks__/themes/justatheme/pages/productView/Price.js.map +1 -0
  1046. package/dist/lib/componee/tests/unit/scanRouteComponents.test.d.ts +1 -0
  1047. package/dist/lib/componee/tests/unit/scanRouteComponents.test.js +60 -0
  1048. package/dist/lib/componee/tests/unit/scanRouteComponents.test.js.map +1 -0
  1049. package/dist/lib/cronjob/cronjob.d.ts +1 -0
  1050. package/dist/lib/cronjob/cronjob.js +70 -0
  1051. package/dist/lib/cronjob/cronjob.js.map +1 -0
  1052. package/dist/lib/cronjob/jobManager.d.ts +51 -0
  1053. package/dist/lib/cronjob/jobManager.js +226 -0
  1054. package/dist/lib/cronjob/jobManager.js.map +1 -0
  1055. package/dist/lib/cronjob/tests/unit/jobManager.test.d.ts +1 -0
  1056. package/dist/lib/cronjob/tests/unit/jobManager.test.js +124 -0
  1057. package/dist/lib/cronjob/tests/unit/jobManager.test.js.map +1 -0
  1058. package/dist/lib/event/callSubscibers.d.ts +1 -0
  1059. package/dist/lib/event/callSubscibers.js +16 -0
  1060. package/dist/lib/event/callSubscibers.js.map +1 -0
  1061. package/dist/lib/event/emitter.d.ts +6 -0
  1062. package/dist/lib/event/emitter.js +16 -0
  1063. package/dist/lib/event/emitter.js.map +1 -0
  1064. package/dist/lib/event/event-manager.d.ts +1 -0
  1065. package/dist/lib/event/event-manager.js +118 -0
  1066. package/dist/lib/event/event-manager.js.map +1 -0
  1067. package/dist/lib/event/loadSubscribers.d.ts +1 -0
  1068. package/dist/lib/event/loadSubscribers.js +59 -0
  1069. package/dist/lib/event/loadSubscribers.js.map +1 -0
  1070. package/dist/lib/helpers.d.ts +12 -0
  1071. package/dist/lib/helpers.js +21 -0
  1072. package/dist/lib/helpers.js.map +1 -0
  1073. package/dist/lib/locale/countries.d.ts +5 -0
  1074. package/dist/lib/locale/countries.js +249 -0
  1075. package/dist/lib/locale/countries.js.map +1 -0
  1076. package/dist/lib/locale/currencies.d.ts +5 -0
  1077. package/dist/lib/locale/currencies.js +171 -0
  1078. package/dist/lib/locale/currencies.js.map +1 -0
  1079. package/dist/lib/locale/index.d.ts +6 -0
  1080. package/dist/lib/locale/index.js +7 -0
  1081. package/dist/lib/locale/index.js.map +1 -0
  1082. package/dist/lib/locale/provinces.d.ts +6 -0
  1083. package/dist/lib/locale/provinces.js +3596 -0
  1084. package/dist/lib/locale/provinces.js.map +1 -0
  1085. package/dist/lib/locale/timezones.d.ts +5 -0
  1086. package/dist/lib/locale/timezones.js +1086 -0
  1087. package/dist/lib/locale/timezones.js.map +1 -0
  1088. package/dist/lib/locale/translate/_.d.ts +1 -0
  1089. package/dist/lib/locale/translate/_.js +9 -0
  1090. package/dist/lib/locale/translate/_.js.map +1 -0
  1091. package/dist/lib/locale/translate/translate.d.ts +5 -0
  1092. package/dist/lib/locale/translate/translate.js +24 -0
  1093. package/dist/lib/locale/translate/translate.js.map +1 -0
  1094. package/dist/lib/log/CustomColorize.d.ts +6 -0
  1095. package/dist/lib/log/CustomColorize.js +18 -0
  1096. package/dist/lib/log/CustomColorize.js.map +1 -0
  1097. package/dist/lib/log/logger.d.ts +5 -0
  1098. package/dist/lib/log/logger.js +134 -0
  1099. package/dist/lib/log/logger.js.map +1 -0
  1100. package/dist/lib/middleware/Handler.d.ts +17 -0
  1101. package/dist/lib/middleware/Handler.js +138 -0
  1102. package/dist/lib/middleware/Handler.js.map +1 -0
  1103. package/dist/lib/middleware/addMiddleware.d.ts +1 -0
  1104. package/dist/lib/middleware/addMiddleware.js +13 -0
  1105. package/dist/lib/middleware/addMiddleware.js.map +1 -0
  1106. package/dist/lib/middleware/buildMiddlewareFunction.d.ts +12 -0
  1107. package/dist/lib/middleware/buildMiddlewareFunction.js +97 -0
  1108. package/dist/lib/middleware/buildMiddlewareFunction.js.map +1 -0
  1109. package/dist/lib/middleware/delegate.d.ts +45 -0
  1110. package/dist/lib/middleware/delegate.js +84 -0
  1111. package/dist/lib/middleware/delegate.js.map +1 -0
  1112. package/dist/lib/middleware/eNext.d.ts +2 -0
  1113. package/dist/lib/middleware/eNext.js +14 -0
  1114. package/dist/lib/middleware/eNext.js.map +1 -0
  1115. package/dist/lib/middleware/findDublicatedMiddleware.d.ts +1 -0
  1116. package/dist/lib/middleware/findDublicatedMiddleware.js +12 -0
  1117. package/dist/lib/middleware/findDublicatedMiddleware.js.map +1 -0
  1118. package/dist/lib/middleware/getRouteFromPath.d.ts +5 -0
  1119. package/dist/lib/middleware/getRouteFromPath.js +45 -0
  1120. package/dist/lib/middleware/getRouteFromPath.js.map +1 -0
  1121. package/dist/lib/middleware/index.d.ts +15 -0
  1122. package/dist/lib/middleware/index.js +77 -0
  1123. package/dist/lib/middleware/index.js.map +1 -0
  1124. package/dist/lib/middleware/isErrorHandlerTriggered.d.ts +2 -0
  1125. package/dist/lib/middleware/isErrorHandlerTriggered.js +9 -0
  1126. package/dist/lib/middleware/isErrorHandlerTriggered.js.map +1 -0
  1127. package/dist/lib/middleware/isNextRequired.d.ts +1 -0
  1128. package/dist/lib/middleware/isNextRequired.js +6 -0
  1129. package/dist/lib/middleware/isNextRequired.js.map +1 -0
  1130. package/dist/lib/middleware/noDuplicateId.d.ts +9 -0
  1131. package/dist/lib/middleware/noDuplicateId.js +18 -0
  1132. package/dist/lib/middleware/noDuplicateId.js.map +1 -0
  1133. package/dist/lib/middleware/parseFromFile.d.ts +7 -0
  1134. package/dist/lib/middleware/parseFromFile.js +77 -0
  1135. package/dist/lib/middleware/parseFromFile.js.map +1 -0
  1136. package/dist/lib/middleware/scanForMiddlewareFunctions.d.ts +8 -0
  1137. package/dist/lib/middleware/scanForMiddlewareFunctions.js +23 -0
  1138. package/dist/lib/middleware/scanForMiddlewareFunctions.js.map +1 -0
  1139. package/dist/lib/middleware/sort.d.ts +8 -0
  1140. package/dist/lib/middleware/sort.js +40 -0
  1141. package/dist/lib/middleware/sort.js.map +1 -0
  1142. package/dist/lib/middleware/tests/app/app.d.ts +4 -0
  1143. package/dist/lib/middleware/tests/app/app.js +86 -0
  1144. package/dist/lib/middleware/tests/app/app.js.map +1 -0
  1145. package/dist/lib/middleware/tests/app/modules/404page/pages/frontStore/product/[loadProduct]loadCategory.d.ts +3 -0
  1146. package/dist/lib/middleware/tests/app/modules/404page/pages/frontStore/product/[loadProduct]loadCategory.js +3 -0
  1147. package/dist/lib/middleware/tests/app/modules/404page/pages/frontStore/product/[loadProduct]loadCategory.js.map +1 -0
  1148. package/dist/lib/middleware/tests/app/modules/404page/pages/frontStore/product/[loadProduct]loadProductImage.d.ts +3 -0
  1149. package/dist/lib/middleware/tests/app/modules/404page/pages/frontStore/product/[loadProduct]loadProductImage.js +5 -0
  1150. package/dist/lib/middleware/tests/app/modules/404page/pages/frontStore/product/[loadProduct]loadProductImage.js.map +1 -0
  1151. package/dist/lib/middleware/tests/app/modules/404page/pages/frontStore/product/loadProduct.d.ts +3 -0
  1152. package/dist/lib/middleware/tests/app/modules/404page/pages/frontStore/product/loadProduct.js +11 -0
  1153. package/dist/lib/middleware/tests/app/modules/404page/pages/frontStore/product/loadProduct.js.map +1 -0
  1154. package/dist/lib/middleware/tests/app/modules/404page/pages/frontStore/product/route.json +5 -0
  1155. package/dist/lib/middleware/tests/app/modules/api/api/createA/index.d.ts +3 -0
  1156. package/dist/lib/middleware/tests/app/modules/api/api/createA/index.js +3 -0
  1157. package/dist/lib/middleware/tests/app/modules/api/api/createA/index.js.map +1 -0
  1158. package/dist/lib/middleware/tests/app/modules/api/api/createA/route.json +4 -0
  1159. package/dist/lib/middleware/tests/app/modules/api/api/global/apiGlobal.d.ts +3 -0
  1160. package/dist/lib/middleware/tests/app/modules/api/api/global/apiGlobal.js +3 -0
  1161. package/dist/lib/middleware/tests/app/modules/api/api/global/apiGlobal.js.map +1 -0
  1162. package/dist/lib/middleware/tests/app/modules/authcopy/api/createA/[index]afterIndex.d.ts +3 -0
  1163. package/dist/lib/middleware/tests/app/modules/authcopy/api/createA/[index]afterIndex.js +3 -0
  1164. package/dist/lib/middleware/tests/app/modules/authcopy/api/createA/[index]afterIndex.js.map +1 -0
  1165. package/dist/lib/middleware/tests/app/modules/authcopy/api/global/[context]auth.d.ts +2 -0
  1166. package/dist/lib/middleware/tests/app/modules/authcopy/api/global/[context]auth.js +4 -0
  1167. package/dist/lib/middleware/tests/app/modules/authcopy/api/global/[context]auth.js.map +1 -0
  1168. package/dist/lib/middleware/tests/app/modules/authcopy/api/global/apiAuthGlobal.d.ts +3 -0
  1169. package/dist/lib/middleware/tests/app/modules/authcopy/api/global/apiAuthGlobal.js +3 -0
  1170. package/dist/lib/middleware/tests/app/modules/authcopy/api/global/apiAuthGlobal.js.map +1 -0
  1171. package/dist/lib/middleware/tests/app/modules/authcopy/pages/global/[context]auth.d.ts +2 -0
  1172. package/dist/lib/middleware/tests/app/modules/authcopy/pages/global/[context]auth.js +2 -0
  1173. package/dist/lib/middleware/tests/app/modules/authcopy/pages/global/[context]auth.js.map +1 -0
  1174. package/dist/lib/middleware/tests/app/modules/basecopy/api/global/[apiResponse]apiErrorHandler.d.ts +2 -0
  1175. package/dist/lib/middleware/tests/app/modules/basecopy/api/global/[apiResponse]apiErrorHandler.js +3 -0
  1176. package/dist/lib/middleware/tests/app/modules/basecopy/api/global/[apiResponse]apiErrorHandler.js.map +1 -0
  1177. package/dist/lib/middleware/tests/app/modules/basecopy/api/global/[auth]apiResponse[apiErrorHandler].d.ts +2 -0
  1178. package/dist/lib/middleware/tests/app/modules/basecopy/api/global/[auth]apiResponse[apiErrorHandler].js +3 -0
  1179. package/dist/lib/middleware/tests/app/modules/basecopy/api/global/[auth]apiResponse[apiErrorHandler].js.map +1 -0
  1180. package/dist/lib/middleware/tests/app/modules/basecopy/api/global/[auth]payloadValidate.d.ts +2 -0
  1181. package/dist/lib/middleware/tests/app/modules/basecopy/api/global/[auth]payloadValidate.js +3 -0
  1182. package/dist/lib/middleware/tests/app/modules/basecopy/api/global/[auth]payloadValidate.js.map +1 -0
  1183. package/dist/lib/middleware/tests/app/modules/basecopy/api/global/[payloadValidate]escapeHtml.d.ts +2 -0
  1184. package/dist/lib/middleware/tests/app/modules/basecopy/api/global/[payloadValidate]escapeHtml.js +3 -0
  1185. package/dist/lib/middleware/tests/app/modules/basecopy/api/global/[payloadValidate]escapeHtml.js.map +1 -0
  1186. package/dist/lib/middleware/tests/app/modules/basecopy/api/global/context.d.ts +2 -0
  1187. package/dist/lib/middleware/tests/app/modules/basecopy/api/global/context.js +26 -0
  1188. package/dist/lib/middleware/tests/app/modules/basecopy/api/global/context.js.map +1 -0
  1189. package/dist/lib/middleware/tests/app/modules/basecopy/pages/admin/adminStaticAsset/route.json +4 -0
  1190. package/dist/lib/middleware/tests/app/modules/basecopy/pages/admin/adminStaticAsset/staticAssets.d.ts +2 -0
  1191. package/dist/lib/middleware/tests/app/modules/basecopy/pages/admin/adminStaticAsset/staticAssets.js +3 -0
  1192. package/dist/lib/middleware/tests/app/modules/basecopy/pages/admin/adminStaticAsset/staticAssets.js.map +1 -0
  1193. package/dist/lib/middleware/tests/app/modules/basecopy/pages/admin/all/adminTitle.d.ts +2 -0
  1194. package/dist/lib/middleware/tests/app/modules/basecopy/pages/admin/all/adminTitle.js +4 -0
  1195. package/dist/lib/middleware/tests/app/modules/basecopy/pages/admin/all/adminTitle.js.map +1 -0
  1196. package/dist/lib/middleware/tests/app/modules/basecopy/pages/frontStore/all/title.d.ts +2 -0
  1197. package/dist/lib/middleware/tests/app/modules/basecopy/pages/frontStore/all/title.js +4 -0
  1198. package/dist/lib/middleware/tests/app/modules/basecopy/pages/frontStore/all/title.js.map +1 -0
  1199. package/dist/lib/middleware/tests/app/modules/basecopy/pages/frontStore/notFound/route.json +4 -0
  1200. package/dist/lib/middleware/tests/app/modules/basecopy/pages/frontStore/staticAsset/[context]staticAssets[auth].d.ts +2 -0
  1201. package/dist/lib/middleware/tests/app/modules/basecopy/pages/frontStore/staticAsset/[context]staticAssets[auth].js +3 -0
  1202. package/dist/lib/middleware/tests/app/modules/basecopy/pages/frontStore/staticAsset/[context]staticAssets[auth].js.map +1 -0
  1203. package/dist/lib/middleware/tests/app/modules/basecopy/pages/frontStore/staticAsset/route.json +4 -0
  1204. package/dist/lib/middleware/tests/app/modules/basecopy/pages/global/[auth]notFound[response].d.ts +3 -0
  1205. package/dist/lib/middleware/tests/app/modules/basecopy/pages/global/[auth]notFound[response].js +4 -0
  1206. package/dist/lib/middleware/tests/app/modules/basecopy/pages/global/[auth]notFound[response].js.map +1 -0
  1207. package/dist/lib/middleware/tests/app/modules/basecopy/pages/global/[notFound]dummy[response].d.ts +3 -0
  1208. package/dist/lib/middleware/tests/app/modules/basecopy/pages/global/[notFound]dummy[response].js +3 -0
  1209. package/dist/lib/middleware/tests/app/modules/basecopy/pages/global/[notFound]dummy[response].js.map +1 -0
  1210. package/dist/lib/middleware/tests/app/modules/basecopy/pages/global/[response]errorHandler.d.ts +3 -0
  1211. package/dist/lib/middleware/tests/app/modules/basecopy/pages/global/[response]errorHandler.js +4 -0
  1212. package/dist/lib/middleware/tests/app/modules/basecopy/pages/global/[response]errorHandler.js.map +1 -0
  1213. package/dist/lib/middleware/tests/app/modules/basecopy/pages/global/context.d.ts +2 -0
  1214. package/dist/lib/middleware/tests/app/modules/basecopy/pages/global/context.js +26 -0
  1215. package/dist/lib/middleware/tests/app/modules/basecopy/pages/global/context.js.map +1 -0
  1216. package/dist/lib/middleware/tests/app/modules/basecopy/pages/global/response[errorHandler].d.ts +3 -0
  1217. package/dist/lib/middleware/tests/app/modules/basecopy/pages/global/response[errorHandler].js +4 -0
  1218. package/dist/lib/middleware/tests/app/modules/basecopy/pages/global/response[errorHandler].js.map +1 -0
  1219. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/asyncWithNext[collection].d.ts +2 -0
  1220. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/asyncWithNext[collection].js +6 -0
  1221. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/asyncWithNext[collection].js.map +1 -0
  1222. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/async[collection].d.ts +2 -0
  1223. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/async[collection].js +5 -0
  1224. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/async[collection].js.map +1 -0
  1225. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/collection.d.ts +3 -0
  1226. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/collection.js +11 -0
  1227. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/collection.js.map +1 -0
  1228. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/returnOne[returnTwo].d.ts +3 -0
  1229. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/returnOne[returnTwo].js +3 -0
  1230. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/returnOne[returnTwo].js.map +1 -0
  1231. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/returnThree[collection].d.ts +3 -0
  1232. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/returnThree[collection].js +3 -0
  1233. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/returnThree[collection].js.map +1 -0
  1234. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/returnTwo[returnThree].d.ts +3 -0
  1235. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/returnTwo[returnThree].js +5 -0
  1236. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/returnTwo[returnThree].js.map +1 -0
  1237. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/route.json +4 -0
  1238. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/syncOne.d.ts +1 -0
  1239. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/syncOne.js +2 -0
  1240. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/syncOne.js.map +1 -0
  1241. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/syncWithNext[collection].d.ts +3 -0
  1242. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/syncWithNext[collection].js +5 -0
  1243. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/syncWithNext[collection].js.map +1 -0
  1244. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/sync[collection].d.ts +3 -0
  1245. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/sync[collection].js +5 -0
  1246. package/dist/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/sync[collection].js.map +1 -0
  1247. package/dist/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInAsync.d.ts +2 -0
  1248. package/dist/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInAsync.js +6 -0
  1249. package/dist/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInAsync.js.map +1 -0
  1250. package/dist/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInAsyncWithNext.d.ts +3 -0
  1251. package/dist/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInAsyncWithNext.js +13 -0
  1252. package/dist/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInAsyncWithNext.js.map +1 -0
  1253. package/dist/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInSync.d.ts +3 -0
  1254. package/dist/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInSync.js +5 -0
  1255. package/dist/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInSync.js.map +1 -0
  1256. package/dist/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInSyncWithNext.d.ts +3 -0
  1257. package/dist/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInSyncWithNext.js +5 -0
  1258. package/dist/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInSyncWithNext.js.map +1 -0
  1259. package/dist/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/route.json +4 -0
  1260. package/dist/lib/middleware/tests/app/modules/graphqlcopy/pages/global/[bodyParser]buildQuery[graphql].d.ts +2 -0
  1261. package/dist/lib/middleware/tests/app/modules/graphqlcopy/pages/global/[bodyParser]buildQuery[graphql].js +2 -0
  1262. package/dist/lib/middleware/tests/app/modules/graphqlcopy/pages/global/[bodyParser]buildQuery[graphql].js.map +1 -0
  1263. package/dist/lib/middleware/tests/app/modules/graphqlcopy/pages/global/[buildQuery]graphql[notFound].d.ts +2 -0
  1264. package/dist/lib/middleware/tests/app/modules/graphqlcopy/pages/global/[buildQuery]graphql[notFound].js +2 -0
  1265. package/dist/lib/middleware/tests/app/modules/graphqlcopy/pages/global/[buildQuery]graphql[notFound].js.map +1 -0
  1266. package/dist/lib/middleware/tests/app/modules/graphqlcopy/pages/global/bodyParser[buildQuery].d.ts +2 -0
  1267. package/dist/lib/middleware/tests/app/modules/graphqlcopy/pages/global/bodyParser[buildQuery].js +7 -0
  1268. package/dist/lib/middleware/tests/app/modules/graphqlcopy/pages/global/bodyParser[buildQuery].js.map +1 -0
  1269. package/dist/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/[loadProduct]loadCategory.d.ts +3 -0
  1270. package/dist/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/[loadProduct]loadCategory.js +3 -0
  1271. package/dist/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/[loadProduct]loadCategory.js.map +1 -0
  1272. package/dist/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/[loadProduct]loadProductImage.d.ts +3 -0
  1273. package/dist/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/[loadProduct]loadProductImage.js +5 -0
  1274. package/dist/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/[loadProduct]loadProductImage.js.map +1 -0
  1275. package/dist/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/loadProduct.d.ts +3 -0
  1276. package/dist/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/loadProduct.js +11 -0
  1277. package/dist/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/loadProduct.js.map +1 -0
  1278. package/dist/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/route.json +4 -0
  1279. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadAttribute]loadOptions.d.ts +3 -0
  1280. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadAttribute]loadOptions.js +3 -0
  1281. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadAttribute]loadOptions.js.map +1 -0
  1282. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadProductImage]loadAttribute.d.ts +3 -0
  1283. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadProductImage]loadAttribute.js +5 -0
  1284. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadProductImage]loadAttribute.js.map +1 -0
  1285. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadProduct]loadCategory.d.ts +3 -0
  1286. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadProduct]loadCategory.js +3 -0
  1287. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadProduct]loadCategory.js.map +1 -0
  1288. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadProduct]loadProductImage.d.ts +3 -0
  1289. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadProduct]loadProductImage.js +5 -0
  1290. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadProduct]loadProductImage.js.map +1 -0
  1291. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[syncOne,asyncOne]checkExecutionOrderAsync[loadAttribute].d.ts +3 -0
  1292. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[syncOne,asyncOne]checkExecutionOrderAsync[loadAttribute].js +10 -0
  1293. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[syncOne,asyncOne]checkExecutionOrderAsync[loadAttribute].js.map +1 -0
  1294. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[syncOne,asyncOne]checkExecutionOrder[loadAttribute].d.ts +3 -0
  1295. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[syncOne,asyncOne]checkExecutionOrder[loadAttribute].js +10 -0
  1296. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[syncOne,asyncOne]checkExecutionOrder[loadAttribute].js.map +1 -0
  1297. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/asyncOne[loadAttribute].d.ts +3 -0
  1298. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/asyncOne[loadAttribute].js +6 -0
  1299. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/asyncOne[loadAttribute].js.map +1 -0
  1300. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/loadProduct[loadAttribute].d.ts +3 -0
  1301. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/loadProduct[loadAttribute].js +5 -0
  1302. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/loadProduct[loadAttribute].js.map +1 -0
  1303. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/route.json +4 -0
  1304. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/syncOne[loadAttribute].d.ts +3 -0
  1305. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/syncOne[loadAttribute].js +5 -0
  1306. package/dist/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/syncOne[loadAttribute].js.map +1 -0
  1307. package/dist/lib/middleware/tests/unit/404page.handling.test.d.ts +1 -0
  1308. package/dist/lib/middleware/tests/unit/404page.handling.test.js +51 -0
  1309. package/dist/lib/middleware/tests/unit/404page.handling.test.js.map +1 -0
  1310. package/dist/lib/middleware/tests/unit/500error.handling.test.d.ts +1 -0
  1311. package/dist/lib/middleware/tests/unit/500error.handling.test.js +30 -0
  1312. package/dist/lib/middleware/tests/unit/500error.handling.test.js.map +1 -0
  1313. package/dist/lib/middleware/tests/unit/apiHandler.middleware.test.d.ts +1 -0
  1314. package/dist/lib/middleware/tests/unit/apiHandler.middleware.test.js +36 -0
  1315. package/dist/lib/middleware/tests/unit/apiHandler.middleware.test.js.map +1 -0
  1316. package/dist/lib/middleware/tests/unit/delegate.test.d.ts +1 -0
  1317. package/dist/lib/middleware/tests/unit/delegate.test.js +63 -0
  1318. package/dist/lib/middleware/tests/unit/delegate.test.js.map +1 -0
  1319. package/dist/lib/middleware/tests/unit/handler.getMiddlewaresByRoute.test.d.ts +1 -0
  1320. package/dist/lib/middleware/tests/unit/handler.getMiddlewaresByRoute.test.js +40 -0
  1321. package/dist/lib/middleware/tests/unit/handler.getMiddlewaresByRoute.test.js.map +1 -0
  1322. package/dist/lib/middleware/tests/unit/handlers.middleware.test.d.ts +1 -0
  1323. package/dist/lib/middleware/tests/unit/handlers.middleware.test.js +52 -0
  1324. package/dist/lib/middleware/tests/unit/handlers.middleware.test.js.map +1 -0
  1325. package/dist/lib/middleware/tests/unit/middleware.buildMiddlewareFunction.test.d.ts +1 -0
  1326. package/dist/lib/middleware/tests/unit/middleware.buildMiddlewareFunction.test.js +66 -0
  1327. package/dist/lib/middleware/tests/unit/middleware.buildMiddlewareFunction.test.js.map +1 -0
  1328. package/dist/lib/middleware/tests/unit/middleware.getRouteFromPath.test.d.ts +1 -0
  1329. package/dist/lib/middleware/tests/unit/middleware.getRouteFromPath.test.js +93 -0
  1330. package/dist/lib/middleware/tests/unit/middleware.getRouteFromPath.test.js.map +1 -0
  1331. package/dist/lib/middleware/tests/unit/middleware.noDublicateId.test.d.ts +1 -0
  1332. package/dist/lib/middleware/tests/unit/middleware.noDublicateId.test.js +104 -0
  1333. package/dist/lib/middleware/tests/unit/middleware.noDublicateId.test.js.map +1 -0
  1334. package/dist/lib/middleware/tests/unit/middleware.scanForMiddlewareFunctions.test.d.ts +1 -0
  1335. package/dist/lib/middleware/tests/unit/middleware.scanForMiddlewareFunctions.test.js +81 -0
  1336. package/dist/lib/middleware/tests/unit/middleware.scanForMiddlewareFunctions.test.js.map +1 -0
  1337. package/dist/lib/middlewares/bodyJson.d.ts +2 -0
  1338. package/dist/lib/middlewares/bodyJson.js +5 -0
  1339. package/dist/lib/middlewares/bodyJson.js.map +1 -0
  1340. package/dist/lib/middlewares/multerNone.d.ts +2 -0
  1341. package/dist/lib/middlewares/multerNone.js +6 -0
  1342. package/dist/lib/middlewares/multerNone.js.map +1 -0
  1343. package/dist/lib/middlewares/publicStatic.d.ts +1 -0
  1344. package/dist/lib/middlewares/publicStatic.js +24 -0
  1345. package/dist/lib/middlewares/publicStatic.js.map +1 -0
  1346. package/dist/lib/middlewares/static.d.ts +2 -0
  1347. package/dist/lib/middlewares/static.js +38 -0
  1348. package/dist/lib/middlewares/static.js.map +1 -0
  1349. package/dist/lib/middlewares/themePublicStatic.d.ts +1 -0
  1350. package/dist/lib/middlewares/themePublicStatic.js +31 -0
  1351. package/dist/lib/middlewares/themePublicStatic.js.map +1 -0
  1352. package/dist/lib/pathToRegexp.d.ts +14 -0
  1353. package/dist/lib/pathToRegexp.js +165 -0
  1354. package/dist/lib/pathToRegexp.js.map +1 -0
  1355. package/dist/lib/postgres/connection.d.ts +5 -0
  1356. package/dist/lib/postgres/connection.js +64 -0
  1357. package/dist/lib/postgres/connection.js.map +1 -0
  1358. package/dist/lib/response/render.d.ts +1 -0
  1359. package/dist/lib/response/render.js +109 -0
  1360. package/dist/lib/response/render.js.map +1 -0
  1361. package/dist/lib/router/Router.d.ts +8 -0
  1362. package/dist/lib/router/Router.js +43 -0
  1363. package/dist/lib/router/Router.js.map +1 -0
  1364. package/dist/lib/router/buildAbsoluteUrl.d.ts +9 -0
  1365. package/dist/lib/router/buildAbsoluteUrl.js +18 -0
  1366. package/dist/lib/router/buildAbsoluteUrl.js.map +1 -0
  1367. package/dist/lib/router/buildUrl.d.ts +9 -0
  1368. package/dist/lib/router/buildUrl.js +26 -0
  1369. package/dist/lib/router/buildUrl.js.map +1 -0
  1370. package/dist/lib/router/index.d.ts +2 -0
  1371. package/dist/lib/router/index.js +3 -0
  1372. package/dist/lib/router/index.js.map +1 -0
  1373. package/dist/lib/router/loadModuleRoutes.d.ts +1 -0
  1374. package/dist/lib/router/loadModuleRoutes.js +28 -0
  1375. package/dist/lib/router/loadModuleRoutes.js.map +1 -0
  1376. package/dist/lib/router/registerAdminRoute.d.ts +9 -0
  1377. package/dist/lib/router/registerAdminRoute.js +24 -0
  1378. package/dist/lib/router/registerAdminRoute.js.map +1 -0
  1379. package/dist/lib/router/registerFrontStoreRoute.d.ts +9 -0
  1380. package/dist/lib/router/registerFrontStoreRoute.js +25 -0
  1381. package/dist/lib/router/registerFrontStoreRoute.js.map +1 -0
  1382. package/dist/lib/router/scanForRoutes.d.ts +25 -0
  1383. package/dist/lib/router/scanForRoutes.js +76 -0
  1384. package/dist/lib/router/scanForRoutes.js.map +1 -0
  1385. package/dist/lib/router/sortRoutes.d.ts +1 -0
  1386. package/dist/lib/router/sortRoutes.js +24 -0
  1387. package/dist/lib/router/sortRoutes.js.map +1 -0
  1388. package/dist/lib/router/tests/unit/a/invalidMethod/routeOne/route.json +4 -0
  1389. package/dist/lib/router/tests/unit/a/invalidPath/routeTwo/route.json +4 -0
  1390. package/dist/lib/router/tests/unit/b/routeOne/route.json +4 -0
  1391. package/dist/lib/router/tests/unit/b/routeThree/route.json +4 -0
  1392. package/dist/lib/router/tests/unit/b/routeTwo/route.json +4 -0
  1393. package/dist/lib/router/tests/unit/unit.scanForRoutes.test.d.ts +1 -0
  1394. package/dist/lib/router/tests/unit/unit.scanForRoutes.test.js +19 -0
  1395. package/dist/lib/router/tests/unit/unit.scanForRoutes.test.js.map +1 -0
  1396. package/dist/lib/router/tests/unit/unit.validateRoute.test.d.ts +1 -0
  1397. package/dist/lib/router/tests/unit/unit.validateRoute.test.js +26 -0
  1398. package/dist/lib/router/tests/unit/unit.validateRoute.test.js.map +1 -0
  1399. package/dist/lib/router/validateRoute.d.ts +1 -0
  1400. package/dist/lib/router/validateRoute.js +23 -0
  1401. package/dist/lib/router/validateRoute.js.map +1 -0
  1402. package/dist/lib/util/assign.d.ts +8 -0
  1403. package/dist/lib/util/assign.js +32 -0
  1404. package/dist/lib/util/assign.js.map +1 -0
  1405. package/dist/lib/util/buildFilterFromUrl.d.ts +1 -0
  1406. package/dist/lib/util/buildFilterFromUrl.js +45 -0
  1407. package/dist/lib/util/buildFilterFromUrl.js.map +1 -0
  1408. package/dist/lib/util/camelCase.d.ts +1 -0
  1409. package/dist/lib/util/camelCase.js +15 -0
  1410. package/dist/lib/util/camelCase.js.map +1 -0
  1411. package/dist/lib/util/defaultPaginationFilters.d.ts +5 -0
  1412. package/dist/lib/util/defaultPaginationFilters.js +94 -0
  1413. package/dist/lib/util/defaultPaginationFilters.js.map +1 -0
  1414. package/dist/lib/util/events.d.ts +3 -0
  1415. package/dist/lib/util/events.js +4 -0
  1416. package/dist/lib/util/events.js.map +1 -0
  1417. package/dist/lib/util/filterOperationMap.d.ts +13 -0
  1418. package/dist/lib/util/filterOperationMap.js +27 -0
  1419. package/dist/lib/util/filterOperationMap.js.map +1 -0
  1420. package/dist/lib/util/formToJson.d.ts +1 -0
  1421. package/dist/lib/util/formToJson.js +47 -0
  1422. package/dist/lib/util/formToJson.js.map +1 -0
  1423. package/dist/lib/util/get.d.ts +10 -0
  1424. package/dist/lib/util/get.js +27 -0
  1425. package/dist/lib/util/get.js.map +1 -0
  1426. package/dist/lib/util/getConfig.d.ts +4 -0
  1427. package/dist/lib/util/getConfig.js +8 -0
  1428. package/dist/lib/util/getConfig.js.map +1 -0
  1429. package/dist/lib/util/getEnabledTheme.d.ts +6 -0
  1430. package/dist/lib/util/getEnabledTheme.js +38 -0
  1431. package/dist/lib/util/getEnabledTheme.js.map +1 -0
  1432. package/dist/lib/util/getEnv.d.ts +8 -0
  1433. package/dist/lib/util/getEnv.js +12 -0
  1434. package/dist/lib/util/getEnv.js.map +1 -0
  1435. package/dist/lib/util/hookable.d.ts +19 -0
  1436. package/dist/lib/util/hookable.js +87 -0
  1437. package/dist/lib/util/hookable.js.map +1 -0
  1438. package/dist/lib/util/httpStatus.d.ts +10 -0
  1439. package/dist/lib/util/httpStatus.js +11 -0
  1440. package/dist/lib/util/httpStatus.js.map +1 -0
  1441. package/dist/lib/util/isAjax.d.ts +2 -0
  1442. package/dist/lib/util/isAjax.js +4 -0
  1443. package/dist/lib/util/isAjax.js.map +1 -0
  1444. package/dist/lib/util/isDevelopmentMode.d.ts +3 -0
  1445. package/dist/lib/util/isDevelopmentMode.js +3 -0
  1446. package/dist/lib/util/isDevelopmentMode.js.map +1 -0
  1447. package/dist/lib/util/isPlainObject.d.ts +6 -0
  1448. package/dist/lib/util/isPlainObject.js +13 -0
  1449. package/dist/lib/util/isPlainObject.js.map +1 -0
  1450. package/dist/lib/util/isProductionMode.d.ts +3 -0
  1451. package/dist/lib/util/isProductionMode.js +3 -0
  1452. package/dist/lib/util/isProductionMode.js.map +1 -0
  1453. package/dist/lib/util/isResolvable.d.ts +10 -0
  1454. package/dist/lib/util/isResolvable.js +26 -0
  1455. package/dist/lib/util/isResolvable.js.map +1 -0
  1456. package/dist/lib/util/jsonParse.d.ts +9 -0
  1457. package/dist/lib/util/jsonParse.js +17 -0
  1458. package/dist/lib/util/jsonParse.js.map +1 -0
  1459. package/dist/lib/util/merge.d.ts +12 -0
  1460. package/dist/lib/util/merge.js +65 -0
  1461. package/dist/lib/util/merge.js.map +1 -0
  1462. package/dist/lib/util/passwordHelper.d.ts +5 -0
  1463. package/dist/lib/util/passwordHelper.js +37 -0
  1464. package/dist/lib/util/passwordHelper.js.map +1 -0
  1465. package/dist/lib/util/readCsvFile.d.ts +2 -0
  1466. package/dist/lib/util/readCsvFile.js +22 -0
  1467. package/dist/lib/util/readCsvFile.js.map +1 -0
  1468. package/dist/lib/util/registry.d.ts +36 -0
  1469. package/dist/lib/util/registry.js +228 -0
  1470. package/dist/lib/util/registry.js.map +1 -0
  1471. package/dist/lib/util/tests/unit/util.assign.test.d.ts +1 -0
  1472. package/dist/lib/util/tests/unit/util.assign.test.js +36 -0
  1473. package/dist/lib/util/tests/unit/util.assign.test.js.map +1 -0
  1474. package/dist/lib/util/tests/unit/util.get.test.d.ts +1 -0
  1475. package/dist/lib/util/tests/unit/util.get.test.js +22 -0
  1476. package/dist/lib/util/tests/unit/util.get.test.js.map +1 -0
  1477. package/dist/lib/util/tests/unit/util.getConfig.test.d.ts +1 -0
  1478. package/dist/lib/util/tests/unit/util.getConfig.test.js +8 -0
  1479. package/dist/lib/util/tests/unit/util.getConfig.test.js.map +1 -0
  1480. package/dist/lib/util/tests/unit/util.hookable.test.d.ts +1 -0
  1481. package/dist/lib/util/tests/unit/util.hookable.test.js +154 -0
  1482. package/dist/lib/util/tests/unit/util.hookable.test.js.map +1 -0
  1483. package/dist/lib/util/tests/unit/util.merge.test.d.ts +1 -0
  1484. package/dist/lib/util/tests/unit/util.merge.test.js +48 -0
  1485. package/dist/lib/util/tests/unit/util.merge.test.js.map +1 -0
  1486. package/dist/lib/util/tests/unit/util.registry.test.d.ts +1 -0
  1487. package/dist/lib/util/tests/unit/util.registry.test.js +179 -0
  1488. package/dist/lib/util/tests/unit/util.registry.test.js.map +1 -0
  1489. package/dist/lib/util/validateConfiguration.d.ts +1 -0
  1490. package/dist/lib/util/validateConfiguration.js +71 -0
  1491. package/dist/lib/util/validateConfiguration.js.map +1 -0
  1492. package/dist/lib/util/validator.d.ts +22 -0
  1493. package/dist/lib/util/validator.js +63 -0
  1494. package/dist/lib/util/validator.js.map +1 -0
  1495. package/dist/lib/webpack/createBaseConfig.d.ts +45 -0
  1496. package/dist/lib/webpack/createBaseConfig.js +156 -0
  1497. package/dist/lib/webpack/createBaseConfig.js.map +1 -0
  1498. package/dist/lib/webpack/dev/createConfigClient.d.ts +45 -0
  1499. package/dist/lib/webpack/dev/createConfigClient.js +95 -0
  1500. package/dist/lib/webpack/dev/createConfigClient.js.map +1 -0
  1501. package/dist/lib/webpack/getRouteBuildPath.d.ts +1 -0
  1502. package/dist/lib/webpack/getRouteBuildPath.js +8 -0
  1503. package/dist/lib/webpack/getRouteBuildPath.js.map +1 -0
  1504. package/dist/lib/webpack/getRouteBuildSubPath.d.ts +1 -0
  1505. package/dist/lib/webpack/getRouteBuildSubPath.js +5 -0
  1506. package/dist/lib/webpack/getRouteBuildSubPath.js.map +1 -0
  1507. package/dist/lib/webpack/isBuildRequired.d.ts +1 -0
  1508. package/dist/lib/webpack/isBuildRequired.js +9 -0
  1509. package/dist/lib/webpack/isBuildRequired.js.map +1 -0
  1510. package/dist/lib/webpack/loaders/AreaLoader.d.ts +1 -0
  1511. package/dist/lib/webpack/loaders/AreaLoader.js +71 -0
  1512. package/dist/lib/webpack/loaders/AreaLoader.js.map +1 -0
  1513. package/dist/lib/webpack/loaders/GraphQLAPILoader.d.ts +1 -0
  1514. package/dist/lib/webpack/loaders/GraphQLAPILoader.js +14 -0
  1515. package/dist/lib/webpack/loaders/GraphQLAPILoader.js.map +1 -0
  1516. package/dist/lib/webpack/loaders/GraphqlLoader.d.ts +1 -0
  1517. package/dist/lib/webpack/loaders/GraphqlLoader.js +11 -0
  1518. package/dist/lib/webpack/loaders/GraphqlLoader.js.map +1 -0
  1519. package/dist/lib/webpack/loaders/LayoutLoader.d.ts +1 -0
  1520. package/dist/lib/webpack/loaders/LayoutLoader.js +6 -0
  1521. package/dist/lib/webpack/loaders/LayoutLoader.js.map +1 -0
  1522. package/dist/lib/webpack/loaders/StyleLoader.d.ts +1 -0
  1523. package/dist/lib/webpack/loaders/StyleLoader.js +4 -0
  1524. package/dist/lib/webpack/loaders/StyleLoader.js.map +1 -0
  1525. package/dist/lib/webpack/loaders/TailwindLoader.d.ts +1 -0
  1526. package/dist/lib/webpack/loaders/TailwindLoader.js +45 -0
  1527. package/dist/lib/webpack/loaders/TailwindLoader.js.map +1 -0
  1528. package/dist/lib/webpack/loaders/TranslationLoader.d.ts +1 -0
  1529. package/dist/lib/webpack/loaders/TranslationLoader.js +20 -0
  1530. package/dist/lib/webpack/loaders/TranslationLoader.js.map +1 -0
  1531. package/dist/lib/webpack/loaders/loadTranslationFromCsv.d.ts +1 -0
  1532. package/dist/lib/webpack/loaders/loadTranslationFromCsv.js +35 -0
  1533. package/dist/lib/webpack/loaders/loadTranslationFromCsv.js.map +1 -0
  1534. package/dist/lib/webpack/plugins/FileListPlugin.d.ts +5 -0
  1535. package/dist/lib/webpack/plugins/FileListPlugin.js +34 -0
  1536. package/dist/lib/webpack/plugins/FileListPlugin.js.map +1 -0
  1537. package/dist/lib/webpack/plugins/GraphqlPlugin.d.ts +10 -0
  1538. package/dist/lib/webpack/plugins/GraphqlPlugin.js +21 -0
  1539. package/dist/lib/webpack/plugins/GraphqlPlugin.js.map +1 -0
  1540. package/dist/lib/webpack/plugins/Tailwindcss.d.ts +6 -0
  1541. package/dist/lib/webpack/plugins/Tailwindcss.js +77 -0
  1542. package/dist/lib/webpack/plugins/Tailwindcss.js.map +1 -0
  1543. package/dist/lib/webpack/prod/createConfigClient.d.ts +45 -0
  1544. package/dist/lib/webpack/prod/createConfigClient.js +73 -0
  1545. package/dist/lib/webpack/prod/createConfigClient.js.map +1 -0
  1546. package/dist/lib/webpack/prod/createConfigServer.d.ts +45 -0
  1547. package/dist/lib/webpack/prod/createConfigServer.js +34 -0
  1548. package/dist/lib/webpack/prod/createConfigServer.js.map +1 -0
  1549. package/dist/lib/webpack/resolveAlias.d.ts +2 -0
  1550. package/dist/lib/webpack/resolveAlias.js +48 -0
  1551. package/dist/lib/webpack/resolveAlias.js.map +1 -0
  1552. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/a/A.d.ts +1 -0
  1553. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/a/A.js +2 -0
  1554. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/a/A.js.map +1 -0
  1555. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/a/a.scss +0 -0
  1556. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/b/B.d.ts +1 -0
  1557. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/b/B.js +2 -0
  1558. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/b/B.js.map +1 -0
  1559. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/b/B.scss +0 -0
  1560. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/b/bb/BB.d.ts +1 -0
  1561. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/b/bb/BB.js +2 -0
  1562. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/b/bb/BB.js.map +1 -0
  1563. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/d/D.d.ts +1 -0
  1564. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/d/D.js +2 -0
  1565. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/d/D.js.map +1 -0
  1566. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/d/D.scss +0 -0
  1567. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/d/dd/DD.d.ts +1 -0
  1568. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/d/dd/DD.js +2 -0
  1569. package/dist/lib/webpack/tests/unit/extensions/extensionA/components/d/dd/DD.js.map +1 -0
  1570. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/a/A.d.ts +1 -0
  1571. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/a/A.js +2 -0
  1572. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/a/A.js.map +1 -0
  1573. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/a/a.scss +0 -0
  1574. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/d/D.d.ts +1 -0
  1575. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/d/D.js +2 -0
  1576. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/d/D.js.map +1 -0
  1577. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/d/D.scss +0 -0
  1578. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/d/dd/DD.d.ts +1 -0
  1579. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/d/dd/DD.js +2 -0
  1580. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/d/dd/DD.js.map +1 -0
  1581. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/e/E.d.ts +1 -0
  1582. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/e/E.js +2 -0
  1583. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/e/E.js.map +1 -0
  1584. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/e/E.scss +0 -0
  1585. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/e/ee/EE.d.ts +1 -0
  1586. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/e/ee/EE.js +2 -0
  1587. package/dist/lib/webpack/tests/unit/extensions/extensionB/components/e/ee/EE.js.map +1 -0
  1588. package/dist/lib/webpack/tests/unit/resolveAlias.test.d.ts +1 -0
  1589. package/dist/lib/webpack/tests/unit/resolveAlias.test.js +46 -0
  1590. package/dist/lib/webpack/tests/unit/resolveAlias.test.js.map +1 -0
  1591. package/dist/lib/webpack/tests/unit/theme/components/a/A.d.ts +1 -0
  1592. package/dist/lib/webpack/tests/unit/theme/components/a/A.js +2 -0
  1593. package/dist/lib/webpack/tests/unit/theme/components/a/A.js.map +1 -0
  1594. package/dist/lib/webpack/tests/unit/theme/components/a/a.scss +0 -0
  1595. package/dist/lib/webpack/tests/unit/theme/components/b/B.d.ts +1 -0
  1596. package/dist/lib/webpack/tests/unit/theme/components/b/B.js +2 -0
  1597. package/dist/lib/webpack/tests/unit/theme/components/b/B.js.map +1 -0
  1598. package/dist/lib/webpack/tests/unit/theme/components/b/B.scss +0 -0
  1599. package/dist/lib/webpack/tests/unit/theme/components/b/bb/BB.d.ts +1 -0
  1600. package/dist/lib/webpack/tests/unit/theme/components/b/bb/BB.js +2 -0
  1601. package/dist/lib/webpack/tests/unit/theme/components/b/bb/BB.js.map +1 -0
  1602. package/dist/lib/webpack/util/getTailwindConfig.d.ts +1 -0
  1603. package/dist/lib/webpack/util/getTailwindConfig.js +22 -0
  1604. package/dist/lib/webpack/util/getTailwindConfig.js.map +1 -0
  1605. package/dist/lib/webpack/util/keyGenerator.d.ts +1 -0
  1606. package/dist/lib/webpack/util/keyGenerator.js +10 -0
  1607. package/dist/lib/webpack/util/keyGenerator.js.map +1 -0
  1608. package/dist/lib/webpack/util/parseGraphql.d.ts +6 -0
  1609. package/dist/lib/webpack/util/parseGraphql.js +86 -0
  1610. package/dist/lib/webpack/util/parseGraphql.js.map +1 -0
  1611. package/dist/lib/webpack/util/parseGraphqlByFile.d.ts +5 -0
  1612. package/dist/lib/webpack/util/parseGraphqlByFile.js +170 -0
  1613. package/dist/lib/webpack/util/parseGraphqlByFile.js.map +1 -0
  1614. package/dist/lib/widget/tests/unit/widgetManager.test.d.ts +1 -0
  1615. package/dist/lib/widget/tests/unit/widgetManager.test.js +129 -0
  1616. package/dist/lib/widget/tests/unit/widgetManager.test.js.map +1 -0
  1617. package/dist/lib/widget/widgetManager.d.ts +51 -0
  1618. package/dist/lib/widget/widgetManager.js +309 -0
  1619. package/dist/lib/widget/widgetManager.js.map +1 -0
  1620. package/dist/modules/auth/api/global/[context]getCurrentUser.d.ts +2 -0
  1621. package/dist/modules/auth/api/global/[context]getCurrentUser.js +55 -0
  1622. package/dist/modules/auth/api/global/[context]getCurrentUser.js.map +1 -0
  1623. package/dist/modules/auth/api/global/[getCurrentUser]auth.d.ts +2 -0
  1624. package/dist/modules/auth/api/global/[getCurrentUser]auth.js +53 -0
  1625. package/dist/modules/auth/api/global/[getCurrentUser]auth.js.map +1 -0
  1626. package/dist/modules/auth/api/global/[getCurrentUser]demoAccountBlocking[auth].d.ts +2 -0
  1627. package/dist/modules/auth/api/global/[getCurrentUser]demoAccountBlocking[auth].js +27 -0
  1628. package/dist/modules/auth/api/global/[getCurrentUser]demoAccountBlocking[auth].js.map +1 -0
  1629. package/dist/modules/auth/bootstrap.d.ts +2 -0
  1630. package/dist/modules/auth/bootstrap.js +21 -0
  1631. package/dist/modules/auth/bootstrap.js.map +1 -0
  1632. package/dist/modules/auth/graphql/types/AdminUser/AdminUser.admin.graphql +26 -0
  1633. package/dist/modules/auth/graphql/types/AdminUser/AdminUser.admin.resolvers.d.ts +26 -0
  1634. package/dist/modules/auth/graphql/types/AdminUser/AdminUser.admin.resolvers.js +83 -0
  1635. package/dist/modules/auth/graphql/types/AdminUser/AdminUser.admin.resolvers.js.map +1 -0
  1636. package/dist/modules/auth/migration/Version-1.0.0.d.ts +2 -0
  1637. package/dist/modules/auth/migration/Version-1.0.0.js +26 -0
  1638. package/dist/modules/auth/migration/Version-1.0.0.js.map +1 -0
  1639. package/dist/modules/auth/migration/Version-1.0.1.d.ts +2 -0
  1640. package/dist/modules/auth/migration/Version-1.0.1.js +15 -0
  1641. package/dist/modules/auth/migration/Version-1.0.1.js.map +1 -0
  1642. package/dist/modules/auth/pages/admin/adminLogin/LoginForm.d.ts +17 -0
  1643. package/dist/modules/auth/pages/admin/adminLogin/LoginForm.js +70 -0
  1644. package/dist/modules/auth/pages/admin/adminLogin/LoginForm.js.map +1 -0
  1645. package/dist/modules/auth/pages/admin/adminLogin/LoginForm.scss +53 -0
  1646. package/dist/modules/auth/pages/admin/adminLogin/index.d.ts +2 -0
  1647. package/dist/modules/auth/pages/admin/adminLogin/index.js +18 -0
  1648. package/dist/modules/auth/pages/admin/adminLogin/index.js.map +1 -0
  1649. package/dist/modules/auth/pages/admin/adminLogin/route.json +4 -0
  1650. package/dist/modules/auth/pages/admin/adminLoginJson/[bodyParser]logIn.d.ts +2 -0
  1651. package/dist/modules/auth/pages/admin/adminLoginJson/[bodyParser]logIn.js +38 -0
  1652. package/dist/modules/auth/pages/admin/adminLoginJson/[bodyParser]logIn.js.map +1 -0
  1653. package/dist/modules/auth/pages/admin/adminLoginJson/payloadSchema.json +20 -0
  1654. package/dist/modules/auth/pages/admin/adminLoginJson/route.json +6 -0
  1655. package/dist/modules/auth/pages/admin/adminLogoutJson/logout.d.ts +2 -0
  1656. package/dist/modules/auth/pages/admin/adminLogoutJson/logout.js +33 -0
  1657. package/dist/modules/auth/pages/admin/adminLogoutJson/logout.js.map +1 -0
  1658. package/dist/modules/auth/pages/admin/adminLogoutJson/route.json +4 -0
  1659. package/dist/modules/auth/pages/admin/all/AdminUser.d.ts +23 -0
  1660. package/dist/modules/auth/pages/admin/all/AdminUser.js +72 -0
  1661. package/dist/modules/auth/pages/admin/all/AdminUser.js.map +1 -0
  1662. package/dist/modules/auth/pages/admin/all/AdminUser.scss +20 -0
  1663. package/dist/modules/auth/pages/admin/all/[context]auth.d.ts +2 -0
  1664. package/dist/modules/auth/pages/admin/all/[context]auth.js +33 -0
  1665. package/dist/modules/auth/pages/admin/all/[context]auth.js.map +1 -0
  1666. package/dist/modules/auth/services/getAdminSessionCookieName.d.ts +1 -0
  1667. package/dist/modules/auth/services/getAdminSessionCookieName.js +3 -0
  1668. package/dist/modules/auth/services/getAdminSessionCookieName.js.map +1 -0
  1669. package/dist/modules/auth/services/getCookieSecret.d.ts +1 -0
  1670. package/dist/modules/auth/services/getCookieSecret.js +3 -0
  1671. package/dist/modules/auth/services/getCookieSecret.js.map +1 -0
  1672. package/dist/modules/auth/services/getFrontStoreSessionCookieName.d.ts +1 -0
  1673. package/dist/modules/auth/services/getFrontStoreSessionCookieName.js +3 -0
  1674. package/dist/modules/auth/services/getFrontStoreSessionCookieName.js.map +1 -0
  1675. package/dist/modules/auth/services/getSessionConfig.d.ts +9 -0
  1676. package/dist/modules/auth/services/getSessionConfig.js +19 -0
  1677. package/dist/modules/auth/services/getSessionConfig.js.map +1 -0
  1678. package/dist/modules/auth/services/loginUserWithEmail.d.ts +7 -0
  1679. package/dist/modules/auth/services/loginUserWithEmail.js +28 -0
  1680. package/dist/modules/auth/services/loginUserWithEmail.js.map +1 -0
  1681. package/dist/modules/auth/services/logoutUser.d.ts +4 -0
  1682. package/dist/modules/auth/services/logoutUser.js +8 -0
  1683. package/dist/modules/auth/services/logoutUser.js.map +1 -0
  1684. package/dist/modules/base/api/global/[apiResponse]apiErrorHandler.d.ts +2 -0
  1685. package/dist/modules/base/api/global/[apiResponse]apiErrorHandler.js +28 -0
  1686. package/dist/modules/base/api/global/[apiResponse]apiErrorHandler.js.map +1 -0
  1687. package/dist/modules/base/api/global/[auth]apiResponse[apiErrorHandler].d.ts +2 -0
  1688. package/dist/modules/base/api/global/[auth]apiResponse[apiErrorHandler].js +22 -0
  1689. package/dist/modules/base/api/global/[auth]apiResponse[apiErrorHandler].js.map +1 -0
  1690. package/dist/modules/base/api/global/[auth]payloadValidate.d.ts +2 -0
  1691. package/dist/modules/base/api/global/[auth]payloadValidate.js +48 -0
  1692. package/dist/modules/base/api/global/[auth]payloadValidate.js.map +1 -0
  1693. package/dist/modules/base/api/global/[payloadValidate]escapeHtml.d.ts +2 -0
  1694. package/dist/modules/base/api/global/[payloadValidate]escapeHtml.js +13 -0
  1695. package/dist/modules/base/api/global/[payloadValidate]escapeHtml.js.map +1 -0
  1696. package/dist/modules/base/api/global/context.d.ts +2 -0
  1697. package/dist/modules/base/api/global/context.js +34 -0
  1698. package/dist/modules/base/api/global/context.js.map +1 -0
  1699. package/dist/modules/base/bootstrap.d.ts +2 -0
  1700. package/dist/modules/base/bootstrap.js +85 -0
  1701. package/dist/modules/base/bootstrap.js.map +1 -0
  1702. package/dist/modules/base/graphql/types/Country/Country.graphql +13 -0
  1703. package/dist/modules/base/graphql/types/Country/Country.resolvers.d.ts +12 -0
  1704. package/dist/modules/base/graphql/types/Country/Country.resolvers.js +44 -0
  1705. package/dist/modules/base/graphql/types/Country/Country.resolvers.js.map +1 -0
  1706. package/dist/modules/base/graphql/types/Currency/Currency.graphql +11 -0
  1707. package/dist/modules/base/graphql/types/Currency/Currency.resolvers.d.ts +6 -0
  1708. package/dist/modules/base/graphql/types/Currency/Currency.resolvers.js +7 -0
  1709. package/dist/modules/base/graphql/types/Currency/Currency.resolvers.js.map +1 -0
  1710. package/dist/modules/base/graphql/types/DateTime/DateTime.graphql +8 -0
  1711. package/dist/modules/base/graphql/types/DateTime/DateTime.resolvers.d.ts +10 -0
  1712. package/dist/modules/base/graphql/types/DateTime/DateTime.resolvers.js +24 -0
  1713. package/dist/modules/base/graphql/types/DateTime/DateTime.resolvers.js.map +1 -0
  1714. package/dist/modules/base/graphql/types/Province/Province.graphql +12 -0
  1715. package/dist/modules/base/graphql/types/Province/Province.resolvers.d.ts +13 -0
  1716. package/dist/modules/base/graphql/types/Province/Province.resolvers.js +42 -0
  1717. package/dist/modules/base/graphql/types/Province/Province.resolvers.js.map +1 -0
  1718. package/dist/modules/base/graphql/types/Route/Route.admin.graphql +15 -0
  1719. package/dist/modules/base/graphql/types/Route/Route.admin.resolvers.d.ts +6 -0
  1720. package/dist/modules/base/graphql/types/Route/Route.admin.resolvers.js +10 -0
  1721. package/dist/modules/base/graphql/types/Route/Route.admin.resolvers.js.map +1 -0
  1722. package/dist/modules/base/graphql/types/Timezone/Timezone.graphql +11 -0
  1723. package/dist/modules/base/graphql/types/Timezone/Timezone.resolvers.d.ts +6 -0
  1724. package/dist/modules/base/graphql/types/Timezone/Timezone.resolvers.js +7 -0
  1725. package/dist/modules/base/graphql/types/Timezone/Timezone.resolvers.js.map +1 -0
  1726. package/dist/modules/base/graphql/types/Url/Url.graphql +11 -0
  1727. package/dist/modules/base/graphql/types/Url/Url.resolvers.d.ts +11 -0
  1728. package/dist/modules/base/graphql/types/Url/Url.resolvers.js +19 -0
  1729. package/dist/modules/base/graphql/types/Url/Url.resolvers.js.map +1 -0
  1730. package/dist/modules/base/graphql/types/Version/Version.graphql +3 -0
  1731. package/dist/modules/base/graphql/types/Version/Version.resolvers.d.ts +6 -0
  1732. package/dist/modules/base/graphql/types/Version/Version.resolvers.js +16 -0
  1733. package/dist/modules/base/graphql/types/Version/Version.resolvers.js.map +1 -0
  1734. package/dist/modules/base/migration/Version-1.0.1.d.ts +2 -0
  1735. package/dist/modules/base/migration/Version-1.0.1.js +12 -0
  1736. package/dist/modules/base/migration/Version-1.0.1.js.map +1 -0
  1737. package/dist/modules/base/pages/admin/all/[context]isAdmin[auth].d.ts +2 -0
  1738. package/dist/modules/base/pages/admin/all/[context]isAdmin[auth].js +5 -0
  1739. package/dist/modules/base/pages/admin/all/[context]isAdmin[auth].js.map +1 -0
  1740. package/dist/modules/base/pages/global/[auth]notFound[response].d.ts +2 -0
  1741. package/dist/modules/base/pages/global/[auth]notFound[response].js +15 -0
  1742. package/dist/modules/base/pages/global/[auth]notFound[response].js.map +1 -0
  1743. package/dist/modules/base/pages/global/[response]errorHandler.d.ts +2 -0
  1744. package/dist/modules/base/pages/global/[response]errorHandler.js +28 -0
  1745. package/dist/modules/base/pages/global/[response]errorHandler.js.map +1 -0
  1746. package/dist/modules/base/pages/global/context.d.ts +2 -0
  1747. package/dist/modules/base/pages/global/context.js +35 -0
  1748. package/dist/modules/base/pages/global/context.js.map +1 -0
  1749. package/dist/modules/base/pages/global/response[errorHandler].d.ts +2 -0
  1750. package/dist/modules/base/pages/global/response[errorHandler].js +78 -0
  1751. package/dist/modules/base/pages/global/response[errorHandler].js.map +1 -0
  1752. package/dist/modules/base/services/escapePayload.d.ts +1 -0
  1753. package/dist/modules/base/services/escapePayload.js +32 -0
  1754. package/dist/modules/base/services/escapePayload.js.map +1 -0
  1755. package/dist/modules/base/services/getAjv.d.ts +1 -0
  1756. package/dist/modules/base/services/getAjv.js +17 -0
  1757. package/dist/modules/base/services/getAjv.js.map +1 -0
  1758. package/dist/modules/base/services/markSkipEscape.d.ts +1 -0
  1759. package/dist/modules/base/services/markSkipEscape.js +32 -0
  1760. package/dist/modules/base/services/markSkipEscape.js.map +1 -0
  1761. package/dist/modules/base/services/notifications.d.ts +2 -0
  1762. package/dist/modules/base/services/notifications.js +19 -0
  1763. package/dist/modules/base/services/notifications.js.map +1 -0
  1764. package/dist/modules/base/services/secret.d.ts +2 -0
  1765. package/dist/modules/base/services/secret.js +4 -0
  1766. package/dist/modules/base/services/secret.js.map +1 -0
  1767. package/dist/modules/camp/api/addCustomer/[context]bodyParser[auth].d.ts +2 -0
  1768. package/dist/modules/camp/api/addCustomer/[context]bodyParser[auth].js +5 -0
  1769. package/dist/modules/camp/api/addCustomer/[context]bodyParser[auth].js.map +1 -0
  1770. package/dist/modules/camp/api/addCustomer/addCustomer[finish].d.ts +2 -0
  1771. package/dist/modules/camp/api/addCustomer/addCustomer[finish].js +10 -0
  1772. package/dist/modules/camp/api/addCustomer/addCustomer[finish].js.map +1 -0
  1773. package/dist/modules/camp/api/addCustomer/finish[apiResponse].d.ts +2 -0
  1774. package/dist/modules/camp/api/addCustomer/finish[apiResponse].js +14 -0
  1775. package/dist/modules/camp/api/addCustomer/finish[apiResponse].js.map +1 -0
  1776. package/dist/modules/camp/api/addCustomer/payloadSchema.json +10 -0
  1777. package/dist/modules/camp/api/addCustomer/route.json +5 -0
  1778. package/dist/modules/camp/api/createParticipant/[context]bodyParser[auth].d.ts +2 -0
  1779. package/dist/modules/camp/api/createParticipant/[context]bodyParser[auth].js +5 -0
  1780. package/dist/modules/camp/api/createParticipant/[context]bodyParser[auth].js.map +1 -0
  1781. package/dist/modules/camp/api/createParticipant/createParticipant[finish].d.ts +2 -0
  1782. package/dist/modules/camp/api/createParticipant/createParticipant[finish].js +8 -0
  1783. package/dist/modules/camp/api/createParticipant/createParticipant[finish].js.map +1 -0
  1784. package/dist/modules/camp/api/createParticipant/finish[apiResponse].d.ts +2 -0
  1785. package/dist/modules/camp/api/createParticipant/finish[apiResponse].js +27 -0
  1786. package/dist/modules/camp/api/createParticipant/finish[apiResponse].js.map +1 -0
  1787. package/dist/modules/camp/api/createParticipant/payloadSchema.json +10 -0
  1788. package/dist/modules/camp/api/createParticipant/route.json +5 -0
  1789. package/dist/modules/camp/api/createRegistration/[context]bodyParser[auth].d.ts +2 -0
  1790. package/dist/modules/camp/api/createRegistration/[context]bodyParser[auth].js +5 -0
  1791. package/dist/modules/camp/api/createRegistration/[context]bodyParser[auth].js.map +1 -0
  1792. package/dist/modules/camp/api/createRegistration/createRegistration[finish].d.ts +2 -0
  1793. package/dist/modules/camp/api/createRegistration/createRegistration[finish].js +8 -0
  1794. package/dist/modules/camp/api/createRegistration/createRegistration[finish].js.map +1 -0
  1795. package/dist/modules/camp/api/createRegistration/finish[apiResponse].d.ts +2 -0
  1796. package/dist/modules/camp/api/createRegistration/finish[apiResponse].js +22 -0
  1797. package/dist/modules/camp/api/createRegistration/finish[apiResponse].js.map +1 -0
  1798. package/dist/modules/camp/api/createRegistration/payloadSchema.json +10 -0
  1799. package/dist/modules/camp/api/createRegistration/route.json +5 -0
  1800. package/dist/modules/camp/api/deleteParticipant/deleteParticipant.d.ts +2 -0
  1801. package/dist/modules/camp/api/deleteParticipant/deleteParticipant.js +24 -0
  1802. package/dist/modules/camp/api/deleteParticipant/deleteParticipant.js.map +1 -0
  1803. package/dist/modules/camp/api/deleteParticipant/route.json +5 -0
  1804. package/dist/modules/camp/api/deleteRegistration/deleteRegistration.d.ts +2 -0
  1805. package/dist/modules/camp/api/deleteRegistration/deleteRegistration.js +24 -0
  1806. package/dist/modules/camp/api/deleteRegistration/deleteRegistration.js.map +1 -0
  1807. package/dist/modules/camp/api/deleteRegistration/route.json +5 -0
  1808. package/dist/modules/camp/api/removeCustomer/removeCustomer.d.ts +2 -0
  1809. package/dist/modules/camp/api/removeCustomer/removeCustomer.js +24 -0
  1810. package/dist/modules/camp/api/removeCustomer/removeCustomer.js.map +1 -0
  1811. package/dist/modules/camp/api/removeCustomer/route.json +5 -0
  1812. package/dist/modules/camp/api/updateParticipant/[context]bodyParser[auth].d.ts +2 -0
  1813. package/dist/modules/camp/api/updateParticipant/[context]bodyParser[auth].js +5 -0
  1814. package/dist/modules/camp/api/updateParticipant/[context]bodyParser[auth].js.map +1 -0
  1815. package/dist/modules/camp/api/updateParticipant/finish[apiResponse].d.ts +2 -0
  1816. package/dist/modules/camp/api/updateParticipant/finish[apiResponse].js +27 -0
  1817. package/dist/modules/camp/api/updateParticipant/finish[apiResponse].js.map +1 -0
  1818. package/dist/modules/camp/api/updateParticipant/payloadSchema.json +10 -0
  1819. package/dist/modules/camp/api/updateParticipant/route.json +5 -0
  1820. package/dist/modules/camp/api/updateParticipant/updateParticipant[finish].d.ts +2 -0
  1821. package/dist/modules/camp/api/updateParticipant/updateParticipant[finish].js +8 -0
  1822. package/dist/modules/camp/api/updateParticipant/updateParticipant[finish].js.map +1 -0
  1823. package/dist/modules/camp/bootstrap.d.ts +2 -0
  1824. package/dist/modules/camp/bootstrap.js +11 -0
  1825. package/dist/modules/camp/bootstrap.js.map +1 -0
  1826. package/dist/modules/camp/graphql/types/Participant/Participant.graphql +26 -0
  1827. package/dist/modules/camp/graphql/types/Participant/Participant.resolvers.d.ts +32 -0
  1828. package/dist/modules/camp/graphql/types/Participant/Participant.resolvers.js +44 -0
  1829. package/dist/modules/camp/graphql/types/Participant/Participant.resolvers.js.map +1 -0
  1830. package/dist/modules/camp/graphql/types/Registration/Registration.graphql +26 -0
  1831. package/dist/modules/camp/graphql/types/Registration/Registration.resolvers.d.ts +29 -0
  1832. package/dist/modules/camp/graphql/types/Registration/Registration.resolvers.js +35 -0
  1833. package/dist/modules/camp/graphql/types/Registration/Registration.resolvers.js.map +1 -0
  1834. package/dist/modules/camp/migration/Version-1.0.0.d.ts +1 -0
  1835. package/dist/modules/camp/migration/Version-1.0.0.js +20 -0
  1836. package/dist/modules/camp/migration/Version-1.0.0.js.map +1 -0
  1837. package/dist/modules/camp/migration/Version-1.0.1.d.ts +1 -0
  1838. package/dist/modules/camp/migration/Version-1.0.1.js +12 -0
  1839. package/dist/modules/camp/migration/Version-1.0.1.js.map +1 -0
  1840. package/dist/modules/camp/pages/admin/all/CampsMenuGroup.d.ts +16 -0
  1841. package/dist/modules/camp/pages/admin/all/CampsMenuGroup.js +34 -0
  1842. package/dist/modules/camp/pages/admin/all/CampsMenuGroup.js.map +1 -0
  1843. package/dist/modules/camp/pages/admin/participantEdit/Customers.d.ts +15 -0
  1844. package/dist/modules/camp/pages/admin/participantEdit/Customers.js +106 -0
  1845. package/dist/modules/camp/pages/admin/participantEdit/Customers.js.map +1 -0
  1846. package/dist/modules/camp/pages/admin/participantEdit/Customers.scss +48 -0
  1847. package/dist/modules/camp/pages/admin/participantEdit/ParticipantEditForm.d.ts +15 -0
  1848. package/dist/modules/camp/pages/admin/participantEdit/ParticipantEditForm.js +40 -0
  1849. package/dist/modules/camp/pages/admin/participantEdit/ParticipantEditForm.js.map +1 -0
  1850. package/dist/modules/camp/pages/admin/participantEdit/Registrations.d.ts +17 -0
  1851. package/dist/modules/camp/pages/admin/participantEdit/Registrations.js +163 -0
  1852. package/dist/modules/camp/pages/admin/participantEdit/Registrations.js.map +1 -0
  1853. package/dist/modules/camp/pages/admin/participantEdit/Registrations.scss +48 -0
  1854. package/dist/modules/camp/pages/admin/participantEdit/index.d.ts +2 -0
  1855. package/dist/modules/camp/pages/admin/participantEdit/index.js +27 -0
  1856. package/dist/modules/camp/pages/admin/participantEdit/index.js.map +1 -0
  1857. package/dist/modules/camp/pages/admin/participantEdit/route.json +4 -0
  1858. package/dist/modules/camp/pages/admin/participantEdit+participantNew/FormContent.d.ts +15 -0
  1859. package/dist/modules/camp/pages/admin/participantEdit+participantNew/FormContent.js +37 -0
  1860. package/dist/modules/camp/pages/admin/participantEdit+participantNew/FormContent.js.map +1 -0
  1861. package/dist/modules/camp/pages/admin/participantEdit+participantNew/FormContent.scss +7 -0
  1862. package/dist/modules/camp/pages/admin/participantEdit+participantNew/General.d.ts +15 -0
  1863. package/dist/modules/camp/pages/admin/participantEdit+participantNew/General.js +62 -0
  1864. package/dist/modules/camp/pages/admin/participantEdit+participantNew/General.js.map +1 -0
  1865. package/dist/modules/camp/pages/admin/participantEdit+participantNew/Heading.d.ts +21 -0
  1866. package/dist/modules/camp/pages/admin/participantEdit+participantNew/Heading.js +29 -0
  1867. package/dist/modules/camp/pages/admin/participantEdit+participantNew/Heading.js.map +1 -0
  1868. package/dist/modules/camp/pages/admin/participantGrid/Grid.d.ts +14 -0
  1869. package/dist/modules/camp/pages/admin/participantGrid/Grid.js +193 -0
  1870. package/dist/modules/camp/pages/admin/participantGrid/Grid.js.map +1 -0
  1871. package/dist/modules/camp/pages/admin/participantGrid/Heading.d.ts +6 -0
  1872. package/dist/modules/camp/pages/admin/participantGrid/Heading.js +10 -0
  1873. package/dist/modules/camp/pages/admin/participantGrid/Heading.js.map +1 -0
  1874. package/dist/modules/camp/pages/admin/participantGrid/NewParticipantButton.d.ts +15 -0
  1875. package/dist/modules/camp/pages/admin/participantGrid/NewParticipantButton.js +19 -0
  1876. package/dist/modules/camp/pages/admin/participantGrid/NewParticipantButton.js.map +1 -0
  1877. package/dist/modules/camp/pages/admin/participantGrid/index.d.ts +2 -0
  1878. package/dist/modules/camp/pages/admin/participantGrid/index.js +10 -0
  1879. package/dist/modules/camp/pages/admin/participantGrid/index.js.map +1 -0
  1880. package/dist/modules/camp/pages/admin/participantGrid/route.json +4 -0
  1881. package/dist/modules/camp/pages/admin/participantNew/ParticipantNewForm.d.ts +15 -0
  1882. package/dist/modules/camp/pages/admin/participantNew/ParticipantNewForm.js +40 -0
  1883. package/dist/modules/camp/pages/admin/participantNew/ParticipantNewForm.js.map +1 -0
  1884. package/dist/modules/camp/pages/admin/participantNew/index.d.ts +2 -0
  1885. package/dist/modules/camp/pages/admin/participantNew/index.js +8 -0
  1886. package/dist/modules/camp/pages/admin/participantNew/index.js.map +1 -0
  1887. package/dist/modules/camp/pages/admin/participantNew/route.json +4 -0
  1888. package/dist/modules/camp/pages/admin/registrationGrid/Grid.d.ts +17 -0
  1889. package/dist/modules/camp/pages/admin/registrationGrid/Grid.js +217 -0
  1890. package/dist/modules/camp/pages/admin/registrationGrid/Grid.js.map +1 -0
  1891. package/dist/modules/camp/pages/admin/registrationGrid/Heading.d.ts +6 -0
  1892. package/dist/modules/camp/pages/admin/registrationGrid/Heading.js +10 -0
  1893. package/dist/modules/camp/pages/admin/registrationGrid/Heading.js.map +1 -0
  1894. package/dist/modules/camp/pages/admin/registrationGrid/NewRegistrationButton.d.ts +15 -0
  1895. package/dist/modules/camp/pages/admin/registrationGrid/NewRegistrationButton.js +19 -0
  1896. package/dist/modules/camp/pages/admin/registrationGrid/NewRegistrationButton.js.map +1 -0
  1897. package/dist/modules/camp/pages/admin/registrationGrid/index.d.ts +2 -0
  1898. package/dist/modules/camp/pages/admin/registrationGrid/index.js +10 -0
  1899. package/dist/modules/camp/pages/admin/registrationGrid/index.js.map +1 -0
  1900. package/dist/modules/camp/pages/admin/registrationGrid/route.json +4 -0
  1901. package/dist/modules/camp/services/ParticipantCollection.d.ts +9 -0
  1902. package/dist/modules/camp/services/ParticipantCollection.js +43 -0
  1903. package/dist/modules/camp/services/ParticipantCollection.js.map +1 -0
  1904. package/dist/modules/camp/services/RegistrationCollection.d.ts +9 -0
  1905. package/dist/modules/camp/services/RegistrationCollection.js +45 -0
  1906. package/dist/modules/camp/services/RegistrationCollection.js.map +1 -0
  1907. package/dist/modules/camp/services/getParticipantsBaseQuery.d.ts +2 -0
  1908. package/dist/modules/camp/services/getParticipantsBaseQuery.js +6 -0
  1909. package/dist/modules/camp/services/getParticipantsBaseQuery.js.map +1 -0
  1910. package/dist/modules/camp/services/getRegistrationsBaseQuery.d.ts +2 -0
  1911. package/dist/modules/camp/services/getRegistrationsBaseQuery.js +19 -0
  1912. package/dist/modules/camp/services/getRegistrationsBaseQuery.js.map +1 -0
  1913. package/dist/modules/camp/services/getRegistrationsByParticipantBaseQuery.d.ts +2 -0
  1914. package/dist/modules/camp/services/getRegistrationsByParticipantBaseQuery.js +7 -0
  1915. package/dist/modules/camp/services/getRegistrationsByParticipantBaseQuery.js.map +1 -0
  1916. package/dist/modules/camp/services/index.d.ts +10 -0
  1917. package/dist/modules/camp/services/index.js +11 -0
  1918. package/dist/modules/camp/services/index.js.map +1 -0
  1919. package/dist/modules/camp/services/participant/addCustomer.d.ts +9 -0
  1920. package/dist/modules/camp/services/participant/addCustomer.js +43 -0
  1921. package/dist/modules/camp/services/participant/addCustomer.js.map +1 -0
  1922. package/dist/modules/camp/services/participant/createParticipant.d.ts +12 -0
  1923. package/dist/modules/camp/services/participant/createParticipant.js +69 -0
  1924. package/dist/modules/camp/services/participant/createParticipant.js.map +1 -0
  1925. package/dist/modules/camp/services/participant/deleteParticipant.d.ts +7 -0
  1926. package/dist/modules/camp/services/participant/deleteParticipant.js +43 -0
  1927. package/dist/modules/camp/services/participant/deleteParticipant.js.map +1 -0
  1928. package/dist/modules/camp/services/participant/participantDataSchema.json +16 -0
  1929. package/dist/modules/camp/services/participant/removeCustomer.d.ts +8 -0
  1930. package/dist/modules/camp/services/participant/removeCustomer.js +43 -0
  1931. package/dist/modules/camp/services/participant/removeCustomer.js.map +1 -0
  1932. package/dist/modules/camp/services/participant/updateParticipant.d.ts +9 -0
  1933. package/dist/modules/camp/services/participant/updateParticipant.js +78 -0
  1934. package/dist/modules/camp/services/participant/updateParticipant.js.map +1 -0
  1935. package/dist/modules/camp/services/registerDefaultParticipantCollectionFilters.d.ts +5 -0
  1936. package/dist/modules/camp/services/registerDefaultParticipantCollectionFilters.js +35 -0
  1937. package/dist/modules/camp/services/registerDefaultParticipantCollectionFilters.js.map +1 -0
  1938. package/dist/modules/camp/services/registerDefaultRegistrationCollectionFilters.d.ts +5 -0
  1939. package/dist/modules/camp/services/registerDefaultRegistrationCollectionFilters.js +43 -0
  1940. package/dist/modules/camp/services/registerDefaultRegistrationCollectionFilters.js.map +1 -0
  1941. package/dist/modules/camp/services/registration/createRegistration.d.ts +12 -0
  1942. package/dist/modules/camp/services/registration/createRegistration.js +69 -0
  1943. package/dist/modules/camp/services/registration/createRegistration.js.map +1 -0
  1944. package/dist/modules/camp/services/registration/deleteRegistration.d.ts +7 -0
  1945. package/dist/modules/camp/services/registration/deleteRegistration.js +43 -0
  1946. package/dist/modules/camp/services/registration/deleteRegistration.js.map +1 -0
  1947. package/dist/modules/camp/services/registration/registrationDataSchema.json +16 -0
  1948. package/dist/modules/catalog/api/addProductToCategory/[context]bodyParser[auth].d.ts +2 -0
  1949. package/dist/modules/catalog/api/addProductToCategory/[context]bodyParser[auth].js +5 -0
  1950. package/dist/modules/catalog/api/addProductToCategory/[context]bodyParser[auth].js.map +1 -0
  1951. package/dist/modules/catalog/api/addProductToCategory/addProducts.d.ts +2 -0
  1952. package/dist/modules/catalog/api/addProductToCategory/addProducts.js +70 -0
  1953. package/dist/modules/catalog/api/addProductToCategory/addProducts.js.map +1 -0
  1954. package/dist/modules/catalog/api/addProductToCategory/payloadSchema.json +10 -0
  1955. package/dist/modules/catalog/api/addProductToCategory/route.json +5 -0
  1956. package/dist/modules/catalog/api/addProductToCollection/[context]bodyParser[auth].d.ts +2 -0
  1957. package/dist/modules/catalog/api/addProductToCollection/[context]bodyParser[auth].js +5 -0
  1958. package/dist/modules/catalog/api/addProductToCollection/[context]bodyParser[auth].js.map +1 -0
  1959. package/dist/modules/catalog/api/addProductToCollection/addProducts.d.ts +2 -0
  1960. package/dist/modules/catalog/api/addProductToCollection/addProducts.js +86 -0
  1961. package/dist/modules/catalog/api/addProductToCollection/addProducts.js.map +1 -0
  1962. package/dist/modules/catalog/api/addProductToCollection/payloadSchema.json +10 -0
  1963. package/dist/modules/catalog/api/addProductToCollection/route.json +5 -0
  1964. package/dist/modules/catalog/api/addVariantItem/[bodyParser]addItem.d.ts +2 -0
  1965. package/dist/modules/catalog/api/addVariantItem/[bodyParser]addItem.js +87 -0
  1966. package/dist/modules/catalog/api/addVariantItem/[bodyParser]addItem.js.map +1 -0
  1967. package/dist/modules/catalog/api/addVariantItem/[context]bodyParser[auth].d.ts +2 -0
  1968. package/dist/modules/catalog/api/addVariantItem/[context]bodyParser[auth].js +5 -0
  1969. package/dist/modules/catalog/api/addVariantItem/[context]bodyParser[auth].js.map +1 -0
  1970. package/dist/modules/catalog/api/addVariantItem/payloadSchema.json +10 -0
  1971. package/dist/modules/catalog/api/addVariantItem/route.json +5 -0
  1972. package/dist/modules/catalog/api/createAttribute/[context]bodyParser[auth].d.ts +2 -0
  1973. package/dist/modules/catalog/api/createAttribute/[context]bodyParser[auth].js +5 -0
  1974. package/dist/modules/catalog/api/createAttribute/[context]bodyParser[auth].js.map +1 -0
  1975. package/dist/modules/catalog/api/createAttribute/createAttribute[finish].d.ts +2 -0
  1976. package/dist/modules/catalog/api/createAttribute/createAttribute[finish].js +8 -0
  1977. package/dist/modules/catalog/api/createAttribute/createAttribute[finish].js.map +1 -0
  1978. package/dist/modules/catalog/api/createAttribute/finish[apiResponse].d.ts +2 -0
  1979. package/dist/modules/catalog/api/createAttribute/finish[apiResponse].js +27 -0
  1980. package/dist/modules/catalog/api/createAttribute/finish[apiResponse].js.map +1 -0
  1981. package/dist/modules/catalog/api/createAttribute/payloadSchema.json +59 -0
  1982. package/dist/modules/catalog/api/createAttribute/route.json +5 -0
  1983. package/dist/modules/catalog/api/createAttributeGroup/[bodyParser]saveGroup.d.ts +2 -0
  1984. package/dist/modules/catalog/api/createAttributeGroup/[bodyParser]saveGroup.js +35 -0
  1985. package/dist/modules/catalog/api/createAttributeGroup/[bodyParser]saveGroup.js.map +1 -0
  1986. package/dist/modules/catalog/api/createAttributeGroup/[context]bodyParser[auth].d.ts +2 -0
  1987. package/dist/modules/catalog/api/createAttributeGroup/[context]bodyParser[auth].js +5 -0
  1988. package/dist/modules/catalog/api/createAttributeGroup/[context]bodyParser[auth].js.map +1 -0
  1989. package/dist/modules/catalog/api/createAttributeGroup/payloadSchema.json +10 -0
  1990. package/dist/modules/catalog/api/createAttributeGroup/route.json +5 -0
  1991. package/dist/modules/catalog/api/createCategory/[context]bodyParser[auth].d.ts +2 -0
  1992. package/dist/modules/catalog/api/createCategory/[context]bodyParser[auth].js +5 -0
  1993. package/dist/modules/catalog/api/createCategory/[context]bodyParser[auth].js.map +1 -0
  1994. package/dist/modules/catalog/api/createCategory/createCategory[finish].d.ts +2 -0
  1995. package/dist/modules/catalog/api/createCategory/createCategory[finish].js +8 -0
  1996. package/dist/modules/catalog/api/createCategory/createCategory[finish].js.map +1 -0
  1997. package/dist/modules/catalog/api/createCategory/finish[apiResponse].d.ts +2 -0
  1998. package/dist/modules/catalog/api/createCategory/finish[apiResponse].js +33 -0
  1999. package/dist/modules/catalog/api/createCategory/finish[apiResponse].js.map +1 -0
  2000. package/dist/modules/catalog/api/createCategory/payloadSchema.json +10 -0
  2001. package/dist/modules/catalog/api/createCategory/route.json +5 -0
  2002. package/dist/modules/catalog/api/createCollection/[context]bodyParser[auth].d.ts +2 -0
  2003. package/dist/modules/catalog/api/createCollection/[context]bodyParser[auth].js +5 -0
  2004. package/dist/modules/catalog/api/createCollection/[context]bodyParser[auth].js.map +1 -0
  2005. package/dist/modules/catalog/api/createCollection/createCollection[finish].d.ts +2 -0
  2006. package/dist/modules/catalog/api/createCollection/createCollection[finish].js +8 -0
  2007. package/dist/modules/catalog/api/createCollection/createCollection[finish].js.map +1 -0
  2008. package/dist/modules/catalog/api/createCollection/finish[apiResponse].d.ts +2 -0
  2009. package/dist/modules/catalog/api/createCollection/finish[apiResponse].js +27 -0
  2010. package/dist/modules/catalog/api/createCollection/finish[apiResponse].js.map +1 -0
  2011. package/dist/modules/catalog/api/createCollection/payloadSchema.json +10 -0
  2012. package/dist/modules/catalog/api/createCollection/route.json +5 -0
  2013. package/dist/modules/catalog/api/createProduct/[context]bodyParser[auth].d.ts +2 -0
  2014. package/dist/modules/catalog/api/createProduct/[context]bodyParser[auth].js +5 -0
  2015. package/dist/modules/catalog/api/createProduct/[context]bodyParser[auth].js.map +1 -0
  2016. package/dist/modules/catalog/api/createProduct/createProduct[finish].d.ts +2 -0
  2017. package/dist/modules/catalog/api/createProduct/createProduct[finish].js +8 -0
  2018. package/dist/modules/catalog/api/createProduct/createProduct[finish].js.map +1 -0
  2019. package/dist/modules/catalog/api/createProduct/finish[apiResponse].d.ts +2 -0
  2020. package/dist/modules/catalog/api/createProduct/finish[apiResponse].js +33 -0
  2021. package/dist/modules/catalog/api/createProduct/finish[apiResponse].js.map +1 -0
  2022. package/dist/modules/catalog/api/createProduct/payloadSchema.json +10 -0
  2023. package/dist/modules/catalog/api/createProduct/route.json +5 -0
  2024. package/dist/modules/catalog/api/createVariantGroup/[bodyParser]saveGroup.d.ts +2 -0
  2025. package/dist/modules/catalog/api/createVariantGroup/[bodyParser]saveGroup.js +118 -0
  2026. package/dist/modules/catalog/api/createVariantGroup/[bodyParser]saveGroup.js.map +1 -0
  2027. package/dist/modules/catalog/api/createVariantGroup/[context]bodyParser[auth].d.ts +2 -0
  2028. package/dist/modules/catalog/api/createVariantGroup/[context]bodyParser[auth].js +5 -0
  2029. package/dist/modules/catalog/api/createVariantGroup/[context]bodyParser[auth].js.map +1 -0
  2030. package/dist/modules/catalog/api/createVariantGroup/payloadSchema.json +17 -0
  2031. package/dist/modules/catalog/api/createVariantGroup/route.json +5 -0
  2032. package/dist/modules/catalog/api/deleteAttribute/deleteAttribute.d.ts +2 -0
  2033. package/dist/modules/catalog/api/deleteAttribute/deleteAttribute.js +24 -0
  2034. package/dist/modules/catalog/api/deleteAttribute/deleteAttribute.js.map +1 -0
  2035. package/dist/modules/catalog/api/deleteAttribute/route.json +5 -0
  2036. package/dist/modules/catalog/api/deleteAttributeGroup/deleteAttributeGroup.d.ts +2 -0
  2037. package/dist/modules/catalog/api/deleteAttributeGroup/deleteAttributeGroup.js +48 -0
  2038. package/dist/modules/catalog/api/deleteAttributeGroup/deleteAttributeGroup.js.map +1 -0
  2039. package/dist/modules/catalog/api/deleteAttributeGroup/route.json +5 -0
  2040. package/dist/modules/catalog/api/deleteCategory/deleteCategory.d.ts +2 -0
  2041. package/dist/modules/catalog/api/deleteCategory/deleteCategory.js +24 -0
  2042. package/dist/modules/catalog/api/deleteCategory/deleteCategory.js.map +1 -0
  2043. package/dist/modules/catalog/api/deleteCategory/route.json +5 -0
  2044. package/dist/modules/catalog/api/deleteCollection/deleteCollection.d.ts +2 -0
  2045. package/dist/modules/catalog/api/deleteCollection/deleteCollection.js +24 -0
  2046. package/dist/modules/catalog/api/deleteCollection/deleteCollection.js.map +1 -0
  2047. package/dist/modules/catalog/api/deleteCollection/route.json +5 -0
  2048. package/dist/modules/catalog/api/deleteProduct/deleteProduct.d.ts +2 -0
  2049. package/dist/modules/catalog/api/deleteProduct/deleteProduct.js +24 -0
  2050. package/dist/modules/catalog/api/deleteProduct/deleteProduct.js.map +1 -0
  2051. package/dist/modules/catalog/api/deleteProduct/route.json +5 -0
  2052. package/dist/modules/catalog/api/removeProductFromCategory/[context]bodyParser[auth].d.ts +2 -0
  2053. package/dist/modules/catalog/api/removeProductFromCategory/[context]bodyParser[auth].js +5 -0
  2054. package/dist/modules/catalog/api/removeProductFromCategory/[context]bodyParser[auth].js.map +1 -0
  2055. package/dist/modules/catalog/api/removeProductFromCategory/removeProducts.d.ts +2 -0
  2056. package/dist/modules/catalog/api/removeProductFromCategory/removeProducts.js +51 -0
  2057. package/dist/modules/catalog/api/removeProductFromCategory/removeProducts.js.map +1 -0
  2058. package/dist/modules/catalog/api/removeProductFromCategory/route.json +5 -0
  2059. package/dist/modules/catalog/api/removeProductFromCollection/[context]bodyParser[auth].d.ts +2 -0
  2060. package/dist/modules/catalog/api/removeProductFromCollection/[context]bodyParser[auth].js +5 -0
  2061. package/dist/modules/catalog/api/removeProductFromCollection/[context]bodyParser[auth].js.map +1 -0
  2062. package/dist/modules/catalog/api/removeProductFromCollection/removeProducts.d.ts +2 -0
  2063. package/dist/modules/catalog/api/removeProductFromCollection/removeProducts.js +70 -0
  2064. package/dist/modules/catalog/api/removeProductFromCollection/removeProducts.js.map +1 -0
  2065. package/dist/modules/catalog/api/removeProductFromCollection/route.json +5 -0
  2066. package/dist/modules/catalog/api/unlinkVariant/[context]multerNone[auth].d.ts +2 -0
  2067. package/dist/modules/catalog/api/unlinkVariant/[context]multerNone[auth].js +6 -0
  2068. package/dist/modules/catalog/api/unlinkVariant/[context]multerNone[auth].js.map +1 -0
  2069. package/dist/modules/catalog/api/unlinkVariant/route.json +5 -0
  2070. package/dist/modules/catalog/api/unlinkVariant/unlinkVariants.d.ts +2 -0
  2071. package/dist/modules/catalog/api/unlinkVariant/unlinkVariants.js +24 -0
  2072. package/dist/modules/catalog/api/unlinkVariant/unlinkVariants.js.map +1 -0
  2073. package/dist/modules/catalog/api/updateAttribute/[context]bodyParser[auth].d.ts +2 -0
  2074. package/dist/modules/catalog/api/updateAttribute/[context]bodyParser[auth].js +5 -0
  2075. package/dist/modules/catalog/api/updateAttribute/[context]bodyParser[auth].js.map +1 -0
  2076. package/dist/modules/catalog/api/updateAttribute/finish[apiResponse].d.ts +2 -0
  2077. package/dist/modules/catalog/api/updateAttribute/finish[apiResponse].js +27 -0
  2078. package/dist/modules/catalog/api/updateAttribute/finish[apiResponse].js.map +1 -0
  2079. package/dist/modules/catalog/api/updateAttribute/route.json +5 -0
  2080. package/dist/modules/catalog/api/updateAttribute/updateAttribute[finish].d.ts +2 -0
  2081. package/dist/modules/catalog/api/updateAttribute/updateAttribute[finish].js +6 -0
  2082. package/dist/modules/catalog/api/updateAttribute/updateAttribute[finish].js.map +1 -0
  2083. package/dist/modules/catalog/api/updateAttributeGroup/[bodyParser]saveGroup.d.ts +2 -0
  2084. package/dist/modules/catalog/api/updateAttributeGroup/[bodyParser]saveGroup.js +40 -0
  2085. package/dist/modules/catalog/api/updateAttributeGroup/[bodyParser]saveGroup.js.map +1 -0
  2086. package/dist/modules/catalog/api/updateAttributeGroup/[context]bodyParser[auth].d.ts +2 -0
  2087. package/dist/modules/catalog/api/updateAttributeGroup/[context]bodyParser[auth].js +5 -0
  2088. package/dist/modules/catalog/api/updateAttributeGroup/[context]bodyParser[auth].js.map +1 -0
  2089. package/dist/modules/catalog/api/updateAttributeGroup/payloadSchema.json +10 -0
  2090. package/dist/modules/catalog/api/updateAttributeGroup/route.json +5 -0
  2091. package/dist/modules/catalog/api/updateCategory/[context]bodyParser[auth].d.ts +2 -0
  2092. package/dist/modules/catalog/api/updateCategory/[context]bodyParser[auth].js +5 -0
  2093. package/dist/modules/catalog/api/updateCategory/[context]bodyParser[auth].js.map +1 -0
  2094. package/dist/modules/catalog/api/updateCategory/finish[apiResponse].d.ts +2 -0
  2095. package/dist/modules/catalog/api/updateCategory/finish[apiResponse].js +33 -0
  2096. package/dist/modules/catalog/api/updateCategory/finish[apiResponse].js.map +1 -0
  2097. package/dist/modules/catalog/api/updateCategory/payloadSchema.json +10 -0
  2098. package/dist/modules/catalog/api/updateCategory/route.json +5 -0
  2099. package/dist/modules/catalog/api/updateCategory/updateCategory[finish].d.ts +2 -0
  2100. package/dist/modules/catalog/api/updateCategory/updateCategory[finish].js +8 -0
  2101. package/dist/modules/catalog/api/updateCategory/updateCategory[finish].js.map +1 -0
  2102. package/dist/modules/catalog/api/updateCollection/[context]bodyParser[auth].d.ts +2 -0
  2103. package/dist/modules/catalog/api/updateCollection/[context]bodyParser[auth].js +5 -0
  2104. package/dist/modules/catalog/api/updateCollection/[context]bodyParser[auth].js.map +1 -0
  2105. package/dist/modules/catalog/api/updateCollection/finish[apiResponse].d.ts +2 -0
  2106. package/dist/modules/catalog/api/updateCollection/finish[apiResponse].js +27 -0
  2107. package/dist/modules/catalog/api/updateCollection/finish[apiResponse].js.map +1 -0
  2108. package/dist/modules/catalog/api/updateCollection/payloadSchema.json +10 -0
  2109. package/dist/modules/catalog/api/updateCollection/route.json +5 -0
  2110. package/dist/modules/catalog/api/updateCollection/updateCollection[finish].d.ts +2 -0
  2111. package/dist/modules/catalog/api/updateCollection/updateCollection[finish].js +8 -0
  2112. package/dist/modules/catalog/api/updateCollection/updateCollection[finish].js.map +1 -0
  2113. package/dist/modules/catalog/api/updateProduct/[context]bodyParser[auth].d.ts +2 -0
  2114. package/dist/modules/catalog/api/updateProduct/[context]bodyParser[auth].js +5 -0
  2115. package/dist/modules/catalog/api/updateProduct/[context]bodyParser[auth].js.map +1 -0
  2116. package/dist/modules/catalog/api/updateProduct/finish[apiResponse].d.ts +2 -0
  2117. package/dist/modules/catalog/api/updateProduct/finish[apiResponse].js +33 -0
  2118. package/dist/modules/catalog/api/updateProduct/finish[apiResponse].js.map +1 -0
  2119. package/dist/modules/catalog/api/updateProduct/payloadSchema.json +10 -0
  2120. package/dist/modules/catalog/api/updateProduct/route.json +5 -0
  2121. package/dist/modules/catalog/api/updateProduct/updateProduct[finish].d.ts +2 -0
  2122. package/dist/modules/catalog/api/updateProduct/updateProduct[finish].js +8 -0
  2123. package/dist/modules/catalog/api/updateProduct/updateProduct[finish].js.map +1 -0
  2124. package/dist/modules/catalog/api/variantSearch/loadVariants.d.ts +2 -0
  2125. package/dist/modules/catalog/api/variantSearch/loadVariants.js +69 -0
  2126. package/dist/modules/catalog/api/variantSearch/loadVariants.js.map +1 -0
  2127. package/dist/modules/catalog/api/variantSearch/route.json +5 -0
  2128. package/dist/modules/catalog/bootstrap.d.ts +2 -0
  2129. package/dist/modules/catalog/bootstrap.js +160 -0
  2130. package/dist/modules/catalog/bootstrap.js.map +1 -0
  2131. package/dist/modules/catalog/graphql/types/Attribute/Attribute.admin.graphql +42 -0
  2132. package/dist/modules/catalog/graphql/types/Attribute/Attribute.admin.resolvers.d.ts +31 -0
  2133. package/dist/modules/catalog/graphql/types/Attribute/Attribute.admin.resolvers.js +50 -0
  2134. package/dist/modules/catalog/graphql/types/Attribute/Attribute.admin.resolvers.js.map +1 -0
  2135. package/dist/modules/catalog/graphql/types/Attribute/Attribute.graphql +28 -0
  2136. package/dist/modules/catalog/graphql/types/Attribute/Attribute.resolvers.d.ts +15 -0
  2137. package/dist/modules/catalog/graphql/types/Attribute/Attribute.resolvers.js +28 -0
  2138. package/dist/modules/catalog/graphql/types/Attribute/Attribute.resolvers.js.map +1 -0
  2139. package/dist/modules/catalog/graphql/types/Category/Category.admin.graphql +10 -0
  2140. package/dist/modules/catalog/graphql/types/Category/Category.admin.resolvers.d.ts +14 -0
  2141. package/dist/modules/catalog/graphql/types/Category/Category.admin.resolvers.js +28 -0
  2142. package/dist/modules/catalog/graphql/types/Category/Category.admin.resolvers.js.map +1 -0
  2143. package/dist/modules/catalog/graphql/types/Category/Category.graphql +105 -0
  2144. package/dist/modules/catalog/graphql/types/Category/Category.resolvers.d.ts +64 -0
  2145. package/dist/modules/catalog/graphql/types/Category/Category.resolvers.js +167 -0
  2146. package/dist/modules/catalog/graphql/types/Category/Category.resolvers.js.map +1 -0
  2147. package/dist/modules/catalog/graphql/types/Collection/Collection.admin.graphql +10 -0
  2148. package/dist/modules/catalog/graphql/types/Collection/Collection.admin.resolvers.d.ts +14 -0
  2149. package/dist/modules/catalog/graphql/types/Collection/Collection.admin.resolvers.js +28 -0
  2150. package/dist/modules/catalog/graphql/types/Collection/Collection.admin.resolvers.js.map +1 -0
  2151. package/dist/modules/catalog/graphql/types/Collection/Collection.graphql +30 -0
  2152. package/dist/modules/catalog/graphql/types/Collection/Collection.resolvers.d.ts +31 -0
  2153. package/dist/modules/catalog/graphql/types/Collection/Collection.resolvers.js +76 -0
  2154. package/dist/modules/catalog/graphql/types/Collection/Collection.resolvers.js.map +1 -0
  2155. package/dist/modules/catalog/graphql/types/FeaturedProduct/FeaturedProduct.graphql +3 -0
  2156. package/dist/modules/catalog/graphql/types/FeaturedProduct/FeaturedProduct.resolvers.d.ts +10 -0
  2157. package/dist/modules/catalog/graphql/types/FeaturedProduct/FeaturedProduct.resolvers.js +42 -0
  2158. package/dist/modules/catalog/graphql/types/FeaturedProduct/FeaturedProduct.resolvers.js.map +1 -0
  2159. package/dist/modules/catalog/graphql/types/Product/Attribute/ProductAttribute.graphql +15 -0
  2160. package/dist/modules/catalog/graphql/types/Product/Attribute/ProductAttribute.resolvers.d.ts +13 -0
  2161. package/dist/modules/catalog/graphql/types/Product/Attribute/ProductAttribute.resolvers.js +32 -0
  2162. package/dist/modules/catalog/graphql/types/Product/Attribute/ProductAttribute.resolvers.js.map +1 -0
  2163. package/dist/modules/catalog/graphql/types/Product/CustomOption/CustomOption.graphql +23 -0
  2164. package/dist/modules/catalog/graphql/types/Product/CustomOption/CustomOption.resolvers.d.ts +6 -0
  2165. package/dist/modules/catalog/graphql/types/Product/CustomOption/CustomOption.resolvers.js +6 -0
  2166. package/dist/modules/catalog/graphql/types/Product/CustomOption/CustomOption.resolvers.js.map +1 -0
  2167. package/dist/modules/catalog/graphql/types/Product/Image/ProductImage.graphql +18 -0
  2168. package/dist/modules/catalog/graphql/types/Product/Image/ProductImage.resolvers.d.ts +26 -0
  2169. package/dist/modules/catalog/graphql/types/Product/Image/ProductImage.resolvers.js +38 -0
  2170. package/dist/modules/catalog/graphql/types/Product/Image/ProductImage.resolvers.js.map +1 -0
  2171. package/dist/modules/catalog/graphql/types/Product/Inventory/Inventory.admin.graphql +3 -0
  2172. package/dist/modules/catalog/graphql/types/Product/Inventory/Inventory.admin.resolvers.d.ts +6 -0
  2173. package/dist/modules/catalog/graphql/types/Product/Inventory/Inventory.admin.resolvers.js +6 -0
  2174. package/dist/modules/catalog/graphql/types/Product/Inventory/Inventory.admin.resolvers.js.map +1 -0
  2175. package/dist/modules/catalog/graphql/types/Product/Inventory/Inventory.graphql +12 -0
  2176. package/dist/modules/catalog/graphql/types/Product/Inventory/Inventory.resolvers.d.ts +6 -0
  2177. package/dist/modules/catalog/graphql/types/Product/Inventory/Inventory.resolvers.js +11 -0
  2178. package/dist/modules/catalog/graphql/types/Product/Inventory/Inventory.resolvers.js.map +1 -0
  2179. package/dist/modules/catalog/graphql/types/Product/Price/ProductPrice.graphql +11 -0
  2180. package/dist/modules/catalog/graphql/types/Product/Price/ProductPrice.resolvers.d.ts +9 -0
  2181. package/dist/modules/catalog/graphql/types/Product/Price/ProductPrice.resolvers.js +12 -0
  2182. package/dist/modules/catalog/graphql/types/Product/Price/ProductPrice.resolvers.js.map +1 -0
  2183. package/dist/modules/catalog/graphql/types/Product/Product.admin.graphql +5 -0
  2184. package/dist/modules/catalog/graphql/types/Product/Product.admin.resolvers.d.ts +8 -0
  2185. package/dist/modules/catalog/graphql/types/Product/Product.admin.resolvers.js +9 -0
  2186. package/dist/modules/catalog/graphql/types/Product/Product.admin.resolvers.js.map +1 -0
  2187. package/dist/modules/catalog/graphql/types/Product/Product.graphql +37 -0
  2188. package/dist/modules/catalog/graphql/types/Product/Product.resolvers.d.ts +24 -0
  2189. package/dist/modules/catalog/graphql/types/Product/Product.resolvers.js +78 -0
  2190. package/dist/modules/catalog/graphql/types/Product/Product.resolvers.js.map +1 -0
  2191. package/dist/modules/catalog/graphql/types/Product/Variant/Variant.graphql +52 -0
  2192. package/dist/modules/catalog/graphql/types/Product/Variant/Variant.resolvers.d.ts +30 -0
  2193. package/dist/modules/catalog/graphql/types/Product/Variant/Variant.resolvers.js +129 -0
  2194. package/dist/modules/catalog/graphql/types/Product/Variant/Variant.resolvers.js.map +1 -0
  2195. package/dist/modules/catalog/graphql/types/Widget/CollectionProductsWidget/CollectionProductsWidget.graphql +11 -0
  2196. package/dist/modules/catalog/graphql/types/Widget/CollectionProductsWidget/CollectionProductsWidget.resolvers.d.ts +12 -0
  2197. package/dist/modules/catalog/graphql/types/Widget/CollectionProductsWidget/CollectionProductsWidget.resolvers.js +9 -0
  2198. package/dist/modules/catalog/graphql/types/Widget/CollectionProductsWidget/CollectionProductsWidget.resolvers.js.map +1 -0
  2199. package/dist/modules/catalog/migration/Version-1.0.0.d.ts +2 -0
  2200. package/dist/modules/catalog/migration/Version-1.0.0.js +448 -0
  2201. package/dist/modules/catalog/migration/Version-1.0.0.js.map +1 -0
  2202. package/dist/modules/catalog/migration/Version-1.0.1.d.ts +2 -0
  2203. package/dist/modules/catalog/migration/Version-1.0.1.js +26 -0
  2204. package/dist/modules/catalog/migration/Version-1.0.1.js.map +1 -0
  2205. package/dist/modules/catalog/migration/Version-1.0.2.d.ts +2 -0
  2206. package/dist/modules/catalog/migration/Version-1.0.2.js +169 -0
  2207. package/dist/modules/catalog/migration/Version-1.0.2.js.map +1 -0
  2208. package/dist/modules/catalog/migration/Version-1.0.3.d.ts +2 -0
  2209. package/dist/modules/catalog/migration/Version-1.0.3.js +6 -0
  2210. package/dist/modules/catalog/migration/Version-1.0.3.js.map +1 -0
  2211. package/dist/modules/catalog/migration/Version-1.0.4.d.ts +2 -0
  2212. package/dist/modules/catalog/migration/Version-1.0.4.js +192 -0
  2213. package/dist/modules/catalog/migration/Version-1.0.4.js.map +1 -0
  2214. package/dist/modules/catalog/migration/Version-1.0.5.d.ts +2 -0
  2215. package/dist/modules/catalog/migration/Version-1.0.5.js +6 -0
  2216. package/dist/modules/catalog/migration/Version-1.0.5.js.map +1 -0
  2217. package/dist/modules/catalog/migration/Version-1.0.6.d.ts +2 -0
  2218. package/dist/modules/catalog/migration/Version-1.0.6.js +39 -0
  2219. package/dist/modules/catalog/migration/Version-1.0.6.js.map +1 -0
  2220. package/dist/modules/catalog/migration/Version-1.0.7.d.ts +2 -0
  2221. package/dist/modules/catalog/migration/Version-1.0.7.js +6 -0
  2222. package/dist/modules/catalog/migration/Version-1.0.7.js.map +1 -0
  2223. package/dist/modules/catalog/migration/Version-1.0.8.d.ts +2 -0
  2224. package/dist/modules/catalog/migration/Version-1.0.8.js +6 -0
  2225. package/dist/modules/catalog/migration/Version-1.0.8.js.map +1 -0
  2226. package/dist/modules/catalog/pages/admin/all/CatalogMenuGroup.d.ts +21 -0
  2227. package/dist/modules/catalog/pages/admin/all/CatalogMenuGroup.js +50 -0
  2228. package/dist/modules/catalog/pages/admin/all/CatalogMenuGroup.js.map +1 -0
  2229. package/dist/modules/catalog/pages/admin/attributeEdit/AttributeEditForm.d.ts +15 -0
  2230. package/dist/modules/catalog/pages/admin/attributeEdit/AttributeEditForm.js +34 -0
  2231. package/dist/modules/catalog/pages/admin/attributeEdit/AttributeEditForm.js.map +1 -0
  2232. package/dist/modules/catalog/pages/admin/attributeEdit/index.d.ts +2 -0
  2233. package/dist/modules/catalog/pages/admin/attributeEdit/index.js +28 -0
  2234. package/dist/modules/catalog/pages/admin/attributeEdit/index.js.map +1 -0
  2235. package/dist/modules/catalog/pages/admin/attributeEdit/route.json +4 -0
  2236. package/dist/modules/catalog/pages/admin/attributeEdit+attributeNew/Avaibility.d.ts +19 -0
  2237. package/dist/modules/catalog/pages/admin/attributeEdit+attributeNew/Avaibility.js +51 -0
  2238. package/dist/modules/catalog/pages/admin/attributeEdit+attributeNew/Avaibility.js.map +1 -0
  2239. package/dist/modules/catalog/pages/admin/attributeEdit+attributeNew/FormContent.d.ts +15 -0
  2240. package/dist/modules/catalog/pages/admin/attributeEdit+attributeNew/FormContent.js +37 -0
  2241. package/dist/modules/catalog/pages/admin/attributeEdit+attributeNew/FormContent.js.map +1 -0
  2242. package/dist/modules/catalog/pages/admin/attributeEdit+attributeNew/FormContent.scss +7 -0
  2243. package/dist/modules/catalog/pages/admin/attributeEdit+attributeNew/General.d.ts +23 -0
  2244. package/dist/modules/catalog/pages/admin/attributeEdit+attributeNew/General.js +229 -0
  2245. package/dist/modules/catalog/pages/admin/attributeEdit+attributeNew/General.js.map +1 -0
  2246. package/dist/modules/catalog/pages/admin/attributeEdit+attributeNew/PageHeading.d.ts +21 -0
  2247. package/dist/modules/catalog/pages/admin/attributeEdit+attributeNew/PageHeading.js +30 -0
  2248. package/dist/modules/catalog/pages/admin/attributeEdit+attributeNew/PageHeading.js.map +1 -0
  2249. package/dist/modules/catalog/pages/admin/attributeGrid/Grid.d.ts +20 -0
  2250. package/dist/modules/catalog/pages/admin/attributeGrid/Grid.js +279 -0
  2251. package/dist/modules/catalog/pages/admin/attributeGrid/Grid.js.map +1 -0
  2252. package/dist/modules/catalog/pages/admin/attributeGrid/Heading.d.ts +6 -0
  2253. package/dist/modules/catalog/pages/admin/attributeGrid/Heading.js +10 -0
  2254. package/dist/modules/catalog/pages/admin/attributeGrid/Heading.js.map +1 -0
  2255. package/dist/modules/catalog/pages/admin/attributeGrid/NewAttributeButton.d.ts +15 -0
  2256. package/dist/modules/catalog/pages/admin/attributeGrid/NewAttributeButton.js +19 -0
  2257. package/dist/modules/catalog/pages/admin/attributeGrid/NewAttributeButton.js.map +1 -0
  2258. package/dist/modules/catalog/pages/admin/attributeGrid/TypeRow.d.ts +14 -0
  2259. package/dist/modules/catalog/pages/admin/attributeGrid/TypeRow.js +16 -0
  2260. package/dist/modules/catalog/pages/admin/attributeGrid/TypeRow.js.map +1 -0
  2261. package/dist/modules/catalog/pages/admin/attributeGrid/index.d.ts +2 -0
  2262. package/dist/modules/catalog/pages/admin/attributeGrid/index.js +10 -0
  2263. package/dist/modules/catalog/pages/admin/attributeGrid/index.js.map +1 -0
  2264. package/dist/modules/catalog/pages/admin/attributeGrid/route.json +4 -0
  2265. package/dist/modules/catalog/pages/admin/attributeNew/AttributeNewForm.d.ts +15 -0
  2266. package/dist/modules/catalog/pages/admin/attributeNew/AttributeNewForm.js +40 -0
  2267. package/dist/modules/catalog/pages/admin/attributeNew/AttributeNewForm.js.map +1 -0
  2268. package/dist/modules/catalog/pages/admin/attributeNew/index.d.ts +2 -0
  2269. package/dist/modules/catalog/pages/admin/attributeNew/index.js +8 -0
  2270. package/dist/modules/catalog/pages/admin/attributeNew/index.js.map +1 -0
  2271. package/dist/modules/catalog/pages/admin/attributeNew/route.json +4 -0
  2272. package/dist/modules/catalog/pages/admin/categoryEdit/CategoryEditForm.d.ts +15 -0
  2273. package/dist/modules/catalog/pages/admin/categoryEdit/CategoryEditForm.js +34 -0
  2274. package/dist/modules/catalog/pages/admin/categoryEdit/CategoryEditForm.js.map +1 -0
  2275. package/dist/modules/catalog/pages/admin/categoryEdit/Products.d.ts +18 -0
  2276. package/dist/modules/catalog/pages/admin/categoryEdit/Products.js +168 -0
  2277. package/dist/modules/catalog/pages/admin/categoryEdit/Products.js.map +1 -0
  2278. package/dist/modules/catalog/pages/admin/categoryEdit/Products.scss +48 -0
  2279. package/dist/modules/catalog/pages/admin/categoryEdit/index.d.ts +2 -0
  2280. package/dist/modules/catalog/pages/admin/categoryEdit/index.js +31 -0
  2281. package/dist/modules/catalog/pages/admin/categoryEdit/index.js.map +1 -0
  2282. package/dist/modules/catalog/pages/admin/categoryEdit/route.json +4 -0
  2283. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/FormContent.d.ts +15 -0
  2284. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/FormContent.js +37 -0
  2285. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/FormContent.js.map +1 -0
  2286. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/FormContent.scss +7 -0
  2287. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/General.d.ts +27 -0
  2288. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/General.js +164 -0
  2289. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/General.js.map +1 -0
  2290. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/Image.d.ts +21 -0
  2291. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/Image.js +106 -0
  2292. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/Image.js.map +1 -0
  2293. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/Image.scss +51 -0
  2294. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/PageHeading.d.ts +21 -0
  2295. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/PageHeading.js +28 -0
  2296. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/PageHeading.js.map +1 -0
  2297. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/Seo.d.ts +24 -0
  2298. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/Seo.js +94 -0
  2299. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/Seo.js.map +1 -0
  2300. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/Status.d.ts +19 -0
  2301. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/Status.js +46 -0
  2302. package/dist/modules/catalog/pages/admin/categoryEdit+categoryNew/Status.js.map +1 -0
  2303. package/dist/modules/catalog/pages/admin/categoryGrid/Grid.d.ts +20 -0
  2304. package/dist/modules/catalog/pages/admin/categoryGrid/Grid.js +229 -0
  2305. package/dist/modules/catalog/pages/admin/categoryGrid/Grid.js.map +1 -0
  2306. package/dist/modules/catalog/pages/admin/categoryGrid/Heading.d.ts +6 -0
  2307. package/dist/modules/catalog/pages/admin/categoryGrid/Heading.js +10 -0
  2308. package/dist/modules/catalog/pages/admin/categoryGrid/Heading.js.map +1 -0
  2309. package/dist/modules/catalog/pages/admin/categoryGrid/NameRow.d.ts +16 -0
  2310. package/dist/modules/catalog/pages/admin/categoryGrid/NameRow.js +18 -0
  2311. package/dist/modules/catalog/pages/admin/categoryGrid/NameRow.js.map +1 -0
  2312. package/dist/modules/catalog/pages/admin/categoryGrid/NewCategoryButton.d.ts +15 -0
  2313. package/dist/modules/catalog/pages/admin/categoryGrid/NewCategoryButton.js +19 -0
  2314. package/dist/modules/catalog/pages/admin/categoryGrid/NewCategoryButton.js.map +1 -0
  2315. package/dist/modules/catalog/pages/admin/categoryGrid/index.d.ts +2 -0
  2316. package/dist/modules/catalog/pages/admin/categoryGrid/index.js +10 -0
  2317. package/dist/modules/catalog/pages/admin/categoryGrid/index.js.map +1 -0
  2318. package/dist/modules/catalog/pages/admin/categoryGrid/route.json +4 -0
  2319. package/dist/modules/catalog/pages/admin/categoryNew/CategoryNewForm.d.ts +15 -0
  2320. package/dist/modules/catalog/pages/admin/categoryNew/CategoryNewForm.js +40 -0
  2321. package/dist/modules/catalog/pages/admin/categoryNew/CategoryNewForm.js.map +1 -0
  2322. package/dist/modules/catalog/pages/admin/categoryNew/index.d.ts +2 -0
  2323. package/dist/modules/catalog/pages/admin/categoryNew/index.js +8 -0
  2324. package/dist/modules/catalog/pages/admin/categoryNew/index.js.map +1 -0
  2325. package/dist/modules/catalog/pages/admin/categoryNew/route.json +4 -0
  2326. package/dist/modules/catalog/pages/admin/collectionEdit/CollectionEditForm.d.ts +15 -0
  2327. package/dist/modules/catalog/pages/admin/collectionEdit/CollectionEditForm.js +34 -0
  2328. package/dist/modules/catalog/pages/admin/collectionEdit/CollectionEditForm.js.map +1 -0
  2329. package/dist/modules/catalog/pages/admin/collectionEdit/Products.d.ts +18 -0
  2330. package/dist/modules/catalog/pages/admin/collectionEdit/Products.js +170 -0
  2331. package/dist/modules/catalog/pages/admin/collectionEdit/Products.js.map +1 -0
  2332. package/dist/modules/catalog/pages/admin/collectionEdit/Products.scss +48 -0
  2333. package/dist/modules/catalog/pages/admin/collectionEdit/index.d.ts +2 -0
  2334. package/dist/modules/catalog/pages/admin/collectionEdit/index.js +28 -0
  2335. package/dist/modules/catalog/pages/admin/collectionEdit/index.js.map +1 -0
  2336. package/dist/modules/catalog/pages/admin/collectionEdit/route.json +4 -0
  2337. package/dist/modules/catalog/pages/admin/collectionEdit+collectionNew/FormContent.d.ts +15 -0
  2338. package/dist/modules/catalog/pages/admin/collectionEdit+collectionNew/FormContent.js +34 -0
  2339. package/dist/modules/catalog/pages/admin/collectionEdit+collectionNew/FormContent.js.map +1 -0
  2340. package/dist/modules/catalog/pages/admin/collectionEdit+collectionNew/FormContent.scss +7 -0
  2341. package/dist/modules/catalog/pages/admin/collectionEdit+collectionNew/General.d.ts +27 -0
  2342. package/dist/modules/catalog/pages/admin/collectionEdit+collectionNew/General.js +108 -0
  2343. package/dist/modules/catalog/pages/admin/collectionEdit+collectionNew/General.js.map +1 -0
  2344. package/dist/modules/catalog/pages/admin/collectionEdit+collectionNew/PageHeading.d.ts +21 -0
  2345. package/dist/modules/catalog/pages/admin/collectionEdit+collectionNew/PageHeading.js +29 -0
  2346. package/dist/modules/catalog/pages/admin/collectionEdit+collectionNew/PageHeading.js.map +1 -0
  2347. package/dist/modules/catalog/pages/admin/collectionGrid/Grid.d.ts +20 -0
  2348. package/dist/modules/catalog/pages/admin/collectionGrid/Grid.js +222 -0
  2349. package/dist/modules/catalog/pages/admin/collectionGrid/Grid.js.map +1 -0
  2350. package/dist/modules/catalog/pages/admin/collectionGrid/Heading.d.ts +6 -0
  2351. package/dist/modules/catalog/pages/admin/collectionGrid/Heading.js +11 -0
  2352. package/dist/modules/catalog/pages/admin/collectionGrid/Heading.js.map +1 -0
  2353. package/dist/modules/catalog/pages/admin/collectionGrid/NameRow.d.ts +16 -0
  2354. package/dist/modules/catalog/pages/admin/collectionGrid/NameRow.js +18 -0
  2355. package/dist/modules/catalog/pages/admin/collectionGrid/NameRow.js.map +1 -0
  2356. package/dist/modules/catalog/pages/admin/collectionGrid/NewCollectionButton.d.ts +15 -0
  2357. package/dist/modules/catalog/pages/admin/collectionGrid/NewCollectionButton.js +19 -0
  2358. package/dist/modules/catalog/pages/admin/collectionGrid/NewCollectionButton.js.map +1 -0
  2359. package/dist/modules/catalog/pages/admin/collectionGrid/index.d.ts +2 -0
  2360. package/dist/modules/catalog/pages/admin/collectionGrid/index.js +10 -0
  2361. package/dist/modules/catalog/pages/admin/collectionGrid/index.js.map +1 -0
  2362. package/dist/modules/catalog/pages/admin/collectionGrid/route.json +4 -0
  2363. package/dist/modules/catalog/pages/admin/collectionNew/CollectionNewForm.d.ts +15 -0
  2364. package/dist/modules/catalog/pages/admin/collectionNew/CollectionNewForm.js +40 -0
  2365. package/dist/modules/catalog/pages/admin/collectionNew/CollectionNewForm.js.map +1 -0
  2366. package/dist/modules/catalog/pages/admin/collectionNew/index.d.ts +2 -0
  2367. package/dist/modules/catalog/pages/admin/collectionNew/index.js +8 -0
  2368. package/dist/modules/catalog/pages/admin/collectionNew/index.js.map +1 -0
  2369. package/dist/modules/catalog/pages/admin/collectionNew/route.json +4 -0
  2370. package/dist/modules/catalog/pages/admin/productEdit/Collection.d.ts +23 -0
  2371. package/dist/modules/catalog/pages/admin/productEdit/Collection.js +43 -0
  2372. package/dist/modules/catalog/pages/admin/productEdit/Collection.js.map +1 -0
  2373. package/dist/modules/catalog/pages/admin/productEdit/ProductEditForm.d.ts +15 -0
  2374. package/dist/modules/catalog/pages/admin/productEdit/ProductEditForm.js +42 -0
  2375. package/dist/modules/catalog/pages/admin/productEdit/ProductEditForm.js.map +1 -0
  2376. package/dist/modules/catalog/pages/admin/productEdit/VariantGroup.d.ts +21 -0
  2377. package/dist/modules/catalog/pages/admin/productEdit/VariantGroup.js +62 -0
  2378. package/dist/modules/catalog/pages/admin/productEdit/VariantGroup.js.map +1 -0
  2379. package/dist/modules/catalog/pages/admin/productEdit/index.d.ts +2 -0
  2380. package/dist/modules/catalog/pages/admin/productEdit/index.js +31 -0
  2381. package/dist/modules/catalog/pages/admin/productEdit/index.js.map +1 -0
  2382. package/dist/modules/catalog/pages/admin/productEdit/route.json +4 -0
  2383. package/dist/modules/catalog/pages/admin/productEdit+productNew/Attributes.d.ts +26 -0
  2384. package/dist/modules/catalog/pages/admin/productEdit+productNew/Attributes.js +160 -0
  2385. package/dist/modules/catalog/pages/admin/productEdit+productNew/Attributes.js.map +1 -0
  2386. package/dist/modules/catalog/pages/admin/productEdit+productNew/FormContent.d.ts +15 -0
  2387. package/dist/modules/catalog/pages/admin/productEdit+productNew/FormContent.js +37 -0
  2388. package/dist/modules/catalog/pages/admin/productEdit+productNew/FormContent.js.map +1 -0
  2389. package/dist/modules/catalog/pages/admin/productEdit+productNew/FormContent.scss +7 -0
  2390. package/dist/modules/catalog/pages/admin/productEdit+productNew/General.d.ts +37 -0
  2391. package/dist/modules/catalog/pages/admin/productEdit+productNew/General.js +296 -0
  2392. package/dist/modules/catalog/pages/admin/productEdit+productNew/General.js.map +1 -0
  2393. package/dist/modules/catalog/pages/admin/productEdit+productNew/Inventory.d.ts +25 -0
  2394. package/dist/modules/catalog/pages/admin/productEdit+productNew/Inventory.js +56 -0
  2395. package/dist/modules/catalog/pages/admin/productEdit+productNew/Inventory.js.map +1 -0
  2396. package/dist/modules/catalog/pages/admin/productEdit+productNew/Media.d.ts +25 -0
  2397. package/dist/modules/catalog/pages/admin/productEdit+productNew/Media.js +52 -0
  2398. package/dist/modules/catalog/pages/admin/productEdit+productNew/Media.js.map +1 -0
  2399. package/dist/modules/catalog/pages/admin/productEdit+productNew/PageHeading.d.ts +21 -0
  2400. package/dist/modules/catalog/pages/admin/productEdit+productNew/PageHeading.js +28 -0
  2401. package/dist/modules/catalog/pages/admin/productEdit+productNew/PageHeading.js.map +1 -0
  2402. package/dist/modules/catalog/pages/admin/productEdit+productNew/Seo.d.ts +24 -0
  2403. package/dist/modules/catalog/pages/admin/productEdit+productNew/Seo.js +94 -0
  2404. package/dist/modules/catalog/pages/admin/productEdit+productNew/Seo.js.map +1 -0
  2405. package/dist/modules/catalog/pages/admin/productEdit+productNew/Status.d.ts +23 -0
  2406. package/dist/modules/catalog/pages/admin/productEdit+productNew/Status.js +54 -0
  2407. package/dist/modules/catalog/pages/admin/productEdit+productNew/Status.js.map +1 -0
  2408. package/dist/modules/catalog/pages/admin/productGrid/Grid.d.ts +20 -0
  2409. package/dist/modules/catalog/pages/admin/productGrid/Grid.js +422 -0
  2410. package/dist/modules/catalog/pages/admin/productGrid/Grid.js.map +1 -0
  2411. package/dist/modules/catalog/pages/admin/productGrid/Heading.d.ts +6 -0
  2412. package/dist/modules/catalog/pages/admin/productGrid/Heading.js +10 -0
  2413. package/dist/modules/catalog/pages/admin/productGrid/Heading.js.map +1 -0
  2414. package/dist/modules/catalog/pages/admin/productGrid/NewProductButton.d.ts +15 -0
  2415. package/dist/modules/catalog/pages/admin/productGrid/NewProductButton.js +19 -0
  2416. package/dist/modules/catalog/pages/admin/productGrid/NewProductButton.js.map +1 -0
  2417. package/dist/modules/catalog/pages/admin/productGrid/index.d.ts +2 -0
  2418. package/dist/modules/catalog/pages/admin/productGrid/index.js +10 -0
  2419. package/dist/modules/catalog/pages/admin/productGrid/index.js.map +1 -0
  2420. package/dist/modules/catalog/pages/admin/productGrid/route.json +4 -0
  2421. package/dist/modules/catalog/pages/admin/productNew/ProductNewForm.d.ts +15 -0
  2422. package/dist/modules/catalog/pages/admin/productNew/ProductNewForm.js +45 -0
  2423. package/dist/modules/catalog/pages/admin/productNew/ProductNewForm.js.map +1 -0
  2424. package/dist/modules/catalog/pages/admin/productNew/index.d.ts +2 -0
  2425. package/dist/modules/catalog/pages/admin/productNew/index.js +8 -0
  2426. package/dist/modules/catalog/pages/admin/productNew/index.js.map +1 -0
  2427. package/dist/modules/catalog/pages/admin/productNew/route.json +4 -0
  2428. package/dist/modules/catalog/pages/frontStore/all/SearchBox.d.ts +15 -0
  2429. package/dist/modules/catalog/pages/frontStore/all/SearchBox.js +60 -0
  2430. package/dist/modules/catalog/pages/frontStore/all/SearchBox.js.map +1 -0
  2431. package/dist/modules/catalog/pages/frontStore/all/SearchBox.scss +40 -0
  2432. package/dist/modules/catalog/pages/frontStore/catalogSearch/General.d.ts +6 -0
  2433. package/dist/modules/catalog/pages/frontStore/catalogSearch/General.js +21 -0
  2434. package/dist/modules/catalog/pages/frontStore/catalogSearch/General.js.map +1 -0
  2435. package/dist/modules/catalog/pages/frontStore/catalogSearch/General.scss +5 -0
  2436. package/dist/modules/catalog/pages/frontStore/catalogSearch/Pagination.d.ts +19 -0
  2437. package/dist/modules/catalog/pages/frontStore/catalogSearch/Pagination.js +37 -0
  2438. package/dist/modules/catalog/pages/frontStore/catalogSearch/Pagination.js.map +1 -0
  2439. package/dist/modules/catalog/pages/frontStore/catalogSearch/Products.d.ts +25 -0
  2440. package/dist/modules/catalog/pages/frontStore/catalogSearch/Products.js +75 -0
  2441. package/dist/modules/catalog/pages/frontStore/catalogSearch/Products.js.map +1 -0
  2442. package/dist/modules/catalog/pages/frontStore/catalogSearch/SearchPage.d.ts +6 -0
  2443. package/dist/modules/catalog/pages/frontStore/catalogSearch/SearchPage.js +11 -0
  2444. package/dist/modules/catalog/pages/frontStore/catalogSearch/SearchPage.js.map +1 -0
  2445. package/dist/modules/catalog/pages/frontStore/catalogSearch/Sorting.d.ts +6 -0
  2446. package/dist/modules/catalog/pages/frontStore/catalogSearch/Sorting.js +10 -0
  2447. package/dist/modules/catalog/pages/frontStore/catalogSearch/Sorting.js.map +1 -0
  2448. package/dist/modules/catalog/pages/frontStore/catalogSearch/[index]filters.d.ts +2 -0
  2449. package/dist/modules/catalog/pages/frontStore/catalogSearch/[index]filters.js +7 -0
  2450. package/dist/modules/catalog/pages/frontStore/catalogSearch/[index]filters.js.map +1 -0
  2451. package/dist/modules/catalog/pages/frontStore/catalogSearch/index.d.ts +2 -0
  2452. package/dist/modules/catalog/pages/frontStore/catalogSearch/index.js +20 -0
  2453. package/dist/modules/catalog/pages/frontStore/catalogSearch/index.js.map +1 -0
  2454. package/dist/modules/catalog/pages/frontStore/catalogSearch/route.json +5 -0
  2455. package/dist/modules/catalog/pages/frontStore/categoryView/CategoryView.d.ts +15 -0
  2456. package/dist/modules/catalog/pages/frontStore/categoryView/CategoryView.js +27 -0
  2457. package/dist/modules/catalog/pages/frontStore/categoryView/CategoryView.js.map +1 -0
  2458. package/dist/modules/catalog/pages/frontStore/categoryView/Filter.d.ts +27 -0
  2459. package/dist/modules/catalog/pages/frontStore/categoryView/Filter.js +171 -0
  2460. package/dist/modules/catalog/pages/frontStore/categoryView/Filter.js.map +1 -0
  2461. package/dist/modules/catalog/pages/frontStore/categoryView/Filter.scss +142 -0
  2462. package/dist/modules/catalog/pages/frontStore/categoryView/General.d.ts +19 -0
  2463. package/dist/modules/catalog/pages/frontStore/categoryView/General.js +46 -0
  2464. package/dist/modules/catalog/pages/frontStore/categoryView/General.js.map +1 -0
  2465. package/dist/modules/catalog/pages/frontStore/categoryView/General.scss +25 -0
  2466. package/dist/modules/catalog/pages/frontStore/categoryView/Pagination.d.ts +22 -0
  2467. package/dist/modules/catalog/pages/frontStore/categoryView/Pagination.js +47 -0
  2468. package/dist/modules/catalog/pages/frontStore/categoryView/Pagination.js.map +1 -0
  2469. package/dist/modules/catalog/pages/frontStore/categoryView/Products.d.ts +32 -0
  2470. package/dist/modules/catalog/pages/frontStore/categoryView/Products.js +88 -0
  2471. package/dist/modules/catalog/pages/frontStore/categoryView/Products.js.map +1 -0
  2472. package/dist/modules/catalog/pages/frontStore/categoryView/Sorting.d.ts +6 -0
  2473. package/dist/modules/catalog/pages/frontStore/categoryView/Sorting.js +10 -0
  2474. package/dist/modules/catalog/pages/frontStore/categoryView/Sorting.js.map +1 -0
  2475. package/dist/modules/catalog/pages/frontStore/categoryView/[index]filters.d.ts +2 -0
  2476. package/dist/modules/catalog/pages/frontStore/categoryView/[index]filters.js +7 -0
  2477. package/dist/modules/catalog/pages/frontStore/categoryView/[index]filters.js.map +1 -0
  2478. package/dist/modules/catalog/pages/frontStore/categoryView/index.d.ts +2 -0
  2479. package/dist/modules/catalog/pages/frontStore/categoryView/index.js +31 -0
  2480. package/dist/modules/catalog/pages/frontStore/categoryView/index.js.map +1 -0
  2481. package/dist/modules/catalog/pages/frontStore/categoryView/route.json +5 -0
  2482. package/dist/modules/catalog/pages/frontStore/productView/Attributes.d.ts +17 -0
  2483. package/dist/modules/catalog/pages/frontStore/productView/Attributes.js +40 -0
  2484. package/dist/modules/catalog/pages/frontStore/productView/Attributes.js.map +1 -0
  2485. package/dist/modules/catalog/pages/frontStore/productView/Description.d.ts +17 -0
  2486. package/dist/modules/catalog/pages/frontStore/productView/Description.js +31 -0
  2487. package/dist/modules/catalog/pages/frontStore/productView/Description.js.map +1 -0
  2488. package/dist/modules/catalog/pages/frontStore/productView/Form.d.ts +20 -0
  2489. package/dist/modules/catalog/pages/frontStore/productView/Form.js +183 -0
  2490. package/dist/modules/catalog/pages/frontStore/productView/Form.js.map +1 -0
  2491. package/dist/modules/catalog/pages/frontStore/productView/Form.scss +71 -0
  2492. package/dist/modules/catalog/pages/frontStore/productView/GeneralInfo.d.ts +15 -0
  2493. package/dist/modules/catalog/pages/frontStore/productView/GeneralInfo.js +74 -0
  2494. package/dist/modules/catalog/pages/frontStore/productView/GeneralInfo.js.map +1 -0
  2495. package/dist/modules/catalog/pages/frontStore/productView/GeneralInfo.scss +3 -0
  2496. package/dist/modules/catalog/pages/frontStore/productView/Images.d.ts +19 -0
  2497. package/dist/modules/catalog/pages/frontStore/productView/Images.js +78 -0
  2498. package/dist/modules/catalog/pages/frontStore/productView/Images.js.map +1 -0
  2499. package/dist/modules/catalog/pages/frontStore/productView/Options.d.ts +19 -0
  2500. package/dist/modules/catalog/pages/frontStore/productView/Options.js +65 -0
  2501. package/dist/modules/catalog/pages/frontStore/productView/Options.js.map +1 -0
  2502. package/dist/modules/catalog/pages/frontStore/productView/ParticipantForm.d.ts +13 -0
  2503. package/dist/modules/catalog/pages/frontStore/productView/ParticipantForm.js +47 -0
  2504. package/dist/modules/catalog/pages/frontStore/productView/ParticipantForm.js.map +1 -0
  2505. package/dist/modules/catalog/pages/frontStore/productView/ProductView.d.ts +7 -0
  2506. package/dist/modules/catalog/pages/frontStore/productView/ProductView.js +68 -0
  2507. package/dist/modules/catalog/pages/frontStore/productView/ProductView.js.map +1 -0
  2508. package/dist/modules/catalog/pages/frontStore/productView/Variants.d.ts +21 -0
  2509. package/dist/modules/catalog/pages/frontStore/productView/Variants.js +194 -0
  2510. package/dist/modules/catalog/pages/frontStore/productView/Variants.js.map +1 -0
  2511. package/dist/modules/catalog/pages/frontStore/productView/Variants.scss +23 -0
  2512. package/dist/modules/catalog/pages/frontStore/productView/index.d.ts +2 -0
  2513. package/dist/modules/catalog/pages/frontStore/productView/index.js +115 -0
  2514. package/dist/modules/catalog/pages/frontStore/productView/index.js.map +1 -0
  2515. package/dist/modules/catalog/pages/frontStore/productView/route.json +5 -0
  2516. package/dist/modules/catalog/services/AttributeCollection.d.ts +9 -0
  2517. package/dist/modules/catalog/services/AttributeCollection.js +39 -0
  2518. package/dist/modules/catalog/services/AttributeCollection.js.map +1 -0
  2519. package/dist/modules/catalog/services/AttributeGroupCollection.d.ts +9 -0
  2520. package/dist/modules/catalog/services/AttributeGroupCollection.js +71 -0
  2521. package/dist/modules/catalog/services/AttributeGroupCollection.js.map +1 -0
  2522. package/dist/modules/catalog/services/CategoryCollection.d.ts +9 -0
  2523. package/dist/modules/catalog/services/CategoryCollection.js +45 -0
  2524. package/dist/modules/catalog/services/CategoryCollection.js.map +1 -0
  2525. package/dist/modules/catalog/services/CollectionCollection.d.ts +9 -0
  2526. package/dist/modules/catalog/services/CollectionCollection.js +40 -0
  2527. package/dist/modules/catalog/services/CollectionCollection.js.map +1 -0
  2528. package/dist/modules/catalog/services/ProductCollection.d.ts +18 -0
  2529. package/dist/modules/catalog/services/ProductCollection.js +106 -0
  2530. package/dist/modules/catalog/services/ProductCollection.js.map +1 -0
  2531. package/dist/modules/catalog/services/attribute/attributeDataSchema.json +62 -0
  2532. package/dist/modules/catalog/services/attribute/createProductAttribute.d.ts +16 -0
  2533. package/dist/modules/catalog/services/attribute/createProductAttribute.js +115 -0
  2534. package/dist/modules/catalog/services/attribute/createProductAttribute.js.map +1 -0
  2535. package/dist/modules/catalog/services/attribute/deleteProductAttribute.d.ts +7 -0
  2536. package/dist/modules/catalog/services/attribute/deleteProductAttribute.js +57 -0
  2537. package/dist/modules/catalog/services/attribute/deleteProductAttribute.js.map +1 -0
  2538. package/dist/modules/catalog/services/attribute/updateProductAttribute.d.ts +18 -0
  2539. package/dist/modules/catalog/services/attribute/updateProductAttribute.js +179 -0
  2540. package/dist/modules/catalog/services/attribute/updateProductAttribute.js.map +1 -0
  2541. package/dist/modules/catalog/services/category/categoryDataSchema.json +59 -0
  2542. package/dist/modules/catalog/services/category/createCategory.d.ts +12 -0
  2543. package/dist/modules/catalog/services/category/createCategory.js +77 -0
  2544. package/dist/modules/catalog/services/category/createCategory.js.map +1 -0
  2545. package/dist/modules/catalog/services/category/deleteCategory.d.ts +7 -0
  2546. package/dist/modules/catalog/services/category/deleteCategory.js +46 -0
  2547. package/dist/modules/catalog/services/category/deleteCategory.js.map +1 -0
  2548. package/dist/modules/catalog/services/category/updateCategory.d.ts +9 -0
  2549. package/dist/modules/catalog/services/category/updateCategory.js +95 -0
  2550. package/dist/modules/catalog/services/category/updateCategory.js.map +1 -0
  2551. package/dist/modules/catalog/services/collection/collectionDataSchema.json +20 -0
  2552. package/dist/modules/catalog/services/collection/createCollection.d.ts +13 -0
  2553. package/dist/modules/catalog/services/collection/createCollection.js +60 -0
  2554. package/dist/modules/catalog/services/collection/createCollection.js.map +1 -0
  2555. package/dist/modules/catalog/services/collection/deleteCollection.d.ts +7 -0
  2556. package/dist/modules/catalog/services/collection/deleteCollection.js +47 -0
  2557. package/dist/modules/catalog/services/collection/deleteCollection.js.map +1 -0
  2558. package/dist/modules/catalog/services/collection/updateCollection.d.ts +9 -0
  2559. package/dist/modules/catalog/services/collection/updateCollection.js +83 -0
  2560. package/dist/modules/catalog/services/collection/updateCollection.js.map +1 -0
  2561. package/dist/modules/catalog/services/getAttributeGroupsBaseQuery.d.ts +1 -0
  2562. package/dist/modules/catalog/services/getAttributeGroupsBaseQuery.js +3 -0
  2563. package/dist/modules/catalog/services/getAttributeGroupsBaseQuery.js.map +1 -0
  2564. package/dist/modules/catalog/services/getAttributesBaseQuery.d.ts +1 -0
  2565. package/dist/modules/catalog/services/getAttributesBaseQuery.js +3 -0
  2566. package/dist/modules/catalog/services/getAttributesBaseQuery.js.map +1 -0
  2567. package/dist/modules/catalog/services/getCategoriesBaseQuery.d.ts +2 -0
  2568. package/dist/modules/catalog/services/getCategoriesBaseQuery.js +9 -0
  2569. package/dist/modules/catalog/services/getCategoriesBaseQuery.js.map +1 -0
  2570. package/dist/modules/catalog/services/getCollectionsBaseQuery.d.ts +2 -0
  2571. package/dist/modules/catalog/services/getCollectionsBaseQuery.js +6 -0
  2572. package/dist/modules/catalog/services/getCollectionsBaseQuery.js.map +1 -0
  2573. package/dist/modules/catalog/services/getFilterableAttributes.d.ts +9 -0
  2574. package/dist/modules/catalog/services/getFilterableAttributes.js +59 -0
  2575. package/dist/modules/catalog/services/getFilterableAttributes.js.map +1 -0
  2576. package/dist/modules/catalog/services/getProductsBaseQuery.d.ts +2 -0
  2577. package/dist/modules/catalog/services/getProductsBaseQuery.js +16 -0
  2578. package/dist/modules/catalog/services/getProductsBaseQuery.js.map +1 -0
  2579. package/dist/modules/catalog/services/getProductsByCategoryBaseQuery.d.ts +2 -0
  2580. package/dist/modules/catalog/services/getProductsByCategoryBaseQuery.js +23 -0
  2581. package/dist/modules/catalog/services/getProductsByCategoryBaseQuery.js.map +1 -0
  2582. package/dist/modules/catalog/services/getProductsByCollectionBaseQuery.d.ts +2 -0
  2583. package/dist/modules/catalog/services/getProductsByCollectionBaseQuery.js +11 -0
  2584. package/dist/modules/catalog/services/getProductsByCollectionBaseQuery.js.map +1 -0
  2585. package/dist/modules/catalog/services/index.d.ts +18 -0
  2586. package/dist/modules/catalog/services/index.js +19 -0
  2587. package/dist/modules/catalog/services/index.js.map +1 -0
  2588. package/dist/modules/catalog/services/product/createProduct.d.ts +31 -0
  2589. package/dist/modules/catalog/services/product/createProduct.js +197 -0
  2590. package/dist/modules/catalog/services/product/createProduct.js.map +1 -0
  2591. package/dist/modules/catalog/services/product/deleteProduct.d.ts +8 -0
  2592. package/dist/modules/catalog/services/product/deleteProduct.js +60 -0
  2593. package/dist/modules/catalog/services/product/deleteProduct.js.map +1 -0
  2594. package/dist/modules/catalog/services/product/productDataSchema.json +154 -0
  2595. package/dist/modules/catalog/services/product/updateProduct.d.ts +9 -0
  2596. package/dist/modules/catalog/services/product/updateProduct.js +328 -0
  2597. package/dist/modules/catalog/services/product/updateProduct.js.map +1 -0
  2598. package/dist/modules/catalog/services/registerCartItemProductUrlField.d.ts +1 -0
  2599. package/dist/modules/catalog/services/registerCartItemProductUrlField.js +34 -0
  2600. package/dist/modules/catalog/services/registerCartItemProductUrlField.js.map +1 -0
  2601. package/dist/modules/catalog/services/registerCartItemVariantOptionsField.d.ts +1 -0
  2602. package/dist/modules/catalog/services/registerCartItemVariantOptionsField.js +46 -0
  2603. package/dist/modules/catalog/services/registerCartItemVariantOptionsField.js.map +1 -0
  2604. package/dist/modules/catalog/services/registerDefaultAttributeCollectionFilters.d.ts +5 -0
  2605. package/dist/modules/catalog/services/registerDefaultAttributeCollectionFilters.js +112 -0
  2606. package/dist/modules/catalog/services/registerDefaultAttributeCollectionFilters.js.map +1 -0
  2607. package/dist/modules/catalog/services/registerDefaultCategoryCollectionFilters.d.ts +5 -0
  2608. package/dist/modules/catalog/services/registerDefaultCategoryCollectionFilters.js +87 -0
  2609. package/dist/modules/catalog/services/registerDefaultCategoryCollectionFilters.js.map +1 -0
  2610. package/dist/modules/catalog/services/registerDefaultCollectionCollectionFilters.d.ts +5 -0
  2611. package/dist/modules/catalog/services/registerDefaultCollectionCollectionFilters.js +54 -0
  2612. package/dist/modules/catalog/services/registerDefaultCollectionCollectionFilters.js.map +1 -0
  2613. package/dist/modules/catalog/services/registerDefaultProductCollectionFilters.d.ts +5 -0
  2614. package/dist/modules/catalog/services/registerDefaultProductCollectionFilters.js +203 -0
  2615. package/dist/modules/catalog/services/registerDefaultProductCollectionFilters.js.map +1 -0
  2616. package/dist/modules/catalog/subscribers/category_created/buildUrlRewrite.d.ts +1 -0
  2617. package/dist/modules/catalog/subscribers/category_created/buildUrlRewrite.js +48 -0
  2618. package/dist/modules/catalog/subscribers/category_created/buildUrlRewrite.js.map +1 -0
  2619. package/dist/modules/catalog/subscribers/category_deleted/deleteUrlRewrite.d.ts +1 -0
  2620. package/dist/modules/catalog/subscribers/category_deleted/deleteUrlRewrite.js +27 -0
  2621. package/dist/modules/catalog/subscribers/category_deleted/deleteUrlRewrite.js.map +1 -0
  2622. package/dist/modules/catalog/subscribers/category_updated/buildUrlRewrite.d.ts +1 -0
  2623. package/dist/modules/catalog/subscribers/category_updated/buildUrlRewrite.js +58 -0
  2624. package/dist/modules/catalog/subscribers/category_updated/buildUrlRewrite.js.map +1 -0
  2625. package/dist/modules/catalog/subscribers/product_created/builUrlRewrite.d.ts +1 -0
  2626. package/dist/modules/catalog/subscribers/product_created/builUrlRewrite.js +58 -0
  2627. package/dist/modules/catalog/subscribers/product_created/builUrlRewrite.js.map +1 -0
  2628. package/dist/modules/catalog/subscribers/product_deleted/deleteUrlRewrite.d.ts +1 -0
  2629. package/dist/modules/catalog/subscribers/product_deleted/deleteUrlRewrite.js +8 -0
  2630. package/dist/modules/catalog/subscribers/product_deleted/deleteUrlRewrite.js.map +1 -0
  2631. package/dist/modules/catalog/subscribers/product_image_added/generateLocalImages.d.ts +1 -0
  2632. package/dist/modules/catalog/subscribers/product_image_added/generateLocalImages.js +55 -0
  2633. package/dist/modules/catalog/subscribers/product_image_added/generateLocalImages.js.map +1 -0
  2634. package/dist/modules/catalog/subscribers/product_updated/buildUrlRewrite.d.ts +1 -0
  2635. package/dist/modules/catalog/subscribers/product_updated/buildUrlRewrite.js +51 -0
  2636. package/dist/modules/catalog/subscribers/product_updated/buildUrlRewrite.js.map +1 -0
  2637. package/dist/modules/catalog/tests/intergration/productView.test.d.ts +1 -0
  2638. package/dist/modules/catalog/tests/intergration/productView.test.js +22 -0
  2639. package/dist/modules/catalog/tests/intergration/productView.test.js.map +1 -0
  2640. package/dist/modules/checkout/api/addCartAddress/[context]bodyParser[auth].d.ts +2 -0
  2641. package/dist/modules/checkout/api/addCartAddress/[context]bodyParser[auth].js +5 -0
  2642. package/dist/modules/checkout/api/addCartAddress/[context]bodyParser[auth].js.map +1 -0
  2643. package/dist/modules/checkout/api/addCartAddress/payloadSchema.json +23 -0
  2644. package/dist/modules/checkout/api/addCartAddress/route.json +5 -0
  2645. package/dist/modules/checkout/api/addCartAddress/saveAddress.d.ts +2 -0
  2646. package/dist/modules/checkout/api/addCartAddress/saveAddress.js +75 -0
  2647. package/dist/modules/checkout/api/addCartAddress/saveAddress.js.map +1 -0
  2648. package/dist/modules/checkout/api/addCartContactInfo/[context]bodyParser[auth].d.ts +2 -0
  2649. package/dist/modules/checkout/api/addCartContactInfo/[context]bodyParser[auth].js +5 -0
  2650. package/dist/modules/checkout/api/addCartContactInfo/[context]bodyParser[auth].js.map +1 -0
  2651. package/dist/modules/checkout/api/addCartContactInfo/payloadSchema.json +17 -0
  2652. package/dist/modules/checkout/api/addCartContactInfo/route.json +5 -0
  2653. package/dist/modules/checkout/api/addCartContactInfo/saveContactInfo.d.ts +2 -0
  2654. package/dist/modules/checkout/api/addCartContactInfo/saveContactInfo.js +40 -0
  2655. package/dist/modules/checkout/api/addCartContactInfo/saveContactInfo.js.map +1 -0
  2656. package/dist/modules/checkout/api/addCartItem/[context]bodyParser[auth].d.ts +2 -0
  2657. package/dist/modules/checkout/api/addCartItem/[context]bodyParser[auth].js +5 -0
  2658. package/dist/modules/checkout/api/addCartItem/[context]bodyParser[auth].js.map +1 -0
  2659. package/dist/modules/checkout/api/addCartItem/addItemToCart.d.ts +2 -0
  2660. package/dist/modules/checkout/api/addCartItem/addItemToCart.js +64 -0
  2661. package/dist/modules/checkout/api/addCartItem/addItemToCart.js.map +1 -0
  2662. package/dist/modules/checkout/api/addCartItem/payloadSchema.json +20 -0
  2663. package/dist/modules/checkout/api/addCartItem/route.json +5 -0
  2664. package/dist/modules/checkout/api/addCartPaymentMethod/[context]bodyParser[auth].d.ts +2 -0
  2665. package/dist/modules/checkout/api/addCartPaymentMethod/[context]bodyParser[auth].js +5 -0
  2666. package/dist/modules/checkout/api/addCartPaymentMethod/[context]bodyParser[auth].js.map +1 -0
  2667. package/dist/modules/checkout/api/addCartPaymentMethod/payloadSchema.json +20 -0
  2668. package/dist/modules/checkout/api/addCartPaymentMethod/route.json +5 -0
  2669. package/dist/modules/checkout/api/addCartPaymentMethod/savePaymentMethod.d.ts +2 -0
  2670. package/dist/modules/checkout/api/addCartPaymentMethod/savePaymentMethod.js +46 -0
  2671. package/dist/modules/checkout/api/addCartPaymentMethod/savePaymentMethod.js.map +1 -0
  2672. package/dist/modules/checkout/api/addCartShippingMethod/[context]bodyParser[auth].d.ts +2 -0
  2673. package/dist/modules/checkout/api/addCartShippingMethod/[context]bodyParser[auth].js +5 -0
  2674. package/dist/modules/checkout/api/addCartShippingMethod/[context]bodyParser[auth].js.map +1 -0
  2675. package/dist/modules/checkout/api/addCartShippingMethod/payloadSchema.json +15 -0
  2676. package/dist/modules/checkout/api/addCartShippingMethod/route.json +5 -0
  2677. package/dist/modules/checkout/api/addCartShippingMethod/saveShippingMethod.d.ts +2 -0
  2678. package/dist/modules/checkout/api/addCartShippingMethod/saveShippingMethod.js +47 -0
  2679. package/dist/modules/checkout/api/addCartShippingMethod/saveShippingMethod.js.map +1 -0
  2680. package/dist/modules/checkout/api/addMineCartItem/[context]bodyParser[auth].d.ts +2 -0
  2681. package/dist/modules/checkout/api/addMineCartItem/[context]bodyParser[auth].js +5 -0
  2682. package/dist/modules/checkout/api/addMineCartItem/[context]bodyParser[auth].js.map +1 -0
  2683. package/dist/modules/checkout/api/addMineCartItem/[detectCurrentCart]addItemToCart.d.ts +2 -0
  2684. package/dist/modules/checkout/api/addMineCartItem/[detectCurrentCart]addItemToCart.js +82 -0
  2685. package/dist/modules/checkout/api/addMineCartItem/[detectCurrentCart]addItemToCart.js.map +1 -0
  2686. package/dist/modules/checkout/api/addMineCartItem/[getCurrentCustomer]detectCurrentCart.d.ts +2 -0
  2687. package/dist/modules/checkout/api/addMineCartItem/[getCurrentCustomer]detectCurrentCart.js +33 -0
  2688. package/dist/modules/checkout/api/addMineCartItem/[getCurrentCustomer]detectCurrentCart.js.map +1 -0
  2689. package/dist/modules/checkout/api/addMineCartItem/payloadSchema.json +20 -0
  2690. package/dist/modules/checkout/api/addMineCartItem/route.json +5 -0
  2691. package/dist/modules/checkout/api/addShippingNote/[context]bodyParser[auth].d.ts +2 -0
  2692. package/dist/modules/checkout/api/addShippingNote/[context]bodyParser[auth].js +5 -0
  2693. package/dist/modules/checkout/api/addShippingNote/[context]bodyParser[auth].js.map +1 -0
  2694. package/dist/modules/checkout/api/addShippingNote/payloadSchema.json +15 -0
  2695. package/dist/modules/checkout/api/addShippingNote/route.json +5 -0
  2696. package/dist/modules/checkout/api/addShippingNote/saveShippingNote.d.ts +2 -0
  2697. package/dist/modules/checkout/api/addShippingNote/saveShippingNote.js +45 -0
  2698. package/dist/modules/checkout/api/addShippingNote/saveShippingNote.js.map +1 -0
  2699. package/dist/modules/checkout/api/addShippingZoneMethod/[context]borderParser[auth].d.ts +2 -0
  2700. package/dist/modules/checkout/api/addShippingZoneMethod/[context]borderParser[auth].js +5 -0
  2701. package/dist/modules/checkout/api/addShippingZoneMethod/[context]borderParser[auth].js.map +1 -0
  2702. package/dist/modules/checkout/api/addShippingZoneMethod/[validateMethod]addShippingZoneMethod.d.ts +2 -0
  2703. package/dist/modules/checkout/api/addShippingZoneMethod/[validateMethod]addShippingZoneMethod.js +86 -0
  2704. package/dist/modules/checkout/api/addShippingZoneMethod/[validateMethod]addShippingZoneMethod.js.map +1 -0
  2705. package/dist/modules/checkout/api/addShippingZoneMethod/payloadSchema.json +73 -0
  2706. package/dist/modules/checkout/api/addShippingZoneMethod/route.json +5 -0
  2707. package/dist/modules/checkout/api/addShippingZoneMethod/validateMethod.d.ts +2 -0
  2708. package/dist/modules/checkout/api/addShippingZoneMethod/validateMethod.js +30 -0
  2709. package/dist/modules/checkout/api/addShippingZoneMethod/validateMethod.js.map +1 -0
  2710. package/dist/modules/checkout/api/createCart/[context]bodyParser[auth].d.ts +2 -0
  2711. package/dist/modules/checkout/api/createCart/[context]bodyParser[auth].js +5 -0
  2712. package/dist/modules/checkout/api/createCart/[context]bodyParser[auth].js.map +1 -0
  2713. package/dist/modules/checkout/api/createCart/createNewCart.d.ts +2 -0
  2714. package/dist/modules/checkout/api/createCart/createNewCart.js +103 -0
  2715. package/dist/modules/checkout/api/createCart/createNewCart.js.map +1 -0
  2716. package/dist/modules/checkout/api/createCart/payloadSchema.json +44 -0
  2717. package/dist/modules/checkout/api/createCart/route.json +5 -0
  2718. package/dist/modules/checkout/api/createOrder/[context]bodyParser[auth].d.ts +2 -0
  2719. package/dist/modules/checkout/api/createOrder/[context]bodyParser[auth].js +5 -0
  2720. package/dist/modules/checkout/api/createOrder/[context]bodyParser[auth].js.map +1 -0
  2721. package/dist/modules/checkout/api/createOrder/payloadSchema.json +15 -0
  2722. package/dist/modules/checkout/api/createOrder/placeOrder.d.ts +2 -0
  2723. package/dist/modules/checkout/api/createOrder/placeOrder.js +79 -0
  2724. package/dist/modules/checkout/api/createOrder/placeOrder.js.map +1 -0
  2725. package/dist/modules/checkout/api/createOrder/route.json +5 -0
  2726. package/dist/modules/checkout/api/createShippingMethod/[context]borderParser[auth].d.ts +2 -0
  2727. package/dist/modules/checkout/api/createShippingMethod/[context]borderParser[auth].js +5 -0
  2728. package/dist/modules/checkout/api/createShippingMethod/[context]borderParser[auth].js.map +1 -0
  2729. package/dist/modules/checkout/api/createShippingMethod/createShippingMethod.d.ts +2 -0
  2730. package/dist/modules/checkout/api/createShippingMethod/createShippingMethod.js +45 -0
  2731. package/dist/modules/checkout/api/createShippingMethod/createShippingMethod.js.map +1 -0
  2732. package/dist/modules/checkout/api/createShippingMethod/payloadSchema.json +10 -0
  2733. package/dist/modules/checkout/api/createShippingMethod/route.json +5 -0
  2734. package/dist/modules/checkout/api/createShippingZone/[context]borderParser[auth].d.ts +2 -0
  2735. package/dist/modules/checkout/api/createShippingZone/[context]borderParser[auth].js +5 -0
  2736. package/dist/modules/checkout/api/createShippingZone/[context]borderParser[auth].js.map +1 -0
  2737. package/dist/modules/checkout/api/createShippingZone/createShippingZone.d.ts +2 -0
  2738. package/dist/modules/checkout/api/createShippingZone/createShippingZone.js +42 -0
  2739. package/dist/modules/checkout/api/createShippingZone/createShippingZone.js.map +1 -0
  2740. package/dist/modules/checkout/api/createShippingZone/payloadSchema.json +19 -0
  2741. package/dist/modules/checkout/api/createShippingZone/route.json +5 -0
  2742. package/dist/modules/checkout/api/deleteShippingZone/deleteShippingZone.d.ts +2 -0
  2743. package/dist/modules/checkout/api/deleteShippingZone/deleteShippingZone.js +44 -0
  2744. package/dist/modules/checkout/api/deleteShippingZone/deleteShippingZone.js.map +1 -0
  2745. package/dist/modules/checkout/api/deleteShippingZone/route.json +5 -0
  2746. package/dist/modules/checkout/api/deleteShippingZoneMethod/deleteShippingZoneMethod.d.ts +2 -0
  2747. package/dist/modules/checkout/api/deleteShippingZoneMethod/deleteShippingZoneMethod.js +64 -0
  2748. package/dist/modules/checkout/api/deleteShippingZoneMethod/deleteShippingZoneMethod.js.map +1 -0
  2749. package/dist/modules/checkout/api/deleteShippingZoneMethod/route.json +5 -0
  2750. package/dist/modules/checkout/api/getPaymentMethods/route.json +5 -0
  2751. package/dist/modules/checkout/api/getPaymentMethods/sendMethods.d.ts +2 -0
  2752. package/dist/modules/checkout/api/getPaymentMethods/sendMethods.js +26 -0
  2753. package/dist/modules/checkout/api/getPaymentMethods/sendMethods.js.map +1 -0
  2754. package/dist/modules/checkout/api/getShippingMethods/route.json +5 -0
  2755. package/dist/modules/checkout/api/getShippingMethods/sendMethods.d.ts +2 -0
  2756. package/dist/modules/checkout/api/getShippingMethods/sendMethods.js +177 -0
  2757. package/dist/modules/checkout/api/getShippingMethods/sendMethods.js.map +1 -0
  2758. package/dist/modules/checkout/api/removeCartItem/removeItem.d.ts +2 -0
  2759. package/dist/modules/checkout/api/removeCartItem/removeItem.js +38 -0
  2760. package/dist/modules/checkout/api/removeCartItem/removeItem.js.map +1 -0
  2761. package/dist/modules/checkout/api/removeCartItem/route.json +5 -0
  2762. package/dist/modules/checkout/api/removeCartItemRegistration/removeItem.d.ts +2 -0
  2763. package/dist/modules/checkout/api/removeCartItemRegistration/removeItem.js +38 -0
  2764. package/dist/modules/checkout/api/removeCartItemRegistration/removeItem.js.map +1 -0
  2765. package/dist/modules/checkout/api/removeCartItemRegistration/route.json +5 -0
  2766. package/dist/modules/checkout/api/removeMineCartItem/[detectCurrentCart]removeItem.d.ts +2 -0
  2767. package/dist/modules/checkout/api/removeMineCartItem/[detectCurrentCart]removeItem.js +41 -0
  2768. package/dist/modules/checkout/api/removeMineCartItem/[detectCurrentCart]removeItem.js.map +1 -0
  2769. package/dist/modules/checkout/api/removeMineCartItem/[getCurrentCustomer]detectCurrentCart.d.ts +2 -0
  2770. package/dist/modules/checkout/api/removeMineCartItem/[getCurrentCustomer]detectCurrentCart.js +3 -0
  2771. package/dist/modules/checkout/api/removeMineCartItem/[getCurrentCustomer]detectCurrentCart.js.map +1 -0
  2772. package/dist/modules/checkout/api/removeMineCartItem/route.json +5 -0
  2773. package/dist/modules/checkout/api/updateCartItemQty/[bodyParser]updateQty.d.ts +2 -0
  2774. package/dist/modules/checkout/api/updateCartItemQty/[bodyParser]updateQty.js +44 -0
  2775. package/dist/modules/checkout/api/updateCartItemQty/[bodyParser]updateQty.js.map +1 -0
  2776. package/dist/modules/checkout/api/updateCartItemQty/[context]bodyParser[auth].d.ts +2 -0
  2777. package/dist/modules/checkout/api/updateCartItemQty/[context]bodyParser[auth].js +5 -0
  2778. package/dist/modules/checkout/api/updateCartItemQty/[context]bodyParser[auth].js.map +1 -0
  2779. package/dist/modules/checkout/api/updateCartItemQty/payloadSchema.json +21 -0
  2780. package/dist/modules/checkout/api/updateCartItemQty/route.json +5 -0
  2781. package/dist/modules/checkout/api/updateCartItemRegistration/[bodyParser]updateRegistration.d.ts +2 -0
  2782. package/dist/modules/checkout/api/updateCartItemRegistration/[bodyParser]updateRegistration.js +44 -0
  2783. package/dist/modules/checkout/api/updateCartItemRegistration/[bodyParser]updateRegistration.js.map +1 -0
  2784. package/dist/modules/checkout/api/updateCartItemRegistration/[context]bodyParser[auth].d.ts +2 -0
  2785. package/dist/modules/checkout/api/updateCartItemRegistration/[context]bodyParser[auth].js +5 -0
  2786. package/dist/modules/checkout/api/updateCartItemRegistration/[context]bodyParser[auth].js.map +1 -0
  2787. package/dist/modules/checkout/api/updateCartItemRegistration/route.json +5 -0
  2788. package/dist/modules/checkout/api/updateMineCartItemQty/[context]bodyParser[auth].d.ts +2 -0
  2789. package/dist/modules/checkout/api/updateMineCartItemQty/[context]bodyParser[auth].js +5 -0
  2790. package/dist/modules/checkout/api/updateMineCartItemQty/[context]bodyParser[auth].js.map +1 -0
  2791. package/dist/modules/checkout/api/updateMineCartItemQty/[detectCurrentCart]updateQty.d.ts +2 -0
  2792. package/dist/modules/checkout/api/updateMineCartItemQty/[detectCurrentCart]updateQty.js +46 -0
  2793. package/dist/modules/checkout/api/updateMineCartItemQty/[detectCurrentCart]updateQty.js.map +1 -0
  2794. package/dist/modules/checkout/api/updateMineCartItemQty/[getCurrentCustomer]detectCurrentCart.d.ts +2 -0
  2795. package/dist/modules/checkout/api/updateMineCartItemQty/[getCurrentCustomer]detectCurrentCart.js +33 -0
  2796. package/dist/modules/checkout/api/updateMineCartItemQty/[getCurrentCustomer]detectCurrentCart.js.map +1 -0
  2797. package/dist/modules/checkout/api/updateMineCartItemQty/payloadSchema.json +21 -0
  2798. package/dist/modules/checkout/api/updateMineCartItemQty/route.json +5 -0
  2799. package/dist/modules/checkout/api/updateShippingMethod/[context]borderParser[auth].d.ts +2 -0
  2800. package/dist/modules/checkout/api/updateShippingMethod/[context]borderParser[auth].js +5 -0
  2801. package/dist/modules/checkout/api/updateShippingMethod/[context]borderParser[auth].js.map +1 -0
  2802. package/dist/modules/checkout/api/updateShippingMethod/payloadSchema.json +10 -0
  2803. package/dist/modules/checkout/api/updateShippingMethod/route.json +5 -0
  2804. package/dist/modules/checkout/api/updateShippingMethod/updateShippingMethod.d.ts +2 -0
  2805. package/dist/modules/checkout/api/updateShippingMethod/updateShippingMethod.js +49 -0
  2806. package/dist/modules/checkout/api/updateShippingMethod/updateShippingMethod.js.map +1 -0
  2807. package/dist/modules/checkout/api/updateShippingZone/[context]borderParser[auth].d.ts +2 -0
  2808. package/dist/modules/checkout/api/updateShippingZone/[context]borderParser[auth].js +5 -0
  2809. package/dist/modules/checkout/api/updateShippingZone/[context]borderParser[auth].js.map +1 -0
  2810. package/dist/modules/checkout/api/updateShippingZone/payloadSchema.json +19 -0
  2811. package/dist/modules/checkout/api/updateShippingZone/route.json +5 -0
  2812. package/dist/modules/checkout/api/updateShippingZone/updateShippingZone.d.ts +2 -0
  2813. package/dist/modules/checkout/api/updateShippingZone/updateShippingZone.js +73 -0
  2814. package/dist/modules/checkout/api/updateShippingZone/updateShippingZone.js.map +1 -0
  2815. package/dist/modules/checkout/api/updateShippingZoneMethod/[context]borderParser[auth].d.ts +2 -0
  2816. package/dist/modules/checkout/api/updateShippingZoneMethod/[context]borderParser[auth].js +5 -0
  2817. package/dist/modules/checkout/api/updateShippingZoneMethod/[context]borderParser[auth].js.map +1 -0
  2818. package/dist/modules/checkout/api/updateShippingZoneMethod/[validateMethod]updateShippingZoneMethod.d.ts +2 -0
  2819. package/dist/modules/checkout/api/updateShippingZoneMethod/[validateMethod]updateShippingZoneMethod.js +91 -0
  2820. package/dist/modules/checkout/api/updateShippingZoneMethod/[validateMethod]updateShippingZoneMethod.js.map +1 -0
  2821. package/dist/modules/checkout/api/updateShippingZoneMethod/payloadSchema.json +70 -0
  2822. package/dist/modules/checkout/api/updateShippingZoneMethod/route.json +5 -0
  2823. package/dist/modules/checkout/api/updateShippingZoneMethod/validateMethod.d.ts +2 -0
  2824. package/dist/modules/checkout/api/updateShippingZoneMethod/validateMethod.js +3 -0
  2825. package/dist/modules/checkout/api/updateShippingZoneMethod/validateMethod.js.map +1 -0
  2826. package/dist/modules/checkout/bootstrap.d.ts +2 -0
  2827. package/dist/modules/checkout/bootstrap.js +53 -0
  2828. package/dist/modules/checkout/bootstrap.js.map +1 -0
  2829. package/dist/modules/checkout/graphql/types/Cart/Cart.graphql +188 -0
  2830. package/dist/modules/checkout/graphql/types/Cart/Cart.resolvers.d.ts +40 -0
  2831. package/dist/modules/checkout/graphql/types/Cart/Cart.resolvers.js +82 -0
  2832. package/dist/modules/checkout/graphql/types/Cart/Cart.resolvers.js.map +1 -0
  2833. package/dist/modules/checkout/graphql/types/Checkout/Checkout.graphql +10 -0
  2834. package/dist/modules/checkout/graphql/types/Checkout/Checkout.resolvers.d.ts +10 -0
  2835. package/dist/modules/checkout/graphql/types/Checkout/Checkout.resolvers.js +8 -0
  2836. package/dist/modules/checkout/graphql/types/Checkout/Checkout.resolvers.js.map +1 -0
  2837. package/dist/modules/checkout/graphql/types/CheckoutSetting/CheckoutSetting.graphql +3 -0
  2838. package/dist/modules/checkout/graphql/types/CheckoutSetting/CheckoutSetting.resolvers.d.ts +6 -0
  2839. package/dist/modules/checkout/graphql/types/CheckoutSetting/CheckoutSetting.resolvers.js +7 -0
  2840. package/dist/modules/checkout/graphql/types/CheckoutSetting/CheckoutSetting.resolvers.js.map +1 -0
  2841. package/dist/modules/checkout/graphql/types/Date/Date.graphql +7 -0
  2842. package/dist/modules/checkout/graphql/types/Date/Date.resolvers.d.ts +7 -0
  2843. package/dist/modules/checkout/graphql/types/Date/Date.resolvers.js +8 -0
  2844. package/dist/modules/checkout/graphql/types/Date/Date.resolvers.js.map +1 -0
  2845. package/dist/modules/checkout/graphql/types/Price/Price.graphql +8 -0
  2846. package/dist/modules/checkout/graphql/types/Price/Price.resolvers.d.ts +12 -0
  2847. package/dist/modules/checkout/graphql/types/Price/Price.resolvers.js +20 -0
  2848. package/dist/modules/checkout/graphql/types/Price/Price.resolvers.js.map +1 -0
  2849. package/dist/modules/checkout/graphql/types/ShippingMethod/ShippingMethod.graphql +13 -0
  2850. package/dist/modules/checkout/graphql/types/ShippingMethod/ShippingMethod.resolvers.d.ts +11 -0
  2851. package/dist/modules/checkout/graphql/types/ShippingMethod/ShippingMethod.resolvers.js +19 -0
  2852. package/dist/modules/checkout/graphql/types/ShippingMethod/ShippingMethod.resolvers.js.map +1 -0
  2853. package/dist/modules/checkout/graphql/types/ShippingZone/ShippingZone.graphql +56 -0
  2854. package/dist/modules/checkout/graphql/types/ShippingZone/ShippingZone.resolvers.d.ts +52 -0
  2855. package/dist/modules/checkout/graphql/types/ShippingZone/ShippingZone.resolvers.js +89 -0
  2856. package/dist/modules/checkout/graphql/types/ShippingZone/ShippingZone.resolvers.js.map +1 -0
  2857. package/dist/modules/checkout/graphql/types/Weight/Weight.graphql +8 -0
  2858. package/dist/modules/checkout/graphql/types/Weight/Weight.resolvers.d.ts +8 -0
  2859. package/dist/modules/checkout/graphql/types/Weight/Weight.resolvers.js +17 -0
  2860. package/dist/modules/checkout/graphql/types/Weight/Weight.resolvers.js.map +1 -0
  2861. package/dist/modules/checkout/migration/Version-1.0.0.d.ts +2 -0
  2862. package/dist/modules/checkout/migration/Version-1.0.0.js +229 -0
  2863. package/dist/modules/checkout/migration/Version-1.0.0.js.map +1 -0
  2864. package/dist/modules/checkout/migration/Version-1.0.1.d.ts +2 -0
  2865. package/dist/modules/checkout/migration/Version-1.0.1.js +53 -0
  2866. package/dist/modules/checkout/migration/Version-1.0.1.js.map +1 -0
  2867. package/dist/modules/checkout/migration/Version-1.0.2.d.ts +2 -0
  2868. package/dist/modules/checkout/migration/Version-1.0.2.js +20 -0
  2869. package/dist/modules/checkout/migration/Version-1.0.2.js.map +1 -0
  2870. package/dist/modules/checkout/migration/Version-1.0.3.d.ts +2 -0
  2871. package/dist/modules/checkout/migration/Version-1.0.3.js +17 -0
  2872. package/dist/modules/checkout/migration/Version-1.0.3.js.map +1 -0
  2873. package/dist/modules/checkout/migration/Version-1.0.4.d.ts +2 -0
  2874. package/dist/modules/checkout/migration/Version-1.0.4.js +20 -0
  2875. package/dist/modules/checkout/migration/Version-1.0.4.js.map +1 -0
  2876. package/dist/modules/checkout/migration/Version-1.0.5.d.ts +2 -0
  2877. package/dist/modules/checkout/migration/Version-1.0.5.js +12 -0
  2878. package/dist/modules/checkout/migration/Version-1.0.5.js.map +1 -0
  2879. package/dist/modules/checkout/migration/Version-1.0.6.d.ts +2 -0
  2880. package/dist/modules/checkout/migration/Version-1.0.6.js +62 -0
  2881. package/dist/modules/checkout/migration/Version-1.0.6.js.map +1 -0
  2882. package/dist/modules/checkout/migration/Version-1.0.7.d.ts +2 -0
  2883. package/dist/modules/checkout/migration/Version-1.0.7.js +12 -0
  2884. package/dist/modules/checkout/migration/Version-1.0.7.js.map +1 -0
  2885. package/dist/modules/checkout/pages/admin/all/ShippingSettingMenu.d.ts +15 -0
  2886. package/dist/modules/checkout/pages/admin/all/ShippingSettingMenu.js +20 -0
  2887. package/dist/modules/checkout/pages/admin/all/ShippingSettingMenu.js.map +1 -0
  2888. package/dist/modules/checkout/pages/admin/shippingSetting/ShippingSetting.d.ts +15 -0
  2889. package/dist/modules/checkout/pages/admin/shippingSetting/ShippingSetting.js +122 -0
  2890. package/dist/modules/checkout/pages/admin/shippingSetting/ShippingSetting.js.map +1 -0
  2891. package/dist/modules/checkout/pages/admin/shippingSetting/index.d.ts +2 -0
  2892. package/dist/modules/checkout/pages/admin/shippingSetting/index.js +8 -0
  2893. package/dist/modules/checkout/pages/admin/shippingSetting/index.js.map +1 -0
  2894. package/dist/modules/checkout/pages/admin/shippingSetting/route.json +4 -0
  2895. package/dist/modules/checkout/pages/frontStore/all/MiniCart.d.ts +21 -0
  2896. package/dist/modules/checkout/pages/frontStore/all/MiniCart.js +35 -0
  2897. package/dist/modules/checkout/pages/frontStore/all/MiniCart.js.map +1 -0
  2898. package/dist/modules/checkout/pages/frontStore/all/MiniCart.scss +21 -0
  2899. package/dist/modules/checkout/pages/frontStore/all/[auth]addCustomerToCart.d.ts +2 -0
  2900. package/dist/modules/checkout/pages/frontStore/all/[auth]addCustomerToCart.js +33 -0
  2901. package/dist/modules/checkout/pages/frontStore/all/[auth]addCustomerToCart.js.map +1 -0
  2902. package/dist/modules/checkout/pages/frontStore/all/[context]detectCurrentCart[auth].d.ts +2 -0
  2903. package/dist/modules/checkout/pages/frontStore/all/[context]detectCurrentCart[auth].js +45 -0
  2904. package/dist/modules/checkout/pages/frontStore/all/[context]detectCurrentCart[auth].js.map +1 -0
  2905. package/dist/modules/checkout/pages/frontStore/cart/ShoppingCart.d.ts +17 -0
  2906. package/dist/modules/checkout/pages/frontStore/cart/ShoppingCart.js +124 -0
  2907. package/dist/modules/checkout/pages/frontStore/cart/ShoppingCart.js.map +1 -0
  2908. package/dist/modules/checkout/pages/frontStore/cart/Summary.d.ts +29 -0
  2909. package/dist/modules/checkout/pages/frontStore/cart/Summary.js +163 -0
  2910. package/dist/modules/checkout/pages/frontStore/cart/Summary.js.map +1 -0
  2911. package/dist/modules/checkout/pages/frontStore/cart/Summary.scss +8 -0
  2912. package/dist/modules/checkout/pages/frontStore/cart/index.d.ts +2 -0
  2913. package/dist/modules/checkout/pages/frontStore/cart/index.js +9 -0
  2914. package/dist/modules/checkout/pages/frontStore/cart/index.js.map +1 -0
  2915. package/dist/modules/checkout/pages/frontStore/cart/route.json +5 -0
  2916. package/dist/modules/checkout/pages/frontStore/checkout/Checkout.d.ts +23 -0
  2917. package/dist/modules/checkout/pages/frontStore/checkout/Checkout.js +91 -0
  2918. package/dist/modules/checkout/pages/frontStore/checkout/Checkout.js.map +1 -0
  2919. package/dist/modules/checkout/pages/frontStore/checkout/Checkout.scss +44 -0
  2920. package/dist/modules/checkout/pages/frontStore/checkout/PaymentMethods.d.ts +10 -0
  2921. package/dist/modules/checkout/pages/frontStore/checkout/PaymentMethods.js +30 -0
  2922. package/dist/modules/checkout/pages/frontStore/checkout/PaymentMethods.js.map +1 -0
  2923. package/dist/modules/checkout/pages/frontStore/checkout/PaymentStep.d.ts +19 -0
  2924. package/dist/modules/checkout/pages/frontStore/checkout/PaymentStep.js +83 -0
  2925. package/dist/modules/checkout/pages/frontStore/checkout/PaymentStep.js.map +1 -0
  2926. package/dist/modules/checkout/pages/frontStore/checkout/ShipmentStep.d.ts +33 -0
  2927. package/dist/modules/checkout/pages/frontStore/checkout/ShipmentStep.js +140 -0
  2928. package/dist/modules/checkout/pages/frontStore/checkout/ShipmentStep.js.map +1 -0
  2929. package/dist/modules/checkout/pages/frontStore/checkout/ShippingMethods.d.ts +21 -0
  2930. package/dist/modules/checkout/pages/frontStore/checkout/ShippingMethods.js +185 -0
  2931. package/dist/modules/checkout/pages/frontStore/checkout/ShippingMethods.js.map +1 -0
  2932. package/dist/modules/checkout/pages/frontStore/checkout/ShippingNote.d.ts +32 -0
  2933. package/dist/modules/checkout/pages/frontStore/checkout/ShippingNote.js +79 -0
  2934. package/dist/modules/checkout/pages/frontStore/checkout/ShippingNote.js.map +1 -0
  2935. package/dist/modules/checkout/pages/frontStore/checkout/Summary.d.ts +19 -0
  2936. package/dist/modules/checkout/pages/frontStore/checkout/Summary.js +121 -0
  2937. package/dist/modules/checkout/pages/frontStore/checkout/Summary.js.map +1 -0
  2938. package/dist/modules/checkout/pages/frontStore/checkout/Summary.scss +51 -0
  2939. package/dist/modules/checkout/pages/frontStore/checkout/SummaryMobile.d.ts +19 -0
  2940. package/dist/modules/checkout/pages/frontStore/checkout/SummaryMobile.js +118 -0
  2941. package/dist/modules/checkout/pages/frontStore/checkout/SummaryMobile.js.map +1 -0
  2942. package/dist/modules/checkout/pages/frontStore/checkout/SummaryMobile.scss +7 -0
  2943. package/dist/modules/checkout/pages/frontStore/checkout/index.d.ts +2 -0
  2944. package/dist/modules/checkout/pages/frontStore/checkout/index.js +24 -0
  2945. package/dist/modules/checkout/pages/frontStore/checkout/index.js.map +1 -0
  2946. package/dist/modules/checkout/pages/frontStore/checkout/route.json +5 -0
  2947. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/CheckoutSuccess.d.ts +6 -0
  2948. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/CheckoutSuccess.js +13 -0
  2949. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/CheckoutSuccess.js.map +1 -0
  2950. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/CheckoutSuccess.scss +49 -0
  2951. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/CustomerInfo.d.ts +22 -0
  2952. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/CustomerInfo.js +127 -0
  2953. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/CustomerInfo.js.map +1 -0
  2954. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/ShippingNote.d.ts +31 -0
  2955. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/ShippingNote.js +37 -0
  2956. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/ShippingNote.js.map +1 -0
  2957. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/Summary.d.ts +19 -0
  2958. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/Summary.js +117 -0
  2959. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/Summary.js.map +1 -0
  2960. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/Summary.scss +51 -0
  2961. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/index.d.ts +2 -0
  2962. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/index.js +22 -0
  2963. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/index.js.map +1 -0
  2964. package/dist/modules/checkout/pages/frontStore/checkoutSuccess/route.json +5 -0
  2965. package/dist/modules/checkout/services/addCartItem.d.ts +12 -0
  2966. package/dist/modules/checkout/services/addCartItem.js +69 -0
  2967. package/dist/modules/checkout/services/addCartItem.js.map +1 -0
  2968. package/dist/modules/checkout/services/cart/Cart.d.ts +61 -0
  2969. package/dist/modules/checkout/services/cart/Cart.js +244 -0
  2970. package/dist/modules/checkout/services/cart/Cart.js.map +1 -0
  2971. package/dist/modules/checkout/services/cart/DataObject.d.ts +16 -0
  2972. package/dist/modules/checkout/services/cart/DataObject.js +122 -0
  2973. package/dist/modules/checkout/services/cart/DataObject.js.map +1 -0
  2974. package/dist/modules/checkout/services/cart/registerCartBaseFields.d.ts +1 -0
  2975. package/dist/modules/checkout/services/cart/registerCartBaseFields.js +626 -0
  2976. package/dist/modules/checkout/services/cart/registerCartBaseFields.js.map +1 -0
  2977. package/dist/modules/checkout/services/cart/registerCartItemBaseFields.d.ts +1 -0
  2978. package/dist/modules/checkout/services/cart/registerCartItemBaseFields.js +313 -0
  2979. package/dist/modules/checkout/services/cart/registerCartItemBaseFields.js.map +1 -0
  2980. package/dist/modules/checkout/services/cart/sortFields.d.ts +1 -0
  2981. package/dist/modules/checkout/services/cart/sortFields.js +52 -0
  2982. package/dist/modules/checkout/services/cart/sortFields.js.map +1 -0
  2983. package/dist/modules/checkout/services/createNewCart.d.ts +9 -0
  2984. package/dist/modules/checkout/services/createNewCart.js +20 -0
  2985. package/dist/modules/checkout/services/createNewCart.js.map +1 -0
  2986. package/dist/modules/checkout/services/getAvailablePaymentMethos.d.ts +20 -0
  2987. package/dist/modules/checkout/services/getAvailablePaymentMethos.js +35 -0
  2988. package/dist/modules/checkout/services/getAvailablePaymentMethos.js.map +1 -0
  2989. package/dist/modules/checkout/services/getCartByUUID.d.ts +8 -0
  2990. package/dist/modules/checkout/services/getCartByUUID.js +12 -0
  2991. package/dist/modules/checkout/services/getCartByUUID.js.map +1 -0
  2992. package/dist/modules/checkout/services/getCurrentCart.d.ts +9 -0
  2993. package/dist/modules/checkout/services/getCurrentCart.js +26 -0
  2994. package/dist/modules/checkout/services/getCurrentCart.js.map +1 -0
  2995. package/dist/modules/checkout/services/index.d.ts +10 -0
  2996. package/dist/modules/checkout/services/index.js +11 -0
  2997. package/dist/modules/checkout/services/index.js.map +1 -0
  2998. package/dist/modules/checkout/services/orderCreator.d.ts +8 -0
  2999. package/dist/modules/checkout/services/orderCreator.js +187 -0
  3000. package/dist/modules/checkout/services/orderCreator.js.map +1 -0
  3001. package/dist/modules/checkout/services/orderValidator.d.ts +7 -0
  3002. package/dist/modules/checkout/services/orderValidator.js +85 -0
  3003. package/dist/modules/checkout/services/orderValidator.js.map +1 -0
  3004. package/dist/modules/checkout/services/removeCartItem.d.ts +9 -0
  3005. package/dist/modules/checkout/services/removeCartItem.js +24 -0
  3006. package/dist/modules/checkout/services/removeCartItem.js.map +1 -0
  3007. package/dist/modules/checkout/services/removeCartItemRegistration.d.ts +10 -0
  3008. package/dist/modules/checkout/services/removeCartItemRegistration.js +27 -0
  3009. package/dist/modules/checkout/services/removeCartItemRegistration.js.map +1 -0
  3010. package/dist/modules/checkout/services/saveCart.d.ts +7 -0
  3011. package/dist/modules/checkout/services/saveCart.js +123 -0
  3012. package/dist/modules/checkout/services/saveCart.js.map +1 -0
  3013. package/dist/modules/checkout/services/toPrice.d.ts +2 -0
  3014. package/dist/modules/checkout/services/toPrice.js +36 -0
  3015. package/dist/modules/checkout/services/toPrice.js.map +1 -0
  3016. package/dist/modules/checkout/services/updateCartItemQty.d.ts +3 -0
  3017. package/dist/modules/checkout/services/updateCartItemQty.js +35 -0
  3018. package/dist/modules/checkout/services/updateCartItemQty.js.map +1 -0
  3019. package/dist/modules/checkout/services/updateCartItemRegistration.d.ts +12 -0
  3020. package/dist/modules/checkout/services/updateCartItemRegistration.js +40 -0
  3021. package/dist/modules/checkout/services/updateCartItemRegistration.js.map +1 -0
  3022. package/dist/modules/checkout/tests/basicSetup.d.ts +1 -0
  3023. package/dist/modules/checkout/tests/basicSetup.js +63 -0
  3024. package/dist/modules/checkout/tests/basicSetup.js.map +1 -0
  3025. package/dist/modules/checkout/tests/coupons.d.ts +34 -0
  3026. package/dist/modules/checkout/tests/coupons.js +81 -0
  3027. package/dist/modules/checkout/tests/coupons.js.map +1 -0
  3028. package/dist/modules/checkout/tests/products.d.ts +17 -0
  3029. package/dist/modules/checkout/tests/products.js +66 -0
  3030. package/dist/modules/checkout/tests/products.js.map +1 -0
  3031. package/dist/modules/checkout/tests/taxRates.d.ts +1 -0
  3032. package/dist/modules/checkout/tests/taxRates.js +2 -0
  3033. package/dist/modules/checkout/tests/taxRates.js.map +1 -0
  3034. package/dist/modules/checkout/tests/unit/addItemSideEffect.test.d.ts +1 -0
  3035. package/dist/modules/checkout/tests/unit/addItemSideEffect.test.js +70 -0
  3036. package/dist/modules/checkout/tests/unit/addItemSideEffect.test.js.map +1 -0
  3037. package/dist/modules/checkout/tests/unit/discountAmount.test.d.ts +1 -0
  3038. package/dist/modules/checkout/tests/unit/discountAmount.test.js +59 -0
  3039. package/dist/modules/checkout/tests/unit/discountAmount.test.js.map +1 -0
  3040. package/dist/modules/checkout/tests/unit/grandTotal.test.d.ts +1 -0
  3041. package/dist/modules/checkout/tests/unit/grandTotal.test.js +77 -0
  3042. package/dist/modules/checkout/tests/unit/grandTotal.test.js.map +1 -0
  3043. package/dist/modules/checkout/tests/unit/lineTotal.test.d.ts +1 -0
  3044. package/dist/modules/checkout/tests/unit/lineTotal.test.js +86 -0
  3045. package/dist/modules/checkout/tests/unit/lineTotal.test.js.map +1 -0
  3046. package/dist/modules/checkout/tests/unit/lineTotalWithDiscount.test.d.ts +1 -0
  3047. package/dist/modules/checkout/tests/unit/lineTotalWithDiscount.test.js +98 -0
  3048. package/dist/modules/checkout/tests/unit/lineTotalWithDiscount.test.js.map +1 -0
  3049. package/dist/modules/checkout/tests/unit/productPrice.test.d.ts +1 -0
  3050. package/dist/modules/checkout/tests/unit/productPrice.test.js +66 -0
  3051. package/dist/modules/checkout/tests/unit/productPrice.test.js.map +1 -0
  3052. package/dist/modules/checkout/tests/unit/removeItemSideEffect.test.d.ts +1 -0
  3053. package/dist/modules/checkout/tests/unit/removeItemSideEffect.test.js +66 -0
  3054. package/dist/modules/checkout/tests/unit/removeItemSideEffect.test.js.map +1 -0
  3055. package/dist/modules/checkout/tests/unit/subTotal.test.d.ts +1 -0
  3056. package/dist/modules/checkout/tests/unit/subTotal.test.js +80 -0
  3057. package/dist/modules/checkout/tests/unit/subTotal.test.js.map +1 -0
  3058. package/dist/modules/checkout/tests/unit/subTotalWithDiscount.test.d.ts +1 -0
  3059. package/dist/modules/checkout/tests/unit/subTotalWithDiscount.test.js +107 -0
  3060. package/dist/modules/checkout/tests/unit/subTotalWithDiscount.test.js.map +1 -0
  3061. package/dist/modules/checkout/tests/unit/taxAmount.test.d.ts +1 -0
  3062. package/dist/modules/checkout/tests/unit/taxAmount.test.js +65 -0
  3063. package/dist/modules/checkout/tests/unit/taxAmount.test.js.map +1 -0
  3064. package/dist/modules/checkout/tests/unit/taxAmountRounding.test.d.ts +1 -0
  3065. package/dist/modules/checkout/tests/unit/taxAmountRounding.test.js +249 -0
  3066. package/dist/modules/checkout/tests/unit/taxAmountRounding.test.js.map +1 -0
  3067. package/dist/modules/checkout/tests/unit/updateCartItemQtySideEffect.test.d.ts +1 -0
  3068. package/dist/modules/checkout/tests/unit/updateCartItemQtySideEffect.test.js +70 -0
  3069. package/dist/modules/checkout/tests/unit/updateCartItemQtySideEffect.test.js.map +1 -0
  3070. package/dist/modules/cms/api/createCmsPage/[context]bodyParser[auth].d.ts +2 -0
  3071. package/dist/modules/cms/api/createCmsPage/[context]bodyParser[auth].js +5 -0
  3072. package/dist/modules/cms/api/createCmsPage/[context]bodyParser[auth].js.map +1 -0
  3073. package/dist/modules/cms/api/createCmsPage/createPage[finish].d.ts +2 -0
  3074. package/dist/modules/cms/api/createCmsPage/createPage[finish].js +9 -0
  3075. package/dist/modules/cms/api/createCmsPage/createPage[finish].js.map +1 -0
  3076. package/dist/modules/cms/api/createCmsPage/finish[apiResponse].d.ts +2 -0
  3077. package/dist/modules/cms/api/createCmsPage/finish[apiResponse].js +33 -0
  3078. package/dist/modules/cms/api/createCmsPage/finish[apiResponse].js.map +1 -0
  3079. package/dist/modules/cms/api/createCmsPage/payloadSchema.json +10 -0
  3080. package/dist/modules/cms/api/createCmsPage/route.json +5 -0
  3081. package/dist/modules/cms/api/createWidget/[context]bodyParser[auth].d.ts +2 -0
  3082. package/dist/modules/cms/api/createWidget/[context]bodyParser[auth].js +5 -0
  3083. package/dist/modules/cms/api/createWidget/[context]bodyParser[auth].js.map +1 -0
  3084. package/dist/modules/cms/api/createWidget/createWidget[finish].d.ts +2 -0
  3085. package/dist/modules/cms/api/createWidget/createWidget[finish].js +15 -0
  3086. package/dist/modules/cms/api/createWidget/createWidget[finish].js.map +1 -0
  3087. package/dist/modules/cms/api/createWidget/finish[apiResponse].d.ts +2 -0
  3088. package/dist/modules/cms/api/createWidget/finish[apiResponse].js +27 -0
  3089. package/dist/modules/cms/api/createWidget/finish[apiResponse].js.map +1 -0
  3090. package/dist/modules/cms/api/createWidget/payloadSchema.json +18 -0
  3091. package/dist/modules/cms/api/createWidget/route.json +5 -0
  3092. package/dist/modules/cms/api/deleteCmsPage/deleteCmsPage.d.ts +2 -0
  3093. package/dist/modules/cms/api/deleteCmsPage/deleteCmsPage.js +24 -0
  3094. package/dist/modules/cms/api/deleteCmsPage/deleteCmsPage.js.map +1 -0
  3095. package/dist/modules/cms/api/deleteCmsPage/route.json +5 -0
  3096. package/dist/modules/cms/api/deleteWidget/deleteWidget.d.ts +2 -0
  3097. package/dist/modules/cms/api/deleteWidget/deleteWidget.js +24 -0
  3098. package/dist/modules/cms/api/deleteWidget/deleteWidget.js.map +1 -0
  3099. package/dist/modules/cms/api/deleteWidget/route.json +5 -0
  3100. package/dist/modules/cms/api/fileBrowser/[context]validatePath[auth].d.ts +2 -0
  3101. package/dist/modules/cms/api/fileBrowser/[context]validatePath[auth].js +19 -0
  3102. package/dist/modules/cms/api/fileBrowser/[context]validatePath[auth].js.map +1 -0
  3103. package/dist/modules/cms/api/fileBrowser/browFiles.d.ts +2 -0
  3104. package/dist/modules/cms/api/fileBrowser/browFiles.js +11 -0
  3105. package/dist/modules/cms/api/fileBrowser/browFiles.js.map +1 -0
  3106. package/dist/modules/cms/api/fileBrowser/route.json +5 -0
  3107. package/dist/modules/cms/api/fileDelete/[context]validatePath[auth].d.ts +2 -0
  3108. package/dist/modules/cms/api/fileDelete/[context]validatePath[auth].js +19 -0
  3109. package/dist/modules/cms/api/fileDelete/[context]validatePath[auth].js.map +1 -0
  3110. package/dist/modules/cms/api/fileDelete/deleteFile.d.ts +2 -0
  3111. package/dist/modules/cms/api/fileDelete/deleteFile.js +12 -0
  3112. package/dist/modules/cms/api/fileDelete/deleteFile.js.map +1 -0
  3113. package/dist/modules/cms/api/fileDelete/route.json +5 -0
  3114. package/dist/modules/cms/api/fileUpload/[context]multerFile[auth].d.ts +2 -0
  3115. package/dist/modules/cms/api/fileUpload/[context]multerFile[auth].js +18 -0
  3116. package/dist/modules/cms/api/fileUpload/[context]multerFile[auth].js.map +1 -0
  3117. package/dist/modules/cms/api/fileUpload/[context]validatePath[multerFile].d.ts +2 -0
  3118. package/dist/modules/cms/api/fileUpload/[context]validatePath[multerFile].js +19 -0
  3119. package/dist/modules/cms/api/fileUpload/[context]validatePath[multerFile].js.map +1 -0
  3120. package/dist/modules/cms/api/fileUpload/[multerFile]upload.d.ts +2 -0
  3121. package/dist/modules/cms/api/fileUpload/[multerFile]upload.js +21 -0
  3122. package/dist/modules/cms/api/fileUpload/[multerFile]upload.js.map +1 -0
  3123. package/dist/modules/cms/api/fileUpload/route.json +5 -0
  3124. package/dist/modules/cms/api/folderCreate/[context]bodyParser[auth].d.ts +2 -0
  3125. package/dist/modules/cms/api/folderCreate/[context]bodyParser[auth].js +5 -0
  3126. package/dist/modules/cms/api/folderCreate/[context]bodyParser[auth].js.map +1 -0
  3127. package/dist/modules/cms/api/folderCreate/[context]validatePath[auth].d.ts +2 -0
  3128. package/dist/modules/cms/api/folderCreate/[context]validatePath[auth].js +19 -0
  3129. package/dist/modules/cms/api/folderCreate/[context]validatePath[auth].js.map +1 -0
  3130. package/dist/modules/cms/api/folderCreate/createFolder.d.ts +2 -0
  3131. package/dist/modules/cms/api/folderCreate/createFolder.js +14 -0
  3132. package/dist/modules/cms/api/folderCreate/createFolder.js.map +1 -0
  3133. package/dist/modules/cms/api/folderCreate/payloadSchema.json +10 -0
  3134. package/dist/modules/cms/api/folderCreate/route.json +5 -0
  3135. package/dist/modules/cms/api/imageUpload/[context]multerFile[auth].d.ts +2 -0
  3136. package/dist/modules/cms/api/imageUpload/[context]multerFile[auth].js +3 -0
  3137. package/dist/modules/cms/api/imageUpload/[context]multerFile[auth].js.map +1 -0
  3138. package/dist/modules/cms/api/imageUpload/[context]validatePath[multerFile].d.ts +2 -0
  3139. package/dist/modules/cms/api/imageUpload/[context]validatePath[multerFile].js +3 -0
  3140. package/dist/modules/cms/api/imageUpload/[context]validatePath[multerFile].js.map +1 -0
  3141. package/dist/modules/cms/api/imageUpload/[multerFile]upload.d.ts +2 -0
  3142. package/dist/modules/cms/api/imageUpload/[multerFile]upload.js +3 -0
  3143. package/dist/modules/cms/api/imageUpload/[multerFile]upload.js.map +1 -0
  3144. package/dist/modules/cms/api/imageUpload/[multerFile]verifyImages[upload].d.ts +2 -0
  3145. package/dist/modules/cms/api/imageUpload/[multerFile]verifyImages[upload].js +22 -0
  3146. package/dist/modules/cms/api/imageUpload/[multerFile]verifyImages[upload].js.map +1 -0
  3147. package/dist/modules/cms/api/imageUpload/route.json +5 -0
  3148. package/dist/modules/cms/api/updateCmsPage/[context]bodyParser[auth].d.ts +2 -0
  3149. package/dist/modules/cms/api/updateCmsPage/[context]bodyParser[auth].js +5 -0
  3150. package/dist/modules/cms/api/updateCmsPage/[context]bodyParser[auth].js.map +1 -0
  3151. package/dist/modules/cms/api/updateCmsPage/finish[apiResponse].d.ts +2 -0
  3152. package/dist/modules/cms/api/updateCmsPage/finish[apiResponse].js +33 -0
  3153. package/dist/modules/cms/api/updateCmsPage/finish[apiResponse].js.map +1 -0
  3154. package/dist/modules/cms/api/updateCmsPage/payloadSchema.json +10 -0
  3155. package/dist/modules/cms/api/updateCmsPage/route.json +5 -0
  3156. package/dist/modules/cms/api/updateCmsPage/updatePage[finish].d.ts +2 -0
  3157. package/dist/modules/cms/api/updateCmsPage/updatePage[finish].js +9 -0
  3158. package/dist/modules/cms/api/updateCmsPage/updatePage[finish].js.map +1 -0
  3159. package/dist/modules/cms/api/updateWidget/[context]bodyParser[auth].d.ts +2 -0
  3160. package/dist/modules/cms/api/updateWidget/[context]bodyParser[auth].js +5 -0
  3161. package/dist/modules/cms/api/updateWidget/[context]bodyParser[auth].js.map +1 -0
  3162. package/dist/modules/cms/api/updateWidget/finish[apiResponse].d.ts +2 -0
  3163. package/dist/modules/cms/api/updateWidget/finish[apiResponse].js +27 -0
  3164. package/dist/modules/cms/api/updateWidget/finish[apiResponse].js.map +1 -0
  3165. package/dist/modules/cms/api/updateWidget/payloadSchema.json +18 -0
  3166. package/dist/modules/cms/api/updateWidget/route.json +5 -0
  3167. package/dist/modules/cms/api/updateWidget/updateWidget[finish].d.ts +2 -0
  3168. package/dist/modules/cms/api/updateWidget/updateWidget[finish].js +15 -0
  3169. package/dist/modules/cms/api/updateWidget/updateWidget[finish].js.map +1 -0
  3170. package/dist/modules/cms/bootstrap.d.ts +2 -0
  3171. package/dist/modules/cms/bootstrap.js +194 -0
  3172. package/dist/modules/cms/bootstrap.js.map +1 -0
  3173. package/dist/modules/cms/graphql/types/CmsPage/CmsPage.graphql +33 -0
  3174. package/dist/modules/cms/graphql/types/CmsPage/CmsPage.resolvers.d.ts +29 -0
  3175. package/dist/modules/cms/graphql/types/CmsPage/CmsPage.resolvers.js +62 -0
  3176. package/dist/modules/cms/graphql/types/CmsPage/CmsPage.resolvers.js.map +1 -0
  3177. package/dist/modules/cms/graphql/types/Menu/Menu.graphql +19 -0
  3178. package/dist/modules/cms/graphql/types/Menu/Menu.resolvers.d.ts +13 -0
  3179. package/dist/modules/cms/graphql/types/Menu/Menu.resolvers.js +31 -0
  3180. package/dist/modules/cms/graphql/types/Menu/Menu.resolvers.js.map +1 -0
  3181. package/dist/modules/cms/graphql/types/PageInfo/PageInfo.graphql +21 -0
  3182. package/dist/modules/cms/graphql/types/PageInfo/PageInfo.resolvers.d.ts +17 -0
  3183. package/dist/modules/cms/graphql/types/PageInfo/PageInfo.resolvers.js +83 -0
  3184. package/dist/modules/cms/graphql/types/PageInfo/PageInfo.resolvers.js.map +1 -0
  3185. package/dist/modules/cms/graphql/types/ThemeConfig/ThemeConfig.graphql +88 -0
  3186. package/dist/modules/cms/graphql/types/ThemeConfig/ThemeConfig.resolvers.d.ts +6 -0
  3187. package/dist/modules/cms/graphql/types/ThemeConfig/ThemeConfig.resolvers.js +7 -0
  3188. package/dist/modules/cms/graphql/types/ThemeConfig/ThemeConfig.resolvers.js.map +1 -0
  3189. package/dist/modules/cms/graphql/types/Widget/Widget.graphql +91 -0
  3190. package/dist/modules/cms/graphql/types/Widget/Widget.resolvers.d.ts +63 -0
  3191. package/dist/modules/cms/graphql/types/Widget/Widget.resolvers.js +129 -0
  3192. package/dist/modules/cms/graphql/types/Widget/Widget.resolvers.js.map +1 -0
  3193. package/dist/modules/cms/migration/Version-1.0.0.d.ts +2 -0
  3194. package/dist/modules/cms/migration/Version-1.0.0.js +27 -0
  3195. package/dist/modules/cms/migration/Version-1.0.0.js.map +1 -0
  3196. package/dist/modules/cms/migration/Version-1.1.0.d.ts +2 -0
  3197. package/dist/modules/cms/migration/Version-1.1.0.js +18 -0
  3198. package/dist/modules/cms/migration/Version-1.1.0.js.map +1 -0
  3199. package/dist/modules/cms/migration/Version-1.1.1.d.ts +2 -0
  3200. package/dist/modules/cms/migration/Version-1.1.1.js +99 -0
  3201. package/dist/modules/cms/migration/Version-1.1.1.js.map +1 -0
  3202. package/dist/modules/cms/pages/admin/adminNotFound/Meta.d.ts +6 -0
  3203. package/dist/modules/cms/pages/admin/adminNotFound/Meta.js +13 -0
  3204. package/dist/modules/cms/pages/admin/adminNotFound/Meta.js.map +1 -0
  3205. package/dist/modules/cms/pages/admin/adminNotFound/NotFound.d.ts +15 -0
  3206. package/dist/modules/cms/pages/admin/adminNotFound/NotFound.js +47 -0
  3207. package/dist/modules/cms/pages/admin/adminNotFound/NotFound.js.map +1 -0
  3208. package/dist/modules/cms/pages/admin/adminNotFound/route.json +4 -0
  3209. package/dist/modules/cms/pages/admin/adminStaticAsset/route.json +4 -0
  3210. package/dist/modules/cms/pages/admin/adminStaticAsset/staticAssets.d.ts +2 -0
  3211. package/dist/modules/cms/pages/admin/adminStaticAsset/staticAssets.js +5 -0
  3212. package/dist/modules/cms/pages/admin/adminStaticAsset/staticAssets.js.map +1 -0
  3213. package/dist/modules/cms/pages/admin/all/CmsMenuGroup.d.ts +17 -0
  3214. package/dist/modules/cms/pages/admin/all/CmsMenuGroup.js +34 -0
  3215. package/dist/modules/cms/pages/admin/all/CmsMenuGroup.js.map +1 -0
  3216. package/dist/modules/cms/pages/admin/all/CopyRight.d.ts +23 -0
  3217. package/dist/modules/cms/pages/admin/all/CopyRight.js +28 -0
  3218. package/dist/modules/cms/pages/admin/all/CopyRight.js.map +1 -0
  3219. package/dist/modules/cms/pages/admin/all/Layout.d.ts +6 -0
  3220. package/dist/modules/cms/pages/admin/all/Layout.js +22 -0
  3221. package/dist/modules/cms/pages/admin/all/Layout.js.map +1 -0
  3222. package/dist/modules/cms/pages/admin/all/Layout.scss +91 -0
  3223. package/dist/modules/cms/pages/admin/all/Logo.d.ts +35 -0
  3224. package/dist/modules/cms/pages/admin/all/Logo.js +57 -0
  3225. package/dist/modules/cms/pages/admin/all/Logo.js.map +1 -0
  3226. package/dist/modules/cms/pages/admin/all/Logo.scss +12 -0
  3227. package/dist/modules/cms/pages/admin/all/Meta.d.ts +18 -0
  3228. package/dist/modules/cms/pages/admin/all/Meta.js +28 -0
  3229. package/dist/modules/cms/pages/admin/all/Meta.js.map +1 -0
  3230. package/dist/modules/cms/pages/admin/all/Navigation.d.ts +6 -0
  3231. package/dist/modules/cms/pages/admin/all/Navigation.js +14 -0
  3232. package/dist/modules/cms/pages/admin/all/Navigation.js.map +1 -0
  3233. package/dist/modules/cms/pages/admin/all/Navigation.scss +84 -0
  3234. package/dist/modules/cms/pages/admin/all/Notification.d.ts +6 -0
  3235. package/dist/modules/cms/pages/admin/all/Notification.js +36 -0
  3236. package/dist/modules/cms/pages/admin/all/Notification.js.map +1 -0
  3237. package/dist/modules/cms/pages/admin/all/Notification.scss +531 -0
  3238. package/dist/modules/cms/pages/admin/all/QuickLinks.d.ts +15 -0
  3239. package/dist/modules/cms/pages/admin/all/QuickLinks.js +26 -0
  3240. package/dist/modules/cms/pages/admin/all/QuickLinks.js.map +1 -0
  3241. package/dist/modules/cms/pages/admin/all/SearchBox.d.ts +18 -0
  3242. package/dist/modules/cms/pages/admin/all/SearchBox.js +139 -0
  3243. package/dist/modules/cms/pages/admin/all/SearchBox.js.map +1 -0
  3244. package/dist/modules/cms/pages/admin/all/SearchBox.scss +65 -0
  3245. package/dist/modules/cms/pages/admin/all/Version.d.ts +15 -0
  3246. package/dist/modules/cms/pages/admin/all/Version.js +21 -0
  3247. package/dist/modules/cms/pages/admin/all/Version.js.map +1 -0
  3248. package/dist/modules/cms/pages/admin/all/search/NoResult.d.ts +17 -0
  3249. package/dist/modules/cms/pages/admin/all/search/NoResult.js +26 -0
  3250. package/dist/modules/cms/pages/admin/all/search/NoResult.js.map +1 -0
  3251. package/dist/modules/cms/pages/admin/all/search/Results.d.ts +17 -0
  3252. package/dist/modules/cms/pages/admin/all/search/Results.js +55 -0
  3253. package/dist/modules/cms/pages/admin/all/search/Results.js.map +1 -0
  3254. package/dist/modules/cms/pages/admin/all/tailwind.scss +3 -0
  3255. package/dist/modules/cms/pages/admin/cmsPageEdit/PageEditForm.d.ts +15 -0
  3256. package/dist/modules/cms/pages/admin/cmsPageEdit/PageEditForm.js +34 -0
  3257. package/dist/modules/cms/pages/admin/cmsPageEdit/PageEditForm.js.map +1 -0
  3258. package/dist/modules/cms/pages/admin/cmsPageEdit/index.d.ts +2 -0
  3259. package/dist/modules/cms/pages/admin/cmsPageEdit/index.js +31 -0
  3260. package/dist/modules/cms/pages/admin/cmsPageEdit/index.js.map +1 -0
  3261. package/dist/modules/cms/pages/admin/cmsPageEdit/route.json +4 -0
  3262. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/FormContent.d.ts +15 -0
  3263. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/FormContent.js +37 -0
  3264. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/FormContent.js.map +1 -0
  3265. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/FormContent.scss +7 -0
  3266. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/General.d.ts +31 -0
  3267. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/General.js +97 -0
  3268. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/General.js.map +1 -0
  3269. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/PageHeading.d.ts +21 -0
  3270. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/PageHeading.js +28 -0
  3271. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/PageHeading.js.map +1 -0
  3272. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/Seo.d.ts +19 -0
  3273. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/Seo.js +87 -0
  3274. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/Seo.js.map +1 -0
  3275. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/Status.d.ts +19 -0
  3276. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/Status.js +28 -0
  3277. package/dist/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/Status.js.map +1 -0
  3278. package/dist/modules/cms/pages/admin/cmsPageGrid/Grid.d.ts +20 -0
  3279. package/dist/modules/cms/pages/admin/cmsPageGrid/Grid.js +276 -0
  3280. package/dist/modules/cms/pages/admin/cmsPageGrid/Grid.js.map +1 -0
  3281. package/dist/modules/cms/pages/admin/cmsPageGrid/Heading.d.ts +6 -0
  3282. package/dist/modules/cms/pages/admin/cmsPageGrid/Heading.js +10 -0
  3283. package/dist/modules/cms/pages/admin/cmsPageGrid/Heading.js.map +1 -0
  3284. package/dist/modules/cms/pages/admin/cmsPageGrid/NewPageButton.d.ts +15 -0
  3285. package/dist/modules/cms/pages/admin/cmsPageGrid/NewPageButton.js +19 -0
  3286. package/dist/modules/cms/pages/admin/cmsPageGrid/NewPageButton.js.map +1 -0
  3287. package/dist/modules/cms/pages/admin/cmsPageGrid/index.d.ts +2 -0
  3288. package/dist/modules/cms/pages/admin/cmsPageGrid/index.js +10 -0
  3289. package/dist/modules/cms/pages/admin/cmsPageGrid/index.js.map +1 -0
  3290. package/dist/modules/cms/pages/admin/cmsPageGrid/route.json +4 -0
  3291. package/dist/modules/cms/pages/admin/cmsPageNew/PageNewForm.d.ts +15 -0
  3292. package/dist/modules/cms/pages/admin/cmsPageNew/PageNewForm.js +40 -0
  3293. package/dist/modules/cms/pages/admin/cmsPageNew/PageNewForm.js.map +1 -0
  3294. package/dist/modules/cms/pages/admin/cmsPageNew/index.d.ts +2 -0
  3295. package/dist/modules/cms/pages/admin/cmsPageNew/index.js +8 -0
  3296. package/dist/modules/cms/pages/admin/cmsPageNew/index.js.map +1 -0
  3297. package/dist/modules/cms/pages/admin/cmsPageNew/route.json +4 -0
  3298. package/dist/modules/cms/pages/admin/dashboard/Layout.d.ts +6 -0
  3299. package/dist/modules/cms/pages/admin/dashboard/Layout.js +15 -0
  3300. package/dist/modules/cms/pages/admin/dashboard/Layout.js.map +1 -0
  3301. package/dist/modules/cms/pages/admin/dashboard/Layout.scss +7 -0
  3302. package/dist/modules/cms/pages/admin/dashboard/PageHeading.d.ts +6 -0
  3303. package/dist/modules/cms/pages/admin/dashboard/PageHeading.js +10 -0
  3304. package/dist/modules/cms/pages/admin/dashboard/PageHeading.js.map +1 -0
  3305. package/dist/modules/cms/pages/admin/dashboard/index.d.ts +2 -0
  3306. package/dist/modules/cms/pages/admin/dashboard/index.js +8 -0
  3307. package/dist/modules/cms/pages/admin/dashboard/index.js.map +1 -0
  3308. package/dist/modules/cms/pages/admin/dashboard/route.json +4 -0
  3309. package/dist/modules/cms/pages/admin/widgetEdit/WidgetForm.d.ts +15 -0
  3310. package/dist/modules/cms/pages/admin/widgetEdit/WidgetForm.js +34 -0
  3311. package/dist/modules/cms/pages/admin/widgetEdit/WidgetForm.js.map +1 -0
  3312. package/dist/modules/cms/pages/admin/widgetEdit/index.d.ts +2 -0
  3313. package/dist/modules/cms/pages/admin/widgetEdit/index.js +32 -0
  3314. package/dist/modules/cms/pages/admin/widgetEdit/index.js.map +1 -0
  3315. package/dist/modules/cms/pages/admin/widgetEdit/route.json +4 -0
  3316. package/dist/modules/cms/pages/admin/widgetEdit+widgetNew/FormContent.d.ts +17 -0
  3317. package/dist/modules/cms/pages/admin/widgetEdit+widgetNew/FormContent.js +48 -0
  3318. package/dist/modules/cms/pages/admin/widgetEdit+widgetNew/FormContent.js.map +1 -0
  3319. package/dist/modules/cms/pages/admin/widgetEdit+widgetNew/FormContent.scss +7 -0
  3320. package/dist/modules/cms/pages/admin/widgetEdit+widgetNew/General.d.ts +21 -0
  3321. package/dist/modules/cms/pages/admin/widgetEdit+widgetNew/General.js +116 -0
  3322. package/dist/modules/cms/pages/admin/widgetEdit+widgetNew/General.js.map +1 -0
  3323. package/dist/modules/cms/pages/admin/widgetEdit+widgetNew/PageHeading.d.ts +21 -0
  3324. package/dist/modules/cms/pages/admin/widgetEdit+widgetNew/PageHeading.js +28 -0
  3325. package/dist/modules/cms/pages/admin/widgetEdit+widgetNew/PageHeading.js.map +1 -0
  3326. package/dist/modules/cms/pages/admin/widgetEdit+widgetNew/Setting.d.ts +22 -0
  3327. package/dist/modules/cms/pages/admin/widgetEdit+widgetNew/Setting.js +46 -0
  3328. package/dist/modules/cms/pages/admin/widgetEdit+widgetNew/Setting.js.map +1 -0
  3329. package/dist/modules/cms/pages/admin/widgetGrid/Grid.d.ts +22 -0
  3330. package/dist/modules/cms/pages/admin/widgetGrid/Grid.js +301 -0
  3331. package/dist/modules/cms/pages/admin/widgetGrid/Grid.js.map +1 -0
  3332. package/dist/modules/cms/pages/admin/widgetGrid/Heading.d.ts +6 -0
  3333. package/dist/modules/cms/pages/admin/widgetGrid/Heading.js +10 -0
  3334. package/dist/modules/cms/pages/admin/widgetGrid/Heading.js.map +1 -0
  3335. package/dist/modules/cms/pages/admin/widgetGrid/NewWidgetButton.d.ts +15 -0
  3336. package/dist/modules/cms/pages/admin/widgetGrid/NewWidgetButton.js +42 -0
  3337. package/dist/modules/cms/pages/admin/widgetGrid/NewWidgetButton.js.map +1 -0
  3338. package/dist/modules/cms/pages/admin/widgetGrid/index.d.ts +2 -0
  3339. package/dist/modules/cms/pages/admin/widgetGrid/index.js +10 -0
  3340. package/dist/modules/cms/pages/admin/widgetGrid/index.js.map +1 -0
  3341. package/dist/modules/cms/pages/admin/widgetGrid/route.json +4 -0
  3342. package/dist/modules/cms/pages/admin/widgetNew/WidgetNewForm.d.ts +15 -0
  3343. package/dist/modules/cms/pages/admin/widgetNew/WidgetNewForm.js +40 -0
  3344. package/dist/modules/cms/pages/admin/widgetNew/WidgetNewForm.js.map +1 -0
  3345. package/dist/modules/cms/pages/admin/widgetNew/index.d.ts +2 -0
  3346. package/dist/modules/cms/pages/admin/widgetNew/index.js +8 -0
  3347. package/dist/modules/cms/pages/admin/widgetNew/index.js.map +1 -0
  3348. package/dist/modules/cms/pages/admin/widgetNew/route.json +4 -0
  3349. package/dist/modules/cms/pages/admin/widgetNew/typeValidate.d.ts +2 -0
  3350. package/dist/modules/cms/pages/admin/widgetNew/typeValidate.js +16 -0
  3351. package/dist/modules/cms/pages/admin/widgetNew/typeValidate.js.map +1 -0
  3352. package/dist/modules/cms/pages/frontStore/all/Breadcrumb.d.ts +17 -0
  3353. package/dist/modules/cms/pages/frontStore/all/Breadcrumb.js +31 -0
  3354. package/dist/modules/cms/pages/frontStore/all/Breadcrumb.js.map +1 -0
  3355. package/dist/modules/cms/pages/frontStore/all/Footer.d.ts +23 -0
  3356. package/dist/modules/cms/pages/frontStore/all/Footer.js +54 -0
  3357. package/dist/modules/cms/pages/frontStore/all/Footer.js.map +1 -0
  3358. package/dist/modules/cms/pages/frontStore/all/HeadTags.d.ts +38 -0
  3359. package/dist/modules/cms/pages/frontStore/all/HeadTags.js +137 -0
  3360. package/dist/modules/cms/pages/frontStore/all/HeadTags.js.map +1 -0
  3361. package/dist/modules/cms/pages/frontStore/all/Layout.d.ts +6 -0
  3362. package/dist/modules/cms/pages/frontStore/all/Layout.js +29 -0
  3363. package/dist/modules/cms/pages/frontStore/all/Layout.js.map +1 -0
  3364. package/dist/modules/cms/pages/frontStore/all/Layout.scss +261 -0
  3365. package/dist/modules/cms/pages/frontStore/all/Logo.d.ts +33 -0
  3366. package/dist/modules/cms/pages/frontStore/all/Logo.js +52 -0
  3367. package/dist/modules/cms/pages/frontStore/all/Logo.js.map +1 -0
  3368. package/dist/modules/cms/pages/frontStore/all/Logo.scss +8 -0
  3369. package/dist/modules/cms/pages/frontStore/all/Notification.d.ts +6 -0
  3370. package/dist/modules/cms/pages/frontStore/all/Notification.js +36 -0
  3371. package/dist/modules/cms/pages/frontStore/all/Notification.js.map +1 -0
  3372. package/dist/modules/cms/pages/frontStore/all/Notification.scss +532 -0
  3373. package/dist/modules/cms/pages/frontStore/all/tailwind.scss +3 -0
  3374. package/dist/modules/cms/pages/frontStore/cmsPageView/Layout.d.ts +7 -0
  3375. package/dist/modules/cms/pages/frontStore/cmsPageView/Layout.js +43 -0
  3376. package/dist/modules/cms/pages/frontStore/cmsPageView/Layout.js.map +1 -0
  3377. package/dist/modules/cms/pages/frontStore/cmsPageView/Layout.scss +248 -0
  3378. package/dist/modules/cms/pages/frontStore/cmsPageView/View.d.ts +15 -0
  3379. package/dist/modules/cms/pages/frontStore/cmsPageView/View.js +28 -0
  3380. package/dist/modules/cms/pages/frontStore/cmsPageView/View.js.map +1 -0
  3381. package/dist/modules/cms/pages/frontStore/cmsPageView/index.d.ts +2 -0
  3382. package/dist/modules/cms/pages/frontStore/cmsPageView/index.js +29 -0
  3383. package/dist/modules/cms/pages/frontStore/cmsPageView/index.js.map +1 -0
  3384. package/dist/modules/cms/pages/frontStore/cmsPageView/route.json +5 -0
  3385. package/dist/modules/cms/pages/frontStore/homepage/meta.d.ts +2 -0
  3386. package/dist/modules/cms/pages/frontStore/homepage/meta.js +12 -0
  3387. package/dist/modules/cms/pages/frontStore/homepage/meta.js.map +1 -0
  3388. package/dist/modules/cms/pages/frontStore/homepage/route.json +5 -0
  3389. package/dist/modules/cms/pages/frontStore/notFound/Meta.d.ts +6 -0
  3390. package/dist/modules/cms/pages/frontStore/notFound/Meta.js +13 -0
  3391. package/dist/modules/cms/pages/frontStore/notFound/Meta.js.map +1 -0
  3392. package/dist/modules/cms/pages/frontStore/notFound/NotFound.d.ts +15 -0
  3393. package/dist/modules/cms/pages/frontStore/notFound/NotFound.js +48 -0
  3394. package/dist/modules/cms/pages/frontStore/notFound/NotFound.js.map +1 -0
  3395. package/dist/modules/cms/pages/frontStore/notFound/route.json +5 -0
  3396. package/dist/modules/cms/pages/frontStore/staticAsset/[context]staticAssets[auth].d.ts +2 -0
  3397. package/dist/modules/cms/pages/frontStore/staticAsset/[context]staticAssets[auth].js +5 -0
  3398. package/dist/modules/cms/pages/frontStore/staticAsset/[context]staticAssets[auth].js.map +1 -0
  3399. package/dist/modules/cms/pages/frontStore/staticAsset/route.json +4 -0
  3400. package/dist/modules/cms/services/CMSPageCollection.d.ts +9 -0
  3401. package/dist/modules/cms/services/CMSPageCollection.js +42 -0
  3402. package/dist/modules/cms/services/CMSPageCollection.js.map +1 -0
  3403. package/dist/modules/cms/services/CustomMemoryStorage.d.ts +9 -0
  3404. package/dist/modules/cms/services/CustomMemoryStorage.js +22 -0
  3405. package/dist/modules/cms/services/CustomMemoryStorage.js.map +1 -0
  3406. package/dist/modules/cms/services/WidgetCollection.d.ts +9 -0
  3407. package/dist/modules/cms/services/WidgetCollection.js +42 -0
  3408. package/dist/modules/cms/services/WidgetCollection.js.map +1 -0
  3409. package/dist/modules/cms/services/browFiles.d.ts +11 -0
  3410. package/dist/modules/cms/services/browFiles.js +48 -0
  3411. package/dist/modules/cms/services/browFiles.js.map +1 -0
  3412. package/dist/modules/cms/services/createFolder.d.ts +4 -0
  3413. package/dist/modules/cms/services/createFolder.js +35 -0
  3414. package/dist/modules/cms/services/createFolder.js.map +1 -0
  3415. package/dist/modules/cms/services/deleteFile.d.ts +4 -0
  3416. package/dist/modules/cms/services/deleteFile.js +36 -0
  3417. package/dist/modules/cms/services/deleteFile.js.map +1 -0
  3418. package/dist/modules/cms/services/generateFileName.d.ts +1 -0
  3419. package/dist/modules/cms/services/generateFileName.js +9 -0
  3420. package/dist/modules/cms/services/generateFileName.js.map +1 -0
  3421. package/dist/modules/cms/services/getCmsPagesBaseQuery.d.ts +1 -0
  3422. package/dist/modules/cms/services/getCmsPagesBaseQuery.js +9 -0
  3423. package/dist/modules/cms/services/getCmsPagesBaseQuery.js.map +1 -0
  3424. package/dist/modules/cms/services/getMulter.d.ts +2 -0
  3425. package/dist/modules/cms/services/getMulter.js +26 -0
  3426. package/dist/modules/cms/services/getMulter.js.map +1 -0
  3427. package/dist/modules/cms/services/getWidgetsBaseQuery.d.ts +1 -0
  3428. package/dist/modules/cms/services/getWidgetsBaseQuery.js +6 -0
  3429. package/dist/modules/cms/services/getWidgetsBaseQuery.js.map +1 -0
  3430. package/dist/modules/cms/services/index.d.ts +4 -0
  3431. package/dist/modules/cms/services/index.js +5 -0
  3432. package/dist/modules/cms/services/index.js.map +1 -0
  3433. package/dist/modules/cms/services/page/createPage.d.ts +2 -0
  3434. package/dist/modules/cms/services/page/createPage.js +67 -0
  3435. package/dist/modules/cms/services/page/createPage.js.map +1 -0
  3436. package/dist/modules/cms/services/page/deletePage.d.ts +2 -0
  3437. package/dist/modules/cms/services/page/deletePage.js +41 -0
  3438. package/dist/modules/cms/services/page/deletePage.js.map +1 -0
  3439. package/dist/modules/cms/services/page/pageDataSchema.json +33 -0
  3440. package/dist/modules/cms/services/page/updatePage.d.ts +2 -0
  3441. package/dist/modules/cms/services/page/updatePage.js +82 -0
  3442. package/dist/modules/cms/services/page/updatePage.js.map +1 -0
  3443. package/dist/modules/cms/services/registerDefaultPageCollectionFilters.d.ts +5 -0
  3444. package/dist/modules/cms/services/registerDefaultPageCollectionFilters.js +56 -0
  3445. package/dist/modules/cms/services/registerDefaultPageCollectionFilters.js.map +1 -0
  3446. package/dist/modules/cms/services/registerDefaultWidgetCollectionFilters.d.ts +5 -0
  3447. package/dist/modules/cms/services/registerDefaultWidgetCollectionFilters.js +59 -0
  3448. package/dist/modules/cms/services/registerDefaultWidgetCollectionFilters.js.map +1 -0
  3449. package/dist/modules/cms/services/tailwind.admin.config.d.ts +35 -0
  3450. package/dist/modules/cms/services/tailwind.admin.config.js +34 -0
  3451. package/dist/modules/cms/services/tailwind.admin.config.js.map +1 -0
  3452. package/dist/modules/cms/services/tailwind.frontStore.config.d.ts +36 -0
  3453. package/dist/modules/cms/services/tailwind.frontStore.config.js +35 -0
  3454. package/dist/modules/cms/services/tailwind.frontStore.config.js.map +1 -0
  3455. package/dist/modules/cms/services/tests/unit/validatePath.test.d.ts +1 -0
  3456. package/dist/modules/cms/services/tests/unit/validatePath.test.js +29 -0
  3457. package/dist/modules/cms/services/tests/unit/validatePath.test.js.map +1 -0
  3458. package/dist/modules/cms/services/uploadFile.d.ts +12 -0
  3459. package/dist/modules/cms/services/uploadFile.js +51 -0
  3460. package/dist/modules/cms/services/uploadFile.js.map +1 -0
  3461. package/dist/modules/cms/services/validatePath.d.ts +1 -0
  3462. package/dist/modules/cms/services/validatePath.js +14 -0
  3463. package/dist/modules/cms/services/validatePath.js.map +1 -0
  3464. package/dist/modules/cms/services/widget/createWidget.d.ts +2 -0
  3465. package/dist/modules/cms/services/widget/createWidget.js +54 -0
  3466. package/dist/modules/cms/services/widget/createWidget.js.map +1 -0
  3467. package/dist/modules/cms/services/widget/deleteWidget.d.ts +2 -0
  3468. package/dist/modules/cms/services/widget/deleteWidget.js +38 -0
  3469. package/dist/modules/cms/services/widget/deleteWidget.js.map +1 -0
  3470. package/dist/modules/cms/services/widget/loadWidgetInstances.d.ts +7 -0
  3471. package/dist/modules/cms/services/widget/loadWidgetInstances.js +46 -0
  3472. package/dist/modules/cms/services/widget/loadWidgetInstances.js.map +1 -0
  3473. package/dist/modules/cms/services/widget/updateWidget.d.ts +2 -0
  3474. package/dist/modules/cms/services/widget/updateWidget.js +63 -0
  3475. package/dist/modules/cms/services/widget/updateWidget.js.map +1 -0
  3476. package/dist/modules/cms/services/widget/widgetDataSchema.json +29 -0
  3477. package/dist/modules/cod/api/codCapturePayment/[bodyParser]capture.d.ts +2 -0
  3478. package/dist/modules/cod/api/codCapturePayment/[bodyParser]capture.js +50 -0
  3479. package/dist/modules/cod/api/codCapturePayment/[bodyParser]capture.js.map +1 -0
  3480. package/dist/modules/cod/api/codCapturePayment/[context]bodyParser[auth].d.ts +2 -0
  3481. package/dist/modules/cod/api/codCapturePayment/[context]bodyParser[auth].js +5 -0
  3482. package/dist/modules/cod/api/codCapturePayment/[context]bodyParser[auth].js.map +1 -0
  3483. package/dist/modules/cod/api/codCapturePayment/payloadSchema.json +10 -0
  3484. package/dist/modules/cod/api/codCapturePayment/route.json +5 -0
  3485. package/dist/modules/cod/api/createOrder/[placeOrder]addOrderPlacedEvent.d.ts +2 -0
  3486. package/dist/modules/cod/api/createOrder/[placeOrder]addOrderPlacedEvent.js +20 -0
  3487. package/dist/modules/cod/api/createOrder/[placeOrder]addOrderPlacedEvent.js.map +1 -0
  3488. package/dist/modules/cod/bootstrap.d.ts +2 -0
  3489. package/dist/modules/cod/bootstrap.js +29 -0
  3490. package/dist/modules/cod/bootstrap.js.map +1 -0
  3491. package/dist/modules/cod/graphql/types/CODSetting/CODSetting.graphql +4 -0
  3492. package/dist/modules/cod/graphql/types/CODSetting/CODSetting.resolvers.d.ts +7 -0
  3493. package/dist/modules/cod/graphql/types/CODSetting/CODSetting.resolvers.js +23 -0
  3494. package/dist/modules/cod/graphql/types/CODSetting/CODSetting.resolvers.js.map +1 -0
  3495. package/dist/modules/cod/pages/admin/orderEdit/CaptureButton.d.ts +21 -0
  3496. package/dist/modules/cod/pages/admin/orderEdit/CaptureButton.js +54 -0
  3497. package/dist/modules/cod/pages/admin/orderEdit/CaptureButton.js.map +1 -0
  3498. package/dist/modules/cod/pages/admin/paymentSetting/CODSetting.d.ts +18 -0
  3499. package/dist/modules/cod/pages/admin/paymentSetting/CODSetting.js +39 -0
  3500. package/dist/modules/cod/pages/admin/paymentSetting/CODSetting.js.map +1 -0
  3501. package/dist/modules/cod/pages/frontStore/checkout/CashOnDelivery.d.ts +20 -0
  3502. package/dist/modules/cod/pages/frontStore/checkout/CashOnDelivery.js +70 -0
  3503. package/dist/modules/cod/pages/frontStore/checkout/CashOnDelivery.js.map +1 -0
  3504. package/dist/modules/customer/api/createCustomer/[bodyParser]createCustomer.d.ts +2 -0
  3505. package/dist/modules/customer/api/createCustomer/[bodyParser]createCustomer.js +45 -0
  3506. package/dist/modules/customer/api/createCustomer/[bodyParser]createCustomer.js.map +1 -0
  3507. package/dist/modules/customer/api/createCustomer/[context]bodyParser[auth].d.ts +2 -0
  3508. package/dist/modules/customer/api/createCustomer/[context]bodyParser[auth].js +5 -0
  3509. package/dist/modules/customer/api/createCustomer/[context]bodyParser[auth].js.map +1 -0
  3510. package/dist/modules/customer/api/createCustomer/route.json +5 -0
  3511. package/dist/modules/customer/api/createCustomerAddress/[bodyParser]createCustomerAddress.d.ts +2 -0
  3512. package/dist/modules/customer/api/createCustomerAddress/[bodyParser]createCustomerAddress.js +49 -0
  3513. package/dist/modules/customer/api/createCustomerAddress/[bodyParser]createCustomerAddress.js.map +1 -0
  3514. package/dist/modules/customer/api/createCustomerAddress/[context]bodyParser[auth].d.ts +2 -0
  3515. package/dist/modules/customer/api/createCustomerAddress/[context]bodyParser[auth].js +5 -0
  3516. package/dist/modules/customer/api/createCustomerAddress/[context]bodyParser[auth].js.map +1 -0
  3517. package/dist/modules/customer/api/createCustomerAddress/route.json +5 -0
  3518. package/dist/modules/customer/api/deleteCustomer/deleteCustomer.d.ts +2 -0
  3519. package/dist/modules/customer/api/deleteCustomer/deleteCustomer.js +23 -0
  3520. package/dist/modules/customer/api/deleteCustomer/deleteCustomer.js.map +1 -0
  3521. package/dist/modules/customer/api/deleteCustomer/route.json +5 -0
  3522. package/dist/modules/customer/api/deleteCustomerAddress/deleteCustomerAddress.d.ts +2 -0
  3523. package/dist/modules/customer/api/deleteCustomerAddress/deleteCustomerAddress.js +52 -0
  3524. package/dist/modules/customer/api/deleteCustomerAddress/deleteCustomerAddress.js.map +1 -0
  3525. package/dist/modules/customer/api/deleteCustomerAddress/route.json +5 -0
  3526. package/dist/modules/customer/api/global/[context]getCurrentCustomer[auth].d.ts +2 -0
  3527. package/dist/modules/customer/api/global/[context]getCurrentCustomer[auth].js +58 -0
  3528. package/dist/modules/customer/api/global/[context]getCurrentCustomer[auth].js.map +1 -0
  3529. package/dist/modules/customer/api/resetPassword/[bodyParser]resetPassword.d.ts +2 -0
  3530. package/dist/modules/customer/api/resetPassword/[bodyParser]resetPassword.js +48 -0
  3531. package/dist/modules/customer/api/resetPassword/[bodyParser]resetPassword.js.map +1 -0
  3532. package/dist/modules/customer/api/resetPassword/[context]bodyParser[auth].d.ts +2 -0
  3533. package/dist/modules/customer/api/resetPassword/[context]bodyParser[auth].js +5 -0
  3534. package/dist/modules/customer/api/resetPassword/[context]bodyParser[auth].js.map +1 -0
  3535. package/dist/modules/customer/api/resetPassword/payloadSchema.json +11 -0
  3536. package/dist/modules/customer/api/resetPassword/route.json +5 -0
  3537. package/dist/modules/customer/api/updateCustomer/[context]bodyParser[auth].d.ts +2 -0
  3538. package/dist/modules/customer/api/updateCustomer/[context]bodyParser[auth].js +5 -0
  3539. package/dist/modules/customer/api/updateCustomer/[context]bodyParser[auth].js.map +1 -0
  3540. package/dist/modules/customer/api/updateCustomer/payloadSchema.json +16 -0
  3541. package/dist/modules/customer/api/updateCustomer/route.json +5 -0
  3542. package/dist/modules/customer/api/updateCustomer/updateCustomer.d.ts +2 -0
  3543. package/dist/modules/customer/api/updateCustomer/updateCustomer.js +72 -0
  3544. package/dist/modules/customer/api/updateCustomer/updateCustomer.js.map +1 -0
  3545. package/dist/modules/customer/api/updateCustomerAddress/[context]bodyParser[auth].d.ts +2 -0
  3546. package/dist/modules/customer/api/updateCustomerAddress/[context]bodyParser[auth].js +5 -0
  3547. package/dist/modules/customer/api/updateCustomerAddress/[context]bodyParser[auth].js.map +1 -0
  3548. package/dist/modules/customer/api/updateCustomerAddress/payloadSchema.json +16 -0
  3549. package/dist/modules/customer/api/updateCustomerAddress/route.json +5 -0
  3550. package/dist/modules/customer/api/updateCustomerAddress/updateCustomerAddress.d.ts +2 -0
  3551. package/dist/modules/customer/api/updateCustomerAddress/updateCustomerAddress.js +74 -0
  3552. package/dist/modules/customer/api/updateCustomerAddress/updateCustomerAddress.js.map +1 -0
  3553. package/dist/modules/customer/api/updatePassword/[bodyParser]updatePassword.d.ts +2 -0
  3554. package/dist/modules/customer/api/updatePassword/[bodyParser]updatePassword.js +64 -0
  3555. package/dist/modules/customer/api/updatePassword/[bodyParser]updatePassword.js.map +1 -0
  3556. package/dist/modules/customer/api/updatePassword/[context]bodyParser[auth].d.ts +2 -0
  3557. package/dist/modules/customer/api/updatePassword/[context]bodyParser[auth].js +5 -0
  3558. package/dist/modules/customer/api/updatePassword/[context]bodyParser[auth].js.map +1 -0
  3559. package/dist/modules/customer/api/updatePassword/payloadSchema.json +13 -0
  3560. package/dist/modules/customer/api/updatePassword/route.json +5 -0
  3561. package/dist/modules/customer/bootstrap.d.ts +2 -0
  3562. package/dist/modules/customer/bootstrap.js +165 -0
  3563. package/dist/modules/customer/bootstrap.js.map +1 -0
  3564. package/dist/modules/customer/graphql/types/Customer/Customer.admin.graphql +20 -0
  3565. package/dist/modules/customer/graphql/types/Customer/Customer.admin.resolvers.d.ts +21 -0
  3566. package/dist/modules/customer/graphql/types/Customer/Customer.admin.resolvers.js +26 -0
  3567. package/dist/modules/customer/graphql/types/Customer/Customer.admin.resolvers.js.map +1 -0
  3568. package/dist/modules/customer/graphql/types/Customer/Customer.graphql +37 -0
  3569. package/dist/modules/customer/graphql/types/Customer/Customer.resolvers.d.ts +20 -0
  3570. package/dist/modules/customer/graphql/types/Customer/Customer.resolvers.js +38 -0
  3571. package/dist/modules/customer/graphql/types/Customer/Customer.resolvers.js.map +1 -0
  3572. package/dist/modules/customer/graphql/types/Customer/CustomerSetting.graphql +3 -0
  3573. package/dist/modules/customer/graphql/types/Customer/CustomerSetting.resolvers.d.ts +6 -0
  3574. package/dist/modules/customer/graphql/types/Customer/CustomerSetting.resolvers.js +7 -0
  3575. package/dist/modules/customer/graphql/types/Customer/CustomerSetting.resolvers.js.map +1 -0
  3576. package/dist/modules/customer/graphql/types/CustomerGroup/CustomerGroup.admin.graphql +20 -0
  3577. package/dist/modules/customer/graphql/types/CustomerGroup/CustomerGroup.admin.resolvers.d.ts +20 -0
  3578. package/dist/modules/customer/graphql/types/CustomerGroup/CustomerGroup.admin.resolvers.js +33 -0
  3579. package/dist/modules/customer/graphql/types/CustomerGroup/CustomerGroup.admin.resolvers.js.map +1 -0
  3580. package/dist/modules/customer/graphql/types/CustomerGroup/CustomerGroup.graphql +11 -0
  3581. package/dist/modules/customer/graphql/types/CustomerGroup/CustomerGroup.resolvers.d.ts +10 -0
  3582. package/dist/modules/customer/graphql/types/CustomerGroup/CustomerGroup.resolvers.js +14 -0
  3583. package/dist/modules/customer/graphql/types/CustomerGroup/CustomerGroup.resolvers.js.map +1 -0
  3584. package/dist/modules/customer/migration/Version-1.0.0.d.ts +2 -0
  3585. package/dist/modules/customer/migration/Version-1.0.0.js +81 -0
  3586. package/dist/modules/customer/migration/Version-1.0.0.js.map +1 -0
  3587. package/dist/modules/customer/migration/Version-1.0.1.d.ts +2 -0
  3588. package/dist/modules/customer/migration/Version-1.0.1.js +43 -0
  3589. package/dist/modules/customer/migration/Version-1.0.1.js.map +1 -0
  3590. package/dist/modules/customer/migration/Version-1.0.2.d.ts +2 -0
  3591. package/dist/modules/customer/migration/Version-1.0.2.js +12 -0
  3592. package/dist/modules/customer/migration/Version-1.0.2.js.map +1 -0
  3593. package/dist/modules/customer/migration/Version-1.0.3.d.ts +2 -0
  3594. package/dist/modules/customer/migration/Version-1.0.3.js +11 -0
  3595. package/dist/modules/customer/migration/Version-1.0.3.js.map +1 -0
  3596. package/dist/modules/customer/pages/admin/customerEdit/CustomerEditForm.d.ts +7 -0
  3597. package/dist/modules/customer/pages/admin/customerEdit/CustomerEditForm.js +19 -0
  3598. package/dist/modules/customer/pages/admin/customerEdit/CustomerEditForm.js.map +1 -0
  3599. package/dist/modules/customer/pages/admin/customerEdit/CustomerEditForm.scss +7 -0
  3600. package/dist/modules/customer/pages/admin/customerEdit/index.d.ts +2 -0
  3601. package/dist/modules/customer/pages/admin/customerEdit/index.js +28 -0
  3602. package/dist/modules/customer/pages/admin/customerEdit/index.js.map +1 -0
  3603. package/dist/modules/customer/pages/admin/customerEdit/route.json +4 -0
  3604. package/dist/modules/customer/pages/admin/customerEdit+customerNew/General.d.ts +15 -0
  3605. package/dist/modules/customer/pages/admin/customerEdit+customerNew/General.js +114 -0
  3606. package/dist/modules/customer/pages/admin/customerEdit+customerNew/General.js.map +1 -0
  3607. package/dist/modules/customer/pages/admin/customerEdit+customerNew/OrderHistory.d.ts +17 -0
  3608. package/dist/modules/customer/pages/admin/customerEdit+customerNew/OrderHistory.js +57 -0
  3609. package/dist/modules/customer/pages/admin/customerEdit+customerNew/OrderHistory.js.map +1 -0
  3610. package/dist/modules/customer/pages/admin/customerEdit+customerNew/PageHeading.d.ts +21 -0
  3611. package/dist/modules/customer/pages/admin/customerEdit+customerNew/PageHeading.js +28 -0
  3612. package/dist/modules/customer/pages/admin/customerEdit+customerNew/PageHeading.js.map +1 -0
  3613. package/dist/modules/customer/pages/admin/customerGrid/Grid.d.ts +20 -0
  3614. package/dist/modules/customer/pages/admin/customerGrid/Grid.js +305 -0
  3615. package/dist/modules/customer/pages/admin/customerGrid/Grid.js.map +1 -0
  3616. package/dist/modules/customer/pages/admin/customerGrid/Heading.d.ts +6 -0
  3617. package/dist/modules/customer/pages/admin/customerGrid/Heading.js +10 -0
  3618. package/dist/modules/customer/pages/admin/customerGrid/Heading.js.map +1 -0
  3619. package/dist/modules/customer/pages/admin/customerGrid/index.d.ts +2 -0
  3620. package/dist/modules/customer/pages/admin/customerGrid/index.js +10 -0
  3621. package/dist/modules/customer/pages/admin/customerGrid/index.js.map +1 -0
  3622. package/dist/modules/customer/pages/admin/customerGrid/route.json +4 -0
  3623. package/dist/modules/customer/pages/frontStore/account/AccountDetails.d.ts +15 -0
  3624. package/dist/modules/customer/pages/frontStore/account/AccountDetails.js +50 -0
  3625. package/dist/modules/customer/pages/frontStore/account/AccountDetails.js.map +1 -0
  3626. package/dist/modules/customer/pages/frontStore/account/Addresses.d.ts +22 -0
  3627. package/dist/modules/customer/pages/frontStore/account/Addresses.js +176 -0
  3628. package/dist/modules/customer/pages/frontStore/account/Addresses.js.map +1 -0
  3629. package/dist/modules/customer/pages/frontStore/account/Layout.d.ts +15 -0
  3630. package/dist/modules/customer/pages/frontStore/account/Layout.js +49 -0
  3631. package/dist/modules/customer/pages/frontStore/account/Layout.js.map +1 -0
  3632. package/dist/modules/customer/pages/frontStore/account/OrderHistory.d.ts +17 -0
  3633. package/dist/modules/customer/pages/frontStore/account/OrderHistory.js +87 -0
  3634. package/dist/modules/customer/pages/frontStore/account/OrderHistory.js.map +1 -0
  3635. package/dist/modules/customer/pages/frontStore/account/index.d.ts +2 -0
  3636. package/dist/modules/customer/pages/frontStore/account/index.js +18 -0
  3637. package/dist/modules/customer/pages/frontStore/account/index.js.map +1 -0
  3638. package/dist/modules/customer/pages/frontStore/account/route.json +5 -0
  3639. package/dist/modules/customer/pages/frontStore/accountEdit/EditForm.d.ts +15 -0
  3640. package/dist/modules/customer/pages/frontStore/accountEdit/EditForm.js +52 -0
  3641. package/dist/modules/customer/pages/frontStore/accountEdit/EditForm.js.map +1 -0
  3642. package/dist/modules/customer/pages/frontStore/accountEdit/Layout.d.ts +15 -0
  3643. package/dist/modules/customer/pages/frontStore/accountEdit/Layout.js +45 -0
  3644. package/dist/modules/customer/pages/frontStore/accountEdit/Layout.js.map +1 -0
  3645. package/dist/modules/customer/pages/frontStore/accountEdit/index.d.ts +2 -0
  3646. package/dist/modules/customer/pages/frontStore/accountEdit/index.js +18 -0
  3647. package/dist/modules/customer/pages/frontStore/accountEdit/index.js.map +1 -0
  3648. package/dist/modules/customer/pages/frontStore/accountEdit/route.json +5 -0
  3649. package/dist/modules/customer/pages/frontStore/all/UserIcon.d.ts +25 -0
  3650. package/dist/modules/customer/pages/frontStore/all/UserIcon.js +37 -0
  3651. package/dist/modules/customer/pages/frontStore/all/UserIcon.js.map +1 -0
  3652. package/dist/modules/customer/pages/frontStore/all/[context]auth.d.ts +2 -0
  3653. package/dist/modules/customer/pages/frontStore/all/[context]auth.js +37 -0
  3654. package/dist/modules/customer/pages/frontStore/all/[context]auth.js.map +1 -0
  3655. package/dist/modules/customer/pages/frontStore/checkout/CustomerInfoStep.d.ts +26 -0
  3656. package/dist/modules/customer/pages/frontStore/checkout/CustomerInfoStep.js +61 -0
  3657. package/dist/modules/customer/pages/frontStore/checkout/CustomerInfoStep.js.map +1 -0
  3658. package/dist/modules/customer/pages/frontStore/customerLoginJson/[bodyParser]login.d.ts +2 -0
  3659. package/dist/modules/customer/pages/frontStore/customerLoginJson/[bodyParser]login.js +39 -0
  3660. package/dist/modules/customer/pages/frontStore/customerLoginJson/[bodyParser]login.js.map +1 -0
  3661. package/dist/modules/customer/pages/frontStore/customerLoginJson/payloadSchema.json +13 -0
  3662. package/dist/modules/customer/pages/frontStore/customerLoginJson/route.json +4 -0
  3663. package/dist/modules/customer/pages/frontStore/customerLogoutJson/logout.d.ts +2 -0
  3664. package/dist/modules/customer/pages/frontStore/customerLogoutJson/logout.js +33 -0
  3665. package/dist/modules/customer/pages/frontStore/customerLogoutJson/logout.js.map +1 -0
  3666. package/dist/modules/customer/pages/frontStore/customerLogoutJson/route.json +4 -0
  3667. package/dist/modules/customer/pages/frontStore/login/LoginForm.d.ts +21 -0
  3668. package/dist/modules/customer/pages/frontStore/login/LoginForm.js +73 -0
  3669. package/dist/modules/customer/pages/frontStore/login/LoginForm.js.map +1 -0
  3670. package/dist/modules/customer/pages/frontStore/login/LoginForm.scss +37 -0
  3671. package/dist/modules/customer/pages/frontStore/login/index.d.ts +2 -0
  3672. package/dist/modules/customer/pages/frontStore/login/index.js +18 -0
  3673. package/dist/modules/customer/pages/frontStore/login/index.js.map +1 -0
  3674. package/dist/modules/customer/pages/frontStore/login/route.json +5 -0
  3675. package/dist/modules/customer/pages/frontStore/register/RegisterForm.d.ts +21 -0
  3676. package/dist/modules/customer/pages/frontStore/register/RegisterForm.js +100 -0
  3677. package/dist/modules/customer/pages/frontStore/register/RegisterForm.js.map +1 -0
  3678. package/dist/modules/customer/pages/frontStore/register/RegisterForm.scss +37 -0
  3679. package/dist/modules/customer/pages/frontStore/register/index.d.ts +2 -0
  3680. package/dist/modules/customer/pages/frontStore/register/index.js +20 -0
  3681. package/dist/modules/customer/pages/frontStore/register/index.js.map +1 -0
  3682. package/dist/modules/customer/pages/frontStore/register/route.json +5 -0
  3683. package/dist/modules/customer/pages/frontStore/resetPasswordPage/ResetPasswordForm.d.ts +15 -0
  3684. package/dist/modules/customer/pages/frontStore/resetPasswordPage/ResetPasswordForm.js +64 -0
  3685. package/dist/modules/customer/pages/frontStore/resetPasswordPage/ResetPasswordForm.js.map +1 -0
  3686. package/dist/modules/customer/pages/frontStore/resetPasswordPage/ResetPasswordForm.scss +37 -0
  3687. package/dist/modules/customer/pages/frontStore/resetPasswordPage/index.d.ts +2 -0
  3688. package/dist/modules/customer/pages/frontStore/resetPasswordPage/index.js +18 -0
  3689. package/dist/modules/customer/pages/frontStore/resetPasswordPage/index.js.map +1 -0
  3690. package/dist/modules/customer/pages/frontStore/resetPasswordPage/route.json +5 -0
  3691. package/dist/modules/customer/pages/frontStore/updatePasswordPage/UpdatePasswordForm.d.ts +15 -0
  3692. package/dist/modules/customer/pages/frontStore/updatePasswordPage/UpdatePasswordForm.js +71 -0
  3693. package/dist/modules/customer/pages/frontStore/updatePasswordPage/UpdatePasswordForm.js.map +1 -0
  3694. package/dist/modules/customer/pages/frontStore/updatePasswordPage/UpdatePasswordForm.scss +37 -0
  3695. package/dist/modules/customer/pages/frontStore/updatePasswordPage/index.d.ts +2 -0
  3696. package/dist/modules/customer/pages/frontStore/updatePasswordPage/index.js +18 -0
  3697. package/dist/modules/customer/pages/frontStore/updatePasswordPage/index.js.map +1 -0
  3698. package/dist/modules/customer/pages/frontStore/updatePasswordPage/route.json +5 -0
  3699. package/dist/modules/customer/services/CustomerCollection.d.ts +9 -0
  3700. package/dist/modules/customer/services/CustomerCollection.js +40 -0
  3701. package/dist/modules/customer/services/CustomerCollection.js.map +1 -0
  3702. package/dist/modules/customer/services/CustomerGroupCollection.d.ts +11 -0
  3703. package/dist/modules/customer/services/CustomerGroupCollection.js +39 -0
  3704. package/dist/modules/customer/services/CustomerGroupCollection.js.map +1 -0
  3705. package/dist/modules/customer/services/customer/address/addressValidator.d.ts +17 -0
  3706. package/dist/modules/customer/services/customer/address/addressValidator.js +22 -0
  3707. package/dist/modules/customer/services/customer/address/addressValidator.js.map +1 -0
  3708. package/dist/modules/customer/services/customer/address/createCustomerAddress.d.ts +11 -0
  3709. package/dist/modules/customer/services/customer/address/createCustomerAddress.js +71 -0
  3710. package/dist/modules/customer/services/customer/address/createCustomerAddress.js.map +1 -0
  3711. package/dist/modules/customer/services/customer/address/deleteCustomerAddress.d.ts +10 -0
  3712. package/dist/modules/customer/services/customer/address/deleteCustomerAddress.js +51 -0
  3713. package/dist/modules/customer/services/customer/address/deleteCustomerAddress.js.map +1 -0
  3714. package/dist/modules/customer/services/customer/address/updateCustomerAddress.d.ts +12 -0
  3715. package/dist/modules/customer/services/customer/address/updateCustomerAddress.js +94 -0
  3716. package/dist/modules/customer/services/customer/address/updateCustomerAddress.js.map +1 -0
  3717. package/dist/modules/customer/services/customer/createCustomer.d.ts +15 -0
  3718. package/dist/modules/customer/services/customer/createCustomer.js +90 -0
  3719. package/dist/modules/customer/services/customer/createCustomer.js.map +1 -0
  3720. package/dist/modules/customer/services/customer/customerDataSchema.json +20 -0
  3721. package/dist/modules/customer/services/customer/deleteCustomer.d.ts +8 -0
  3722. package/dist/modules/customer/services/customer/deleteCustomer.js +45 -0
  3723. package/dist/modules/customer/services/customer/deleteCustomer.js.map +1 -0
  3724. package/dist/modules/customer/services/customer/loginCustomerWithEmail.d.ts +7 -0
  3725. package/dist/modules/customer/services/customer/loginCustomerWithEmail.js +29 -0
  3726. package/dist/modules/customer/services/customer/loginCustomerWithEmail.js.map +1 -0
  3727. package/dist/modules/customer/services/customer/logoutCustomer.d.ts +5 -0
  3728. package/dist/modules/customer/services/customer/logoutCustomer.js +9 -0
  3729. package/dist/modules/customer/services/customer/logoutCustomer.js.map +1 -0
  3730. package/dist/modules/customer/services/customer/updateCustomer.d.ts +9 -0
  3731. package/dist/modules/customer/services/customer/updateCustomer.js +84 -0
  3732. package/dist/modules/customer/services/customer/updateCustomer.js.map +1 -0
  3733. package/dist/modules/customer/services/customer/updatePassword.d.ts +8 -0
  3734. package/dist/modules/customer/services/customer/updatePassword.js +61 -0
  3735. package/dist/modules/customer/services/customer/updatePassword.js.map +1 -0
  3736. package/dist/modules/customer/services/getCustomerGroupsBaseQuery.d.ts +1 -0
  3737. package/dist/modules/customer/services/getCustomerGroupsBaseQuery.js +6 -0
  3738. package/dist/modules/customer/services/getCustomerGroupsBaseQuery.js.map +1 -0
  3739. package/dist/modules/customer/services/getCustomersBaseQuery.d.ts +2 -0
  3740. package/dist/modules/customer/services/getCustomersBaseQuery.js +6 -0
  3741. package/dist/modules/customer/services/getCustomersBaseQuery.js.map +1 -0
  3742. package/dist/modules/customer/services/index.d.ts +10 -0
  3743. package/dist/modules/customer/services/index.js +11 -0
  3744. package/dist/modules/customer/services/index.js.map +1 -0
  3745. package/dist/modules/customer/services/registerDefaultCustomerCollectionFilters.d.ts +5 -0
  3746. package/dist/modules/customer/services/registerDefaultCustomerCollectionFilters.js +79 -0
  3747. package/dist/modules/customer/services/registerDefaultCustomerCollectionFilters.js.map +1 -0
  3748. package/dist/modules/customer/services/registerDefaultCustomerGroupCollectionFilters.d.ts +5 -0
  3749. package/dist/modules/customer/services/registerDefaultCustomerGroupCollectionFilters.js +38 -0
  3750. package/dist/modules/customer/services/registerDefaultCustomerGroupCollectionFilters.js.map +1 -0
  3751. package/dist/modules/graphql/api/adminGraphql/[bodyParser]graphql.d.ts +2 -0
  3752. package/dist/modules/graphql/api/adminGraphql/[bodyParser]graphql.js +5 -0
  3753. package/dist/modules/graphql/api/adminGraphql/[bodyParser]graphql.js.map +1 -0
  3754. package/dist/modules/graphql/api/adminGraphql/[context]bodyParser[auth].d.ts +2 -0
  3755. package/dist/modules/graphql/api/adminGraphql/[context]bodyParser[auth].js +5 -0
  3756. package/dist/modules/graphql/api/adminGraphql/[context]bodyParser[auth].js.map +1 -0
  3757. package/dist/modules/graphql/api/adminGraphql/route.json +5 -0
  3758. package/dist/modules/graphql/api/graphql/[auth]removeUser[graphql].d.ts +2 -0
  3759. package/dist/modules/graphql/api/graphql/[auth]removeUser[graphql].js +9 -0
  3760. package/dist/modules/graphql/api/graphql/[auth]removeUser[graphql].js.map +1 -0
  3761. package/dist/modules/graphql/api/graphql/[bodyParser]graphql.d.ts +2 -0
  3762. package/dist/modules/graphql/api/graphql/[bodyParser]graphql.js +13 -0
  3763. package/dist/modules/graphql/api/graphql/[bodyParser]graphql.js.map +1 -0
  3764. package/dist/modules/graphql/api/graphql/[context]bodyParser[auth].d.ts +2 -0
  3765. package/dist/modules/graphql/api/graphql/[context]bodyParser[auth].js +5 -0
  3766. package/dist/modules/graphql/api/graphql/[context]bodyParser[auth].js.map +1 -0
  3767. package/dist/modules/graphql/api/graphql/route.json +5 -0
  3768. package/dist/modules/graphql/bootstrap.d.ts +2 -0
  3769. package/dist/modules/graphql/bootstrap.js +3 -0
  3770. package/dist/modules/graphql/bootstrap.js.map +1 -0
  3771. package/dist/modules/graphql/graphql/types/Query/Query.graphql +6 -0
  3772. package/dist/modules/graphql/graphql/types/Query/Query.resolvers.d.ts +6 -0
  3773. package/dist/modules/graphql/graphql/types/Query/Query.resolvers.js +6 -0
  3774. package/dist/modules/graphql/graphql/types/Query/Query.resolvers.js.map +1 -0
  3775. package/dist/modules/graphql/pages/global/[bodyParser]buildQuery[graphql].d.ts +2 -0
  3776. package/dist/modules/graphql/pages/global/[bodyParser]buildQuery[graphql].js +289 -0
  3777. package/dist/modules/graphql/pages/global/[bodyParser]buildQuery[graphql].js.map +1 -0
  3778. package/dist/modules/graphql/pages/global/[buildQuery]graphql[notFound].d.ts +1 -0
  3779. package/dist/modules/graphql/pages/global/[buildQuery]graphql[notFound].js +74 -0
  3780. package/dist/modules/graphql/pages/global/[buildQuery]graphql[notFound].js.map +1 -0
  3781. package/dist/modules/graphql/pages/global/bodyParser[buildQuery].d.ts +2 -0
  3782. package/dist/modules/graphql/pages/global/bodyParser[buildQuery].js +7 -0
  3783. package/dist/modules/graphql/pages/global/bodyParser[buildQuery].js.map +1 -0
  3784. package/dist/modules/graphql/services/buildResolvers.d.ts +1 -0
  3785. package/dist/modules/graphql/services/buildResolvers.js +34 -0
  3786. package/dist/modules/graphql/services/buildResolvers.js.map +1 -0
  3787. package/dist/modules/graphql/services/buildSchema.d.ts +3 -0
  3788. package/dist/modules/graphql/services/buildSchema.js +18 -0
  3789. package/dist/modules/graphql/services/buildSchema.js.map +1 -0
  3790. package/dist/modules/graphql/services/buildStoreFrontSchema.d.ts +3 -0
  3791. package/dist/modules/graphql/services/buildStoreFrontSchema.js +18 -0
  3792. package/dist/modules/graphql/services/buildStoreFrontSchema.js.map +1 -0
  3793. package/dist/modules/graphql/services/buildTypes.d.ts +1 -0
  3794. package/dist/modules/graphql/services/buildTypes.js +19 -0
  3795. package/dist/modules/graphql/services/buildTypes.js.map +1 -0
  3796. package/dist/modules/graphql/services/contextHelper.d.ts +11 -0
  3797. package/dist/modules/graphql/services/contextHelper.js +31 -0
  3798. package/dist/modules/graphql/services/contextHelper.js.map +1 -0
  3799. package/dist/modules/graphql/services/graphqlErrorMessageFormat.d.ts +1 -0
  3800. package/dist/modules/graphql/services/graphqlErrorMessageFormat.js +27 -0
  3801. package/dist/modules/graphql/services/graphqlErrorMessageFormat.js.map +1 -0
  3802. package/dist/modules/graphql/services/graphqlMiddleware.d.ts +1 -0
  3803. package/dist/modules/graphql/services/graphqlMiddleware.js +42 -0
  3804. package/dist/modules/graphql/services/graphqlMiddleware.js.map +1 -0
  3805. package/dist/modules/graphql/services/index.d.ts +1 -0
  3806. package/dist/modules/graphql/services/index.js +2 -0
  3807. package/dist/modules/graphql/services/index.js.map +1 -0
  3808. package/dist/modules/mollie/api/mollieCreatePayment/[context]bodyParser[auth].d.ts +2 -0
  3809. package/dist/modules/mollie/api/mollieCreatePayment/[context]bodyParser[auth].js +5 -0
  3810. package/dist/modules/mollie/api/mollieCreatePayment/[context]bodyParser[auth].js.map +1 -0
  3811. package/dist/modules/mollie/api/mollieCreatePayment/mollieCreatePayment.d.ts +2 -0
  3812. package/dist/modules/mollie/api/mollieCreatePayment/mollieCreatePayment.js +99 -0
  3813. package/dist/modules/mollie/api/mollieCreatePayment/mollieCreatePayment.js.map +1 -0
  3814. package/dist/modules/mollie/api/mollieCreatePayment/payloadSchema.json +15 -0
  3815. package/dist/modules/mollie/api/mollieCreatePayment/route.json +5 -0
  3816. package/dist/modules/mollie/api/mollieRefundPayment/[context]bodyParser[auth].d.ts +2 -0
  3817. package/dist/modules/mollie/api/mollieRefundPayment/[context]bodyParser[auth].js +5 -0
  3818. package/dist/modules/mollie/api/mollieRefundPayment/[context]bodyParser[auth].js.map +1 -0
  3819. package/dist/modules/mollie/api/mollieRefundPayment/mollieRefundPayment.d.ts +2 -0
  3820. package/dist/modules/mollie/api/mollieRefundPayment/mollieRefundPayment.js +104 -0
  3821. package/dist/modules/mollie/api/mollieRefundPayment/mollieRefundPayment.js.map +1 -0
  3822. package/dist/modules/mollie/api/mollieRefundPayment/payloadSchema.json +22 -0
  3823. package/dist/modules/mollie/api/mollieRefundPayment/route.json +5 -0
  3824. package/dist/modules/mollie/api/mollieWebhook/[bodyJson]webhook.d.ts +2 -0
  3825. package/dist/modules/mollie/api/mollieWebhook/[bodyJson]webhook.js +133 -0
  3826. package/dist/modules/mollie/api/mollieWebhook/[bodyJson]webhook.js.map +1 -0
  3827. package/dist/modules/mollie/api/mollieWebhook/bodyJson.d.ts +2 -0
  3828. package/dist/modules/mollie/api/mollieWebhook/bodyJson.js +5 -0
  3829. package/dist/modules/mollie/api/mollieWebhook/bodyJson.js.map +1 -0
  3830. package/dist/modules/mollie/api/mollieWebhook/route.json +5 -0
  3831. package/dist/modules/mollie/bootstrap.d.ts +2 -0
  3832. package/dist/modules/mollie/bootstrap.js +41 -0
  3833. package/dist/modules/mollie/bootstrap.js.map +1 -0
  3834. package/dist/modules/mollie/graphql/types/MollieSetting/MollieSetting.admin.graphql +4 -0
  3835. package/dist/modules/mollie/graphql/types/MollieSetting/MollieSetting.admin.resolvers.d.ts +7 -0
  3836. package/dist/modules/mollie/graphql/types/MollieSetting/MollieSetting.admin.resolvers.js +32 -0
  3837. package/dist/modules/mollie/graphql/types/MollieSetting/MollieSetting.admin.resolvers.js.map +1 -0
  3838. package/dist/modules/mollie/graphql/types/MollieSetting/MollieSetting.graphql +5 -0
  3839. package/dist/modules/mollie/graphql/types/MollieSetting/MollieSetting.resolvers.d.ts +8 -0
  3840. package/dist/modules/mollie/graphql/types/MollieSetting/MollieSetting.resolvers.js +41 -0
  3841. package/dist/modules/mollie/graphql/types/MollieSetting/MollieSetting.resolvers.js.map +1 -0
  3842. package/dist/modules/mollie/pages/admin/orderEdit/MollieCaptureButton.d.ts +21 -0
  3843. package/dist/modules/mollie/pages/admin/orderEdit/MollieCaptureButton.js +54 -0
  3844. package/dist/modules/mollie/pages/admin/orderEdit/MollieCaptureButton.js.map +1 -0
  3845. package/dist/modules/mollie/pages/admin/orderEdit/MollieRefundButton.d.ts +22 -0
  3846. package/dist/modules/mollie/pages/admin/orderEdit/MollieRefundButton.js +97 -0
  3847. package/dist/modules/mollie/pages/admin/orderEdit/MollieRefundButton.js.map +1 -0
  3848. package/dist/modules/mollie/pages/admin/paymentSetting/MolliePayment.d.ts +21 -0
  3849. package/dist/modules/mollie/pages/admin/paymentSetting/MolliePayment.js +63 -0
  3850. package/dist/modules/mollie/pages/admin/paymentSetting/MolliePayment.js.map +1 -0
  3851. package/dist/modules/mollie/pages/frontStore/checkout/Mollie.d.ts +33 -0
  3852. package/dist/modules/mollie/pages/frontStore/checkout/Mollie.js +106 -0
  3853. package/dist/modules/mollie/pages/frontStore/checkout/Mollie.js.map +1 -0
  3854. package/dist/modules/mollie/pages/frontStore/mollieReturn/index.d.ts +2 -0
  3855. package/dist/modules/mollie/pages/frontStore/mollieReturn/index.js +66 -0
  3856. package/dist/modules/mollie/pages/frontStore/mollieReturn/index.js.map +1 -0
  3857. package/dist/modules/mollie/pages/frontStore/mollieReturn/route.json +4 -0
  3858. package/dist/modules/mollie/services/cancelPayment.d.ts +1 -0
  3859. package/dist/modules/mollie/services/cancelPayment.js +34 -0
  3860. package/dist/modules/mollie/services/cancelPayment.js.map +1 -0
  3861. package/dist/modules/mollie/services/getMollieApiKey.d.ts +1 -0
  3862. package/dist/modules/mollie/services/getMollieApiKey.js +20 -0
  3863. package/dist/modules/mollie/services/getMollieApiKey.js.map +1 -0
  3864. package/dist/modules/oms/api/cancelOrder/[context]borderParser[auth].d.ts +2 -0
  3865. package/dist/modules/oms/api/cancelOrder/[context]borderParser[auth].js +5 -0
  3866. package/dist/modules/oms/api/cancelOrder/[context]borderParser[auth].js.map +1 -0
  3867. package/dist/modules/oms/api/cancelOrder/cancelOrder.d.ts +2 -0
  3868. package/dist/modules/oms/api/cancelOrder/cancelOrder.js +22 -0
  3869. package/dist/modules/oms/api/cancelOrder/cancelOrder.js.map +1 -0
  3870. package/dist/modules/oms/api/cancelOrder/payloadSchema.json +15 -0
  3871. package/dist/modules/oms/api/cancelOrder/route.json +5 -0
  3872. package/dist/modules/oms/api/createShipment/[context]borderParser[auth].d.ts +2 -0
  3873. package/dist/modules/oms/api/createShipment/[context]borderParser[auth].js +5 -0
  3874. package/dist/modules/oms/api/createShipment/[context]borderParser[auth].js.map +1 -0
  3875. package/dist/modules/oms/api/createShipment/createShipment.d.ts +2 -0
  3876. package/dist/modules/oms/api/createShipment/createShipment.js +78 -0
  3877. package/dist/modules/oms/api/createShipment/createShipment.js.map +1 -0
  3878. package/dist/modules/oms/api/createShipment/payloadSchema.json +12 -0
  3879. package/dist/modules/oms/api/createShipment/route.json +5 -0
  3880. package/dist/modules/oms/api/lifetimesales/loadData.d.ts +2 -0
  3881. package/dist/modules/oms/api/lifetimesales/loadData.js +39 -0
  3882. package/dist/modules/oms/api/lifetimesales/loadData.js.map +1 -0
  3883. package/dist/modules/oms/api/lifetimesales/route.json +5 -0
  3884. package/dist/modules/oms/api/markDelivered/[context]bodyParser[auth].d.ts +2 -0
  3885. package/dist/modules/oms/api/markDelivered/[context]bodyParser[auth].js +5 -0
  3886. package/dist/modules/oms/api/markDelivered/[context]bodyParser[auth].js.map +1 -0
  3887. package/dist/modules/oms/api/markDelivered/markDelivered.d.ts +2 -0
  3888. package/dist/modules/oms/api/markDelivered/markDelivered.js +68 -0
  3889. package/dist/modules/oms/api/markDelivered/markDelivered.js.map +1 -0
  3890. package/dist/modules/oms/api/markDelivered/payloadSchema.json +9 -0
  3891. package/dist/modules/oms/api/markDelivered/route.json +5 -0
  3892. package/dist/modules/oms/api/salestatistic/loadData.d.ts +2 -0
  3893. package/dist/modules/oms/api/salestatistic/loadData.js +66 -0
  3894. package/dist/modules/oms/api/salestatistic/loadData.js.map +1 -0
  3895. package/dist/modules/oms/api/salestatistic/route.json +5 -0
  3896. package/dist/modules/oms/api/updateShipment/[context]bodyParser[auth].d.ts +2 -0
  3897. package/dist/modules/oms/api/updateShipment/[context]bodyParser[auth].js +5 -0
  3898. package/dist/modules/oms/api/updateShipment/[context]bodyParser[auth].js.map +1 -0
  3899. package/dist/modules/oms/api/updateShipment/payloadSchema.json +12 -0
  3900. package/dist/modules/oms/api/updateShipment/route.json +5 -0
  3901. package/dist/modules/oms/api/updateShipment/updateShipment.d.ts +2 -0
  3902. package/dist/modules/oms/api/updateShipment/updateShipment.js +77 -0
  3903. package/dist/modules/oms/api/updateShipment/updateShipment.js.map +1 -0
  3904. package/dist/modules/oms/bootstrap.d.ts +2 -0
  3905. package/dist/modules/oms/bootstrap.js +364 -0
  3906. package/dist/modules/oms/bootstrap.js.map +1 -0
  3907. package/dist/modules/oms/graphql/types/BestSeller/BestSeller.admin.graphql +7 -0
  3908. package/dist/modules/oms/graphql/types/BestSeller/BestSeller.admin.resolvers.d.ts +6 -0
  3909. package/dist/modules/oms/graphql/types/BestSeller/BestSeller.admin.resolvers.js +29 -0
  3910. package/dist/modules/oms/graphql/types/BestSeller/BestSeller.admin.resolvers.js.map +1 -0
  3911. package/dist/modules/oms/graphql/types/Carrier/Carrier.admin.graphql +12 -0
  3912. package/dist/modules/oms/graphql/types/Carrier/Carrier.admin.resolvers.d.ts +6 -0
  3913. package/dist/modules/oms/graphql/types/Carrier/Carrier.admin.resolvers.js +13 -0
  3914. package/dist/modules/oms/graphql/types/Carrier/Carrier.admin.resolvers.js.map +1 -0
  3915. package/dist/modules/oms/graphql/types/Order/Order.admin.graphql +15 -0
  3916. package/dist/modules/oms/graphql/types/Order/Order.admin.resolvers.d.ts +31 -0
  3917. package/dist/modules/oms/graphql/types/Order/Order.admin.resolvers.js +30 -0
  3918. package/dist/modules/oms/graphql/types/Order/Order.admin.resolvers.js.map +1 -0
  3919. package/dist/modules/oms/graphql/types/Order/Order.graphql +147 -0
  3920. package/dist/modules/oms/graphql/types/Order/Order.resolvers.d.ts +81 -0
  3921. package/dist/modules/oms/graphql/types/Order/Order.resolvers.js +141 -0
  3922. package/dist/modules/oms/graphql/types/Order/Order.resolvers.js.map +1 -0
  3923. package/dist/modules/oms/graphql/types/PaymentTransaction/PaymentTransaction.admin.graphql +18 -0
  3924. package/dist/modules/oms/graphql/types/PaymentTransaction/PaymentTransaction.admin.resolvers.d.ts +10 -0
  3925. package/dist/modules/oms/graphql/types/PaymentTransaction/PaymentTransaction.admin.resolvers.js +14 -0
  3926. package/dist/modules/oms/graphql/types/PaymentTransaction/PaymentTransaction.admin.resolvers.js.map +1 -0
  3927. package/dist/modules/oms/graphql/types/Status/Status.graphql +39 -0
  3928. package/dist/modules/oms/graphql/types/Status/Status.resolvers.d.ts +8 -0
  3929. package/dist/modules/oms/graphql/types/Status/Status.resolvers.js +27 -0
  3930. package/dist/modules/oms/graphql/types/Status/Status.resolvers.js.map +1 -0
  3931. package/dist/modules/oms/migration/Version-1.0.0.d.ts +2 -0
  3932. package/dist/modules/oms/migration/Version-1.0.0.js +16 -0
  3933. package/dist/modules/oms/migration/Version-1.0.0.js.map +1 -0
  3934. package/dist/modules/oms/migration/Version-1.0.1.d.ts +2 -0
  3935. package/dist/modules/oms/migration/Version-1.0.1.js +19 -0
  3936. package/dist/modules/oms/migration/Version-1.0.1.js.map +1 -0
  3937. package/dist/modules/oms/migration/Version-1.0.2.d.ts +2 -0
  3938. package/dist/modules/oms/migration/Version-1.0.2.js +11 -0
  3939. package/dist/modules/oms/migration/Version-1.0.2.js.map +1 -0
  3940. package/dist/modules/oms/migration/Version-1.0.3.d.ts +2 -0
  3941. package/dist/modules/oms/migration/Version-1.0.3.js +13 -0
  3942. package/dist/modules/oms/migration/Version-1.0.3.js.map +1 -0
  3943. package/dist/modules/oms/pages/admin/all/OmsMenuGroup.d.ts +17 -0
  3944. package/dist/modules/oms/pages/admin/all/OmsMenuGroup.js +35 -0
  3945. package/dist/modules/oms/pages/admin/all/OmsMenuGroup.js.map +1 -0
  3946. package/dist/modules/oms/pages/admin/dashboard/Bestcustomers.d.ts +13 -0
  3947. package/dist/modules/oms/pages/admin/dashboard/Bestcustomers.js +49 -0
  3948. package/dist/modules/oms/pages/admin/dashboard/Bestcustomers.js.map +1 -0
  3949. package/dist/modules/oms/pages/admin/dashboard/Bestsellers.d.ts +17 -0
  3950. package/dist/modules/oms/pages/admin/dashboard/Bestsellers.js +79 -0
  3951. package/dist/modules/oms/pages/admin/dashboard/Bestsellers.js.map +1 -0
  3952. package/dist/modules/oms/pages/admin/dashboard/Bestsellers.scss +48 -0
  3953. package/dist/modules/oms/pages/admin/dashboard/Lifetimesales.d.ts +15 -0
  3954. package/dist/modules/oms/pages/admin/dashboard/Lifetimesales.js +94 -0
  3955. package/dist/modules/oms/pages/admin/dashboard/Lifetimesales.js.map +1 -0
  3956. package/dist/modules/oms/pages/admin/dashboard/Lifetimesales.scss +31 -0
  3957. package/dist/modules/oms/pages/admin/dashboard/Statistic.d.ts +15 -0
  3958. package/dist/modules/oms/pages/admin/dashboard/Statistic.js +75 -0
  3959. package/dist/modules/oms/pages/admin/dashboard/Statistic.js.map +1 -0
  3960. package/dist/modules/oms/pages/admin/dashboard/Statistic.scss +21 -0
  3961. package/dist/modules/oms/pages/admin/orderEdit/Activities.d.ts +17 -0
  3962. package/dist/modules/oms/pages/admin/orderEdit/Activities.js +88 -0
  3963. package/dist/modules/oms/pages/admin/orderEdit/Activities.js.map +1 -0
  3964. package/dist/modules/oms/pages/admin/orderEdit/Activities.scss +59 -0
  3965. package/dist/modules/oms/pages/admin/orderEdit/AddTrackingButton.d.ts +19 -0
  3966. package/dist/modules/oms/pages/admin/orderEdit/AddTrackingButton.js +87 -0
  3967. package/dist/modules/oms/pages/admin/orderEdit/AddTrackingButton.js.map +1 -0
  3968. package/dist/modules/oms/pages/admin/orderEdit/CancelButton.d.ts +19 -0
  3969. package/dist/modules/oms/pages/admin/orderEdit/CancelButton.js +91 -0
  3970. package/dist/modules/oms/pages/admin/orderEdit/CancelButton.js.map +1 -0
  3971. package/dist/modules/oms/pages/admin/orderEdit/Customer.d.ts +21 -0
  3972. package/dist/modules/oms/pages/admin/orderEdit/Customer.js +104 -0
  3973. package/dist/modules/oms/pages/admin/orderEdit/Customer.js.map +1 -0
  3974. package/dist/modules/oms/pages/admin/orderEdit/CustomerNotes.d.ts +17 -0
  3975. package/dist/modules/oms/pages/admin/orderEdit/CustomerNotes.js +35 -0
  3976. package/dist/modules/oms/pages/admin/orderEdit/CustomerNotes.js.map +1 -0
  3977. package/dist/modules/oms/pages/admin/orderEdit/Items.d.ts +18 -0
  3978. package/dist/modules/oms/pages/admin/orderEdit/Items.js +158 -0
  3979. package/dist/modules/oms/pages/admin/orderEdit/Items.js.map +1 -0
  3980. package/dist/modules/oms/pages/admin/orderEdit/Items.scss +53 -0
  3981. package/dist/modules/oms/pages/admin/orderEdit/Layout.d.ts +6 -0
  3982. package/dist/modules/oms/pages/admin/orderEdit/Layout.js +15 -0
  3983. package/dist/modules/oms/pages/admin/orderEdit/Layout.js.map +1 -0
  3984. package/dist/modules/oms/pages/admin/orderEdit/Layout.scss +7 -0
  3985. package/dist/modules/oms/pages/admin/orderEdit/MarkDeliveredButton.d.ts +23 -0
  3986. package/dist/modules/oms/pages/admin/orderEdit/MarkDeliveredButton.js +62 -0
  3987. package/dist/modules/oms/pages/admin/orderEdit/MarkDeliveredButton.js.map +1 -0
  3988. package/dist/modules/oms/pages/admin/orderEdit/PageHeading.d.ts +17 -0
  3989. package/dist/modules/oms/pages/admin/orderEdit/PageHeading.js +25 -0
  3990. package/dist/modules/oms/pages/admin/orderEdit/PageHeading.js.map +1 -0
  3991. package/dist/modules/oms/pages/admin/orderEdit/Payment.d.ts +28 -0
  3992. package/dist/modules/oms/pages/admin/orderEdit/Payment.js +119 -0
  3993. package/dist/modules/oms/pages/admin/orderEdit/Payment.js.map +1 -0
  3994. package/dist/modules/oms/pages/admin/orderEdit/Payment.scss +14 -0
  3995. package/dist/modules/oms/pages/admin/orderEdit/ShipButton.d.ts +21 -0
  3996. package/dist/modules/oms/pages/admin/orderEdit/ShipButton.js +106 -0
  3997. package/dist/modules/oms/pages/admin/orderEdit/ShipButton.js.map +1 -0
  3998. package/dist/modules/oms/pages/admin/orderEdit/Status.d.ts +17 -0
  3999. package/dist/modules/oms/pages/admin/orderEdit/Status.js +37 -0
  4000. package/dist/modules/oms/pages/admin/orderEdit/Status.js.map +1 -0
  4001. package/dist/modules/oms/pages/admin/orderEdit/TrackingButton.d.ts +19 -0
  4002. package/dist/modules/oms/pages/admin/orderEdit/TrackingButton.js +53 -0
  4003. package/dist/modules/oms/pages/admin/orderEdit/TrackingButton.js.map +1 -0
  4004. package/dist/modules/oms/pages/admin/orderEdit/index.d.ts +2 -0
  4005. package/dist/modules/oms/pages/admin/orderEdit/index.js +28 -0
  4006. package/dist/modules/oms/pages/admin/orderEdit/index.js.map +1 -0
  4007. package/dist/modules/oms/pages/admin/orderEdit/route.json +4 -0
  4008. package/dist/modules/oms/pages/admin/orderGrid/Grid.d.ts +24 -0
  4009. package/dist/modules/oms/pages/admin/orderGrid/Grid.js +360 -0
  4010. package/dist/modules/oms/pages/admin/orderGrid/Grid.js.map +1 -0
  4011. package/dist/modules/oms/pages/admin/orderGrid/Heading.d.ts +6 -0
  4012. package/dist/modules/oms/pages/admin/orderGrid/Heading.js +10 -0
  4013. package/dist/modules/oms/pages/admin/orderGrid/Heading.js.map +1 -0
  4014. package/dist/modules/oms/pages/admin/orderGrid/index.d.ts +2 -0
  4015. package/dist/modules/oms/pages/admin/orderGrid/index.js +10 -0
  4016. package/dist/modules/oms/pages/admin/orderGrid/index.js.map +1 -0
  4017. package/dist/modules/oms/pages/admin/orderGrid/route.json +4 -0
  4018. package/dist/modules/oms/services/OrderCollection.d.ts +9 -0
  4019. package/dist/modules/oms/services/OrderCollection.js +40 -0
  4020. package/dist/modules/oms/services/OrderCollection.js.map +1 -0
  4021. package/dist/modules/oms/services/cancelOrder.d.ts +8 -0
  4022. package/dist/modules/oms/services/cancelOrder.js +113 -0
  4023. package/dist/modules/oms/services/cancelOrder.js.map +1 -0
  4024. package/dist/modules/oms/services/getOrdersBaseQuery.d.ts +1 -0
  4025. package/dist/modules/oms/services/getOrdersBaseQuery.js +6 -0
  4026. package/dist/modules/oms/services/getOrdersBaseQuery.js.map +1 -0
  4027. package/dist/modules/oms/services/index.d.ts +4 -0
  4028. package/dist/modules/oms/services/index.js +5 -0
  4029. package/dist/modules/oms/services/index.js.map +1 -0
  4030. package/dist/modules/oms/services/registerDefaultOrderCollectionFilters.d.ts +5 -0
  4031. package/dist/modules/oms/services/registerDefaultOrderCollectionFilters.js +103 -0
  4032. package/dist/modules/oms/services/registerDefaultOrderCollectionFilters.js.map +1 -0
  4033. package/dist/modules/oms/services/updateOrderStatus.d.ts +6 -0
  4034. package/dist/modules/oms/services/updateOrderStatus.js +107 -0
  4035. package/dist/modules/oms/services/updateOrderStatus.js.map +1 -0
  4036. package/dist/modules/oms/services/updatePaymentStatus.d.ts +2 -0
  4037. package/dist/modules/oms/services/updatePaymentStatus.js +42 -0
  4038. package/dist/modules/oms/services/updatePaymentStatus.js.map +1 -0
  4039. package/dist/modules/oms/services/updateShipmentStatus.d.ts +2 -0
  4040. package/dist/modules/oms/services/updateShipmentStatus.js +45 -0
  4041. package/dist/modules/oms/services/updateShipmentStatus.js.map +1 -0
  4042. package/dist/modules/paypal/api/paypalAuthorizePayment/[bodyParser]authorize.d.ts +2 -0
  4043. package/dist/modules/paypal/api/paypalAuthorizePayment/[bodyParser]authorize.js +84 -0
  4044. package/dist/modules/paypal/api/paypalAuthorizePayment/[bodyParser]authorize.js.map +1 -0
  4045. package/dist/modules/paypal/api/paypalAuthorizePayment/[context]bodyParser[auth].d.ts +2 -0
  4046. package/dist/modules/paypal/api/paypalAuthorizePayment/[context]bodyParser[auth].js +5 -0
  4047. package/dist/modules/paypal/api/paypalAuthorizePayment/[context]bodyParser[auth].js.map +1 -0
  4048. package/dist/modules/paypal/api/paypalAuthorizePayment/payloadSchema.json +10 -0
  4049. package/dist/modules/paypal/api/paypalAuthorizePayment/route.json +5 -0
  4050. package/dist/modules/paypal/api/paypalCaptureAuthorizedPayment/[bodyParser]capture.d.ts +2 -0
  4051. package/dist/modules/paypal/api/paypalCaptureAuthorizedPayment/[bodyParser]capture.js +117 -0
  4052. package/dist/modules/paypal/api/paypalCaptureAuthorizedPayment/[bodyParser]capture.js.map +1 -0
  4053. package/dist/modules/paypal/api/paypalCaptureAuthorizedPayment/[context]bodyParser[auth].d.ts +2 -0
  4054. package/dist/modules/paypal/api/paypalCaptureAuthorizedPayment/[context]bodyParser[auth].js +5 -0
  4055. package/dist/modules/paypal/api/paypalCaptureAuthorizedPayment/[context]bodyParser[auth].js.map +1 -0
  4056. package/dist/modules/paypal/api/paypalCaptureAuthorizedPayment/payloadSchema.json +10 -0
  4057. package/dist/modules/paypal/api/paypalCaptureAuthorizedPayment/route.json +5 -0
  4058. package/dist/modules/paypal/api/paypalCapturePayment/[bodyParser]capture.d.ts +2 -0
  4059. package/dist/modules/paypal/api/paypalCapturePayment/[bodyParser]capture.js +81 -0
  4060. package/dist/modules/paypal/api/paypalCapturePayment/[bodyParser]capture.js.map +1 -0
  4061. package/dist/modules/paypal/api/paypalCapturePayment/[context]bodyParser[auth].d.ts +2 -0
  4062. package/dist/modules/paypal/api/paypalCapturePayment/[context]bodyParser[auth].js +5 -0
  4063. package/dist/modules/paypal/api/paypalCapturePayment/[context]bodyParser[auth].js.map +1 -0
  4064. package/dist/modules/paypal/api/paypalCapturePayment/payloadSchema.json +10 -0
  4065. package/dist/modules/paypal/api/paypalCapturePayment/route.json +5 -0
  4066. package/dist/modules/paypal/api/paypalCreateOrder/[bodyParser]createOrder.d.ts +2 -0
  4067. package/dist/modules/paypal/api/paypalCreateOrder/[bodyParser]createOrder.js +188 -0
  4068. package/dist/modules/paypal/api/paypalCreateOrder/[bodyParser]createOrder.js.map +1 -0
  4069. package/dist/modules/paypal/api/paypalCreateOrder/[context]bodyParser[auth].d.ts +2 -0
  4070. package/dist/modules/paypal/api/paypalCreateOrder/[context]bodyParser[auth].js +5 -0
  4071. package/dist/modules/paypal/api/paypalCreateOrder/[context]bodyParser[auth].js.map +1 -0
  4072. package/dist/modules/paypal/api/paypalCreateOrder/payloadSchema.json +10 -0
  4073. package/dist/modules/paypal/api/paypalCreateOrder/route.json +5 -0
  4074. package/dist/modules/paypal/bootstrap.d.ts +2 -0
  4075. package/dist/modules/paypal/bootstrap.js +40 -0
  4076. package/dist/modules/paypal/bootstrap.js.map +1 -0
  4077. package/dist/modules/paypal/graphql/types/PaypalSetting/PaypalSetting.admin.graphql +7 -0
  4078. package/dist/modules/paypal/graphql/types/PaypalSetting/PaypalSetting.admin.resolvers.d.ts +14 -0
  4079. package/dist/modules/paypal/graphql/types/PaypalSetting/PaypalSetting.admin.resolvers.js +77 -0
  4080. package/dist/modules/paypal/graphql/types/PaypalSetting/PaypalSetting.admin.resolvers.js.map +1 -0
  4081. package/dist/modules/paypal/graphql/types/PaypalSetting/PaypalSetting.graphql +4 -0
  4082. package/dist/modules/paypal/graphql/types/PaypalSetting/PaypalSetting.resolvers.d.ts +7 -0
  4083. package/dist/modules/paypal/graphql/types/PaypalSetting/PaypalSetting.resolvers.js +28 -0
  4084. package/dist/modules/paypal/graphql/types/PaypalSetting/PaypalSetting.resolvers.js.map +1 -0
  4085. package/dist/modules/paypal/pages/admin/orderEdit/PaypalCaptureButton.d.ts +21 -0
  4086. package/dist/modules/paypal/pages/admin/orderEdit/PaypalCaptureButton.js +60 -0
  4087. package/dist/modules/paypal/pages/admin/orderEdit/PaypalCaptureButton.js.map +1 -0
  4088. package/dist/modules/paypal/pages/admin/orderEdit/StripeRefundButton.d.ts +22 -0
  4089. package/dist/modules/paypal/pages/admin/orderEdit/StripeRefundButton.js +97 -0
  4090. package/dist/modules/paypal/pages/admin/orderEdit/StripeRefundButton.js.map +1 -0
  4091. package/dist/modules/paypal/pages/admin/paymentSetting/PaypalSetting.d.ts +33 -0
  4092. package/dist/modules/paypal/pages/admin/paymentSetting/PaypalSetting.js +93 -0
  4093. package/dist/modules/paypal/pages/admin/paymentSetting/PaypalSetting.js.map +1 -0
  4094. package/dist/modules/paypal/pages/frontStore/checkout/Paypal.d.ts +33 -0
  4095. package/dist/modules/paypal/pages/frontStore/checkout/Paypal.js +108 -0
  4096. package/dist/modules/paypal/pages/frontStore/checkout/Paypal.js.map +1 -0
  4097. package/dist/modules/paypal/pages/frontStore/paypalCancel/index.d.ts +2 -0
  4098. package/dist/modules/paypal/pages/frontStore/paypalCancel/index.js +31 -0
  4099. package/dist/modules/paypal/pages/frontStore/paypalCancel/index.js.map +1 -0
  4100. package/dist/modules/paypal/pages/frontStore/paypalCancel/route.json +4 -0
  4101. package/dist/modules/paypal/pages/frontStore/paypalReturn/Error.d.ts +6 -0
  4102. package/dist/modules/paypal/pages/frontStore/paypalReturn/Error.js +12 -0
  4103. package/dist/modules/paypal/pages/frontStore/paypalReturn/Error.js.map +1 -0
  4104. package/dist/modules/paypal/pages/frontStore/paypalReturn/index.d.ts +2 -0
  4105. package/dist/modules/paypal/pages/frontStore/paypalReturn/index.js +56 -0
  4106. package/dist/modules/paypal/pages/frontStore/paypalReturn/index.js.map +1 -0
  4107. package/dist/modules/paypal/pages/frontStore/paypalReturn/route.json +4 -0
  4108. package/dist/modules/paypal/services/getApiBaseUrl.d.ts +1 -0
  4109. package/dist/modules/paypal/services/getApiBaseUrl.js +6 -0
  4110. package/dist/modules/paypal/services/getApiBaseUrl.js.map +1 -0
  4111. package/dist/modules/paypal/services/requester.d.ts +1 -0
  4112. package/dist/modules/paypal/services/requester.js +57 -0
  4113. package/dist/modules/paypal/services/requester.js.map +1 -0
  4114. package/dist/modules/paypal/services/voidPaymentTransaction.d.ts +1 -0
  4115. package/dist/modules/paypal/services/voidPaymentTransaction.js +39 -0
  4116. package/dist/modules/paypal/services/voidPaymentTransaction.js.map +1 -0
  4117. package/dist/modules/promotion/api/couponApply/[context]bodyParser[auth].d.ts +2 -0
  4118. package/dist/modules/promotion/api/couponApply/[context]bodyParser[auth].js +5 -0
  4119. package/dist/modules/promotion/api/couponApply/[context]bodyParser[auth].js.map +1 -0
  4120. package/dist/modules/promotion/api/couponApply/[validateCouponCode]applyCoupon.d.ts +2 -0
  4121. package/dist/modules/promotion/api/couponApply/[validateCouponCode]applyCoupon.js +38 -0
  4122. package/dist/modules/promotion/api/couponApply/[validateCouponCode]applyCoupon.js.map +1 -0
  4123. package/dist/modules/promotion/api/couponApply/payloadSchema.json +15 -0
  4124. package/dist/modules/promotion/api/couponApply/route.json +5 -0
  4125. package/dist/modules/promotion/api/couponApply/validateCouponCode.d.ts +2 -0
  4126. package/dist/modules/promotion/api/couponApply/validateCouponCode.js +15 -0
  4127. package/dist/modules/promotion/api/couponApply/validateCouponCode.js.map +1 -0
  4128. package/dist/modules/promotion/api/createCoupon/[context]bodyParser[auth].d.ts +2 -0
  4129. package/dist/modules/promotion/api/createCoupon/[context]bodyParser[auth].js +5 -0
  4130. package/dist/modules/promotion/api/createCoupon/[context]bodyParser[auth].js.map +1 -0
  4131. package/dist/modules/promotion/api/createCoupon/createCoupon[finish].d.ts +2 -0
  4132. package/dist/modules/promotion/api/createCoupon/createCoupon[finish].js +8 -0
  4133. package/dist/modules/promotion/api/createCoupon/createCoupon[finish].js.map +1 -0
  4134. package/dist/modules/promotion/api/createCoupon/finish[apiResponse].d.ts +2 -0
  4135. package/dist/modules/promotion/api/createCoupon/finish[apiResponse].js +27 -0
  4136. package/dist/modules/promotion/api/createCoupon/finish[apiResponse].js.map +1 -0
  4137. package/dist/modules/promotion/api/createCoupon/route.json +5 -0
  4138. package/dist/modules/promotion/api/deleteCoupon/deleteCoupon.d.ts +2 -0
  4139. package/dist/modules/promotion/api/deleteCoupon/deleteCoupon.js +24 -0
  4140. package/dist/modules/promotion/api/deleteCoupon/deleteCoupon.js.map +1 -0
  4141. package/dist/modules/promotion/api/deleteCoupon/route.json +5 -0
  4142. package/dist/modules/promotion/api/updateCoupon/[context]bodyParser[auth].d.ts +2 -0
  4143. package/dist/modules/promotion/api/updateCoupon/[context]bodyParser[auth].js +5 -0
  4144. package/dist/modules/promotion/api/updateCoupon/[context]bodyParser[auth].js.map +1 -0
  4145. package/dist/modules/promotion/api/updateCoupon/finish[apiResponse].d.ts +2 -0
  4146. package/dist/modules/promotion/api/updateCoupon/finish[apiResponse].js +27 -0
  4147. package/dist/modules/promotion/api/updateCoupon/finish[apiResponse].js.map +1 -0
  4148. package/dist/modules/promotion/api/updateCoupon/route.json +5 -0
  4149. package/dist/modules/promotion/api/updateCoupon/updateCoupon[finish].d.ts +2 -0
  4150. package/dist/modules/promotion/api/updateCoupon/updateCoupon[finish].js +8 -0
  4151. package/dist/modules/promotion/api/updateCoupon/updateCoupon[finish].js.map +1 -0
  4152. package/dist/modules/promotion/bootstrap.d.ts +2 -0
  4153. package/dist/modules/promotion/bootstrap.js +26 -0
  4154. package/dist/modules/promotion/bootstrap.js.map +1 -0
  4155. package/dist/modules/promotion/graphql/types/Coupon/Coupon.admin.graphql +87 -0
  4156. package/dist/modules/promotion/graphql/types/Coupon/Coupon.admin.resolvers.d.ts +37 -0
  4157. package/dist/modules/promotion/graphql/types/Coupon/Coupon.admin.resolvers.js +64 -0
  4158. package/dist/modules/promotion/graphql/types/Coupon/Coupon.admin.resolvers.js.map +1 -0
  4159. package/dist/modules/promotion/graphql/types/Coupon/Coupon.graphql +5 -0
  4160. package/dist/modules/promotion/graphql/types/Coupon/Coupon.resolvers.d.ts +6 -0
  4161. package/dist/modules/promotion/graphql/types/Coupon/Coupon.resolvers.js +7 -0
  4162. package/dist/modules/promotion/graphql/types/Coupon/Coupon.resolvers.js.map +1 -0
  4163. package/dist/modules/promotion/migration/Version-1.0.0.d.ts +2 -0
  4164. package/dist/modules/promotion/migration/Version-1.0.0.js +43 -0
  4165. package/dist/modules/promotion/migration/Version-1.0.0.js.map +1 -0
  4166. package/dist/modules/promotion/migration/Version-1.0.1.d.ts +2 -0
  4167. package/dist/modules/promotion/migration/Version-1.0.1.js +8 -0
  4168. package/dist/modules/promotion/migration/Version-1.0.1.js.map +1 -0
  4169. package/dist/modules/promotion/pages/admin/all/CouponMenuGroup.d.ts +15 -0
  4170. package/dist/modules/promotion/pages/admin/all/CouponMenuGroup.js +26 -0
  4171. package/dist/modules/promotion/pages/admin/all/CouponMenuGroup.js.map +1 -0
  4172. package/dist/modules/promotion/pages/admin/couponEdit/CouponEditForm.d.ts +15 -0
  4173. package/dist/modules/promotion/pages/admin/couponEdit/CouponEditForm.js +34 -0
  4174. package/dist/modules/promotion/pages/admin/couponEdit/CouponEditForm.js.map +1 -0
  4175. package/dist/modules/promotion/pages/admin/couponEdit/index.d.ts +2 -0
  4176. package/dist/modules/promotion/pages/admin/couponEdit/index.js +28 -0
  4177. package/dist/modules/promotion/pages/admin/couponEdit/index.js.map +1 -0
  4178. package/dist/modules/promotion/pages/admin/couponEdit/route.json +4 -0
  4179. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/CustomerCondition.d.ts +27 -0
  4180. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/CustomerCondition.js +108 -0
  4181. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/CustomerCondition.js.map +1 -0
  4182. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/DiscountType.d.ts +19 -0
  4183. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/DiscountType.js +107 -0
  4184. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/DiscountType.js.map +1 -0
  4185. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/FormContent.d.ts +15 -0
  4186. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/FormContent.js +49 -0
  4187. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/FormContent.js.map +1 -0
  4188. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/FormContent.scss +7 -0
  4189. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/General.d.ts +19 -0
  4190. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/General.js +101 -0
  4191. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/General.js.map +1 -0
  4192. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/OrderCondition.d.ts +19 -0
  4193. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/OrderCondition.js +53 -0
  4194. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/OrderCondition.js.map +1 -0
  4195. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/PageHeading.d.ts +21 -0
  4196. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/PageHeading.js +28 -0
  4197. package/dist/modules/promotion/pages/admin/couponEdit+couponNew/PageHeading.js.map +1 -0
  4198. package/dist/modules/promotion/pages/admin/couponGrid/Grid.d.ts +20 -0
  4199. package/dist/modules/promotion/pages/admin/couponGrid/Grid.js +396 -0
  4200. package/dist/modules/promotion/pages/admin/couponGrid/Grid.js.map +1 -0
  4201. package/dist/modules/promotion/pages/admin/couponGrid/Heading.d.ts +6 -0
  4202. package/dist/modules/promotion/pages/admin/couponGrid/Heading.js +10 -0
  4203. package/dist/modules/promotion/pages/admin/couponGrid/Heading.js.map +1 -0
  4204. package/dist/modules/promotion/pages/admin/couponGrid/NewCouponButton.d.ts +15 -0
  4205. package/dist/modules/promotion/pages/admin/couponGrid/NewCouponButton.js +19 -0
  4206. package/dist/modules/promotion/pages/admin/couponGrid/NewCouponButton.js.map +1 -0
  4207. package/dist/modules/promotion/pages/admin/couponGrid/index.d.ts +2 -0
  4208. package/dist/modules/promotion/pages/admin/couponGrid/index.js +10 -0
  4209. package/dist/modules/promotion/pages/admin/couponGrid/index.js.map +1 -0
  4210. package/dist/modules/promotion/pages/admin/couponGrid/route.json +4 -0
  4211. package/dist/modules/promotion/pages/admin/couponNew/CouponNewForm.d.ts +15 -0
  4212. package/dist/modules/promotion/pages/admin/couponNew/CouponNewForm.js +40 -0
  4213. package/dist/modules/promotion/pages/admin/couponNew/CouponNewForm.js.map +1 -0
  4214. package/dist/modules/promotion/pages/admin/couponNew/index.d.ts +2 -0
  4215. package/dist/modules/promotion/pages/admin/couponNew/index.js +8 -0
  4216. package/dist/modules/promotion/pages/admin/couponNew/index.js.map +1 -0
  4217. package/dist/modules/promotion/pages/admin/couponNew/route.json +4 -0
  4218. package/dist/modules/promotion/pages/admin/navigation/CouponNewMenuItem.d.ts +10 -0
  4219. package/dist/modules/promotion/pages/admin/navigation/CouponNewMenuItem.js +11 -0
  4220. package/dist/modules/promotion/pages/admin/navigation/CouponNewMenuItem.js.map +1 -0
  4221. package/dist/modules/promotion/pages/admin/navigation/CouponsMenuItem.d.ts +10 -0
  4222. package/dist/modules/promotion/pages/admin/navigation/CouponsMenuItem.js +11 -0
  4223. package/dist/modules/promotion/pages/admin/navigation/CouponsMenuItem.js.map +1 -0
  4224. package/dist/modules/promotion/pages/frontStore/cart/Coupon.d.ts +17 -0
  4225. package/dist/modules/promotion/pages/frontStore/cart/Coupon.js +53 -0
  4226. package/dist/modules/promotion/pages/frontStore/cart/Coupon.js.map +1 -0
  4227. package/dist/modules/promotion/services/CouponCollection.d.ts +9 -0
  4228. package/dist/modules/promotion/services/CouponCollection.js +39 -0
  4229. package/dist/modules/promotion/services/CouponCollection.js.map +1 -0
  4230. package/dist/modules/promotion/services/coupon/couponDataSchema.json +220 -0
  4231. package/dist/modules/promotion/services/coupon/createCoupon.d.ts +2 -0
  4232. package/dist/modules/promotion/services/coupon/createCoupon.js +59 -0
  4233. package/dist/modules/promotion/services/coupon/createCoupon.js.map +1 -0
  4234. package/dist/modules/promotion/services/coupon/deleteCoupon.d.ts +2 -0
  4235. package/dist/modules/promotion/services/coupon/deleteCoupon.js +38 -0
  4236. package/dist/modules/promotion/services/coupon/deleteCoupon.js.map +1 -0
  4237. package/dist/modules/promotion/services/coupon/updateCoupon.d.ts +2 -0
  4238. package/dist/modules/promotion/services/coupon/updateCoupon.js +74 -0
  4239. package/dist/modules/promotion/services/coupon/updateCoupon.js.map +1 -0
  4240. package/dist/modules/promotion/services/couponValidator.d.ts +7 -0
  4241. package/dist/modules/promotion/services/couponValidator.js +32 -0
  4242. package/dist/modules/promotion/services/couponValidator.js.map +1 -0
  4243. package/dist/modules/promotion/services/discountCalculator.d.ts +1 -0
  4244. package/dist/modules/promotion/services/discountCalculator.js +11 -0
  4245. package/dist/modules/promotion/services/discountCalculator.js.map +1 -0
  4246. package/dist/modules/promotion/services/getCartTotalBeforeDiscount.d.ts +1 -0
  4247. package/dist/modules/promotion/services/getCartTotalBeforeDiscount.js +14 -0
  4248. package/dist/modules/promotion/services/getCartTotalBeforeDiscount.js.map +1 -0
  4249. package/dist/modules/promotion/services/getCouponsBaseQuery.d.ts +1 -0
  4250. package/dist/modules/promotion/services/getCouponsBaseQuery.js +6 -0
  4251. package/dist/modules/promotion/services/getCouponsBaseQuery.js.map +1 -0
  4252. package/dist/modules/promotion/services/registerCartItemPromotionFields.d.ts +1 -0
  4253. package/dist/modules/promotion/services/registerCartItemPromotionFields.js +66 -0
  4254. package/dist/modules/promotion/services/registerCartItemPromotionFields.js.map +1 -0
  4255. package/dist/modules/promotion/services/registerCartPromotionFields.d.ts +1 -0
  4256. package/dist/modules/promotion/services/registerCartPromotionFields.js +114 -0
  4257. package/dist/modules/promotion/services/registerCartPromotionFields.js.map +1 -0
  4258. package/dist/modules/promotion/services/registerDefaultCalculators.d.ts +1 -0
  4259. package/dist/modules/promotion/services/registerDefaultCalculators.js +289 -0
  4260. package/dist/modules/promotion/services/registerDefaultCalculators.js.map +1 -0
  4261. package/dist/modules/promotion/services/registerDefaultCouponCollectionFilters.d.ts +5 -0
  4262. package/dist/modules/promotion/services/registerDefaultCouponCollectionFilters.js +69 -0
  4263. package/dist/modules/promotion/services/registerDefaultCouponCollectionFilters.js.map +1 -0
  4264. package/dist/modules/promotion/services/registerDefaultValidators.d.ts +1 -0
  4265. package/dist/modules/promotion/services/registerDefaultValidators.js +387 -0
  4266. package/dist/modules/promotion/services/registerDefaultValidators.js.map +1 -0
  4267. package/dist/modules/setting/api/saveSetting/[context]bodyParser[auth].d.ts +2 -0
  4268. package/dist/modules/setting/api/saveSetting/[context]bodyParser[auth].js +5 -0
  4269. package/dist/modules/setting/api/saveSetting/[context]bodyParser[auth].js.map +1 -0
  4270. package/dist/modules/setting/api/saveSetting/route.json +5 -0
  4271. package/dist/modules/setting/api/saveSetting/saveSetting.d.ts +2 -0
  4272. package/dist/modules/setting/api/saveSetting/saveSetting.js +53 -0
  4273. package/dist/modules/setting/api/saveSetting/saveSetting.js.map +1 -0
  4274. package/dist/modules/setting/graphql/types/Setting/Setting.graphql +10 -0
  4275. package/dist/modules/setting/graphql/types/Setting/Setting.resolvers.d.ts +11 -0
  4276. package/dist/modules/setting/graphql/types/Setting/Setting.resolvers.js +21 -0
  4277. package/dist/modules/setting/graphql/types/Setting/Setting.resolvers.js.map +1 -0
  4278. package/dist/modules/setting/graphql/types/ShippingSetting/ShippingSetting.graphql +4 -0
  4279. package/dist/modules/setting/graphql/types/ShippingSetting/ShippingSetting.resolvers.d.ts +7 -0
  4280. package/dist/modules/setting/graphql/types/ShippingSetting/ShippingSetting.resolvers.js +16 -0
  4281. package/dist/modules/setting/graphql/types/ShippingSetting/ShippingSetting.resolvers.js.map +1 -0
  4282. package/dist/modules/setting/graphql/types/StoreSetting/StoreSetting.graphql +14 -0
  4283. package/dist/modules/setting/graphql/types/StoreSetting/StoreSetting.resolvers.d.ts +17 -0
  4284. package/dist/modules/setting/graphql/types/StoreSetting/StoreSetting.resolvers.js +98 -0
  4285. package/dist/modules/setting/graphql/types/StoreSetting/StoreSetting.resolvers.js.map +1 -0
  4286. package/dist/modules/setting/migration/Version-1.0.0.d.ts +2 -0
  4287. package/dist/modules/setting/migration/Version-1.0.0.js +13 -0
  4288. package/dist/modules/setting/migration/Version-1.0.0.js.map +1 -0
  4289. package/dist/modules/setting/pages/admin/adminOverview/AdminOverview.d.ts +22 -0
  4290. package/dist/modules/setting/pages/admin/adminOverview/AdminOverview.js +99 -0
  4291. package/dist/modules/setting/pages/admin/adminOverview/AdminOverview.js.map +1 -0
  4292. package/dist/modules/setting/pages/admin/adminOverview/index.d.ts +2 -0
  4293. package/dist/modules/setting/pages/admin/adminOverview/index.js +8 -0
  4294. package/dist/modules/setting/pages/admin/adminOverview/index.js.map +1 -0
  4295. package/dist/modules/setting/pages/admin/adminOverview/route.json +4 -0
  4296. package/dist/modules/setting/pages/admin/all/AdminUserSettingMenu.d.ts +15 -0
  4297. package/dist/modules/setting/pages/admin/all/AdminUserSettingMenu.js +20 -0
  4298. package/dist/modules/setting/pages/admin/all/AdminUserSettingMenu.js.map +1 -0
  4299. package/dist/modules/setting/pages/admin/all/PaymentSettingMenu.d.ts +15 -0
  4300. package/dist/modules/setting/pages/admin/all/PaymentSettingMenu.js +20 -0
  4301. package/dist/modules/setting/pages/admin/all/PaymentSettingMenu.js.map +1 -0
  4302. package/dist/modules/setting/pages/admin/all/SettingMenuGroup.d.ts +15 -0
  4303. package/dist/modules/setting/pages/admin/all/SettingMenuGroup.js +20 -0
  4304. package/dist/modules/setting/pages/admin/all/SettingMenuGroup.js.map +1 -0
  4305. package/dist/modules/setting/pages/admin/all/StoreSettingMenu.d.ts +15 -0
  4306. package/dist/modules/setting/pages/admin/all/StoreSettingMenu.js +20 -0
  4307. package/dist/modules/setting/pages/admin/all/StoreSettingMenu.js.map +1 -0
  4308. package/dist/modules/setting/pages/admin/paymentSetting/PaymentSetting.d.ts +15 -0
  4309. package/dist/modules/setting/pages/admin/paymentSetting/PaymentSetting.js +35 -0
  4310. package/dist/modules/setting/pages/admin/paymentSetting/PaymentSetting.js.map +1 -0
  4311. package/dist/modules/setting/pages/admin/paymentSetting/index.d.ts +2 -0
  4312. package/dist/modules/setting/pages/admin/paymentSetting/index.js +8 -0
  4313. package/dist/modules/setting/pages/admin/paymentSetting/index.js.map +1 -0
  4314. package/dist/modules/setting/pages/admin/paymentSetting/route.json +4 -0
  4315. package/dist/modules/setting/pages/admin/storeSetting/StoreSetting.d.ts +27 -0
  4316. package/dist/modules/setting/pages/admin/storeSetting/StoreSetting.js +257 -0
  4317. package/dist/modules/setting/pages/admin/storeSetting/StoreSetting.js.map +1 -0
  4318. package/dist/modules/setting/pages/admin/storeSetting/index.d.ts +2 -0
  4319. package/dist/modules/setting/pages/admin/storeSetting/index.js +8 -0
  4320. package/dist/modules/setting/pages/admin/storeSetting/index.js.map +1 -0
  4321. package/dist/modules/setting/pages/admin/storeSetting/route.json +4 -0
  4322. package/dist/modules/setting/services/index.d.ts +1 -0
  4323. package/dist/modules/setting/services/index.js +2 -0
  4324. package/dist/modules/setting/services/index.js.map +1 -0
  4325. package/dist/modules/setting/services/setting.d.ts +6 -0
  4326. package/dist/modules/setting/services/setting.js +19 -0
  4327. package/dist/modules/setting/services/setting.js.map +1 -0
  4328. package/dist/modules/stripe/api/capturePaymentIntent/[context]bodyParser[auth].d.ts +2 -0
  4329. package/dist/modules/stripe/api/capturePaymentIntent/[context]bodyParser[auth].js +5 -0
  4330. package/dist/modules/stripe/api/capturePaymentIntent/[context]bodyParser[auth].js.map +1 -0
  4331. package/dist/modules/stripe/api/capturePaymentIntent/capturePaymentIntent.d.ts +2 -0
  4332. package/dist/modules/stripe/api/capturePaymentIntent/capturePaymentIntent.js +93 -0
  4333. package/dist/modules/stripe/api/capturePaymentIntent/capturePaymentIntent.js.map +1 -0
  4334. package/dist/modules/stripe/api/capturePaymentIntent/payloadSchema.json +15 -0
  4335. package/dist/modules/stripe/api/capturePaymentIntent/route.json +5 -0
  4336. package/dist/modules/stripe/api/createPaymentIntent/[context]bodyParser[auth].d.ts +2 -0
  4337. package/dist/modules/stripe/api/createPaymentIntent/[context]bodyParser[auth].js +5 -0
  4338. package/dist/modules/stripe/api/createPaymentIntent/[context]bodyParser[auth].js.map +1 -0
  4339. package/dist/modules/stripe/api/createPaymentIntent/createPaymentIntent.d.ts +2 -0
  4340. package/dist/modules/stripe/api/createPaymentIntent/createPaymentIntent.js +56 -0
  4341. package/dist/modules/stripe/api/createPaymentIntent/createPaymentIntent.js.map +1 -0
  4342. package/dist/modules/stripe/api/createPaymentIntent/payloadSchema.json +19 -0
  4343. package/dist/modules/stripe/api/createPaymentIntent/route.json +5 -0
  4344. package/dist/modules/stripe/api/refundPaymentIntent/[context]bodyParser[auth].d.ts +2 -0
  4345. package/dist/modules/stripe/api/refundPaymentIntent/[context]bodyParser[auth].js +5 -0
  4346. package/dist/modules/stripe/api/refundPaymentIntent/[context]bodyParser[auth].js.map +1 -0
  4347. package/dist/modules/stripe/api/refundPaymentIntent/payloadSchema.json +22 -0
  4348. package/dist/modules/stripe/api/refundPaymentIntent/refundPaymentIntent.d.ts +2 -0
  4349. package/dist/modules/stripe/api/refundPaymentIntent/refundPaymentIntent.js +89 -0
  4350. package/dist/modules/stripe/api/refundPaymentIntent/refundPaymentIntent.js.map +1 -0
  4351. package/dist/modules/stripe/api/refundPaymentIntent/route.json +5 -0
  4352. package/dist/modules/stripe/api/stripeWebHook/[bodyJson]webhook.d.ts +2 -0
  4353. package/dist/modules/stripe/api/stripeWebHook/[bodyJson]webhook.js +127 -0
  4354. package/dist/modules/stripe/api/stripeWebHook/[bodyJson]webhook.js.map +1 -0
  4355. package/dist/modules/stripe/api/stripeWebHook/bodyJson.d.ts +2 -0
  4356. package/dist/modules/stripe/api/stripeWebHook/bodyJson.js +5 -0
  4357. package/dist/modules/stripe/api/stripeWebHook/bodyJson.js.map +1 -0
  4358. package/dist/modules/stripe/api/stripeWebHook/route.json +5 -0
  4359. package/dist/modules/stripe/bootstrap.d.ts +2 -0
  4360. package/dist/modules/stripe/bootstrap.js +75 -0
  4361. package/dist/modules/stripe/bootstrap.js.map +1 -0
  4362. package/dist/modules/stripe/graphql/types/StripeSetting/StripeSetting.admin.graphql +4 -0
  4363. package/dist/modules/stripe/graphql/types/StripeSetting/StripeSetting.admin.resolvers.d.ts +12 -0
  4364. package/dist/modules/stripe/graphql/types/StripeSetting/StripeSetting.admin.resolvers.js +55 -0
  4365. package/dist/modules/stripe/graphql/types/StripeSetting/StripeSetting.admin.resolvers.js.map +1 -0
  4366. package/dist/modules/stripe/graphql/types/StripeSetting/StripeSetting.graphql +6 -0
  4367. package/dist/modules/stripe/graphql/types/StripeSetting/StripeSetting.resolvers.d.ts +9 -0
  4368. package/dist/modules/stripe/graphql/types/StripeSetting/StripeSetting.resolvers.js +50 -0
  4369. package/dist/modules/stripe/graphql/types/StripeSetting/StripeSetting.resolvers.js.map +1 -0
  4370. package/dist/modules/stripe/pages/admin/orderEdit/StripeCaptureButton.d.ts +21 -0
  4371. package/dist/modules/stripe/pages/admin/orderEdit/StripeCaptureButton.js +54 -0
  4372. package/dist/modules/stripe/pages/admin/orderEdit/StripeCaptureButton.js.map +1 -0
  4373. package/dist/modules/stripe/pages/admin/orderEdit/StripeRefundButton.d.ts +22 -0
  4374. package/dist/modules/stripe/pages/admin/orderEdit/StripeRefundButton.js +97 -0
  4375. package/dist/modules/stripe/pages/admin/orderEdit/StripeRefundButton.js.map +1 -0
  4376. package/dist/modules/stripe/pages/admin/paymentSetting/StripePayment.d.ts +22 -0
  4377. package/dist/modules/stripe/pages/admin/paymentSetting/StripePayment.js +74 -0
  4378. package/dist/modules/stripe/pages/admin/paymentSetting/StripePayment.js.map +1 -0
  4379. package/dist/modules/stripe/pages/frontStore/checkout/Stripe.d.ts +24 -0
  4380. package/dist/modules/stripe/pages/frontStore/checkout/Stripe.js +112 -0
  4381. package/dist/modules/stripe/pages/frontStore/checkout/Stripe.js.map +1 -0
  4382. package/dist/modules/stripe/pages/frontStore/stripeReturn/index.d.ts +2 -0
  4383. package/dist/modules/stripe/pages/frontStore/stripeReturn/index.js +66 -0
  4384. package/dist/modules/stripe/pages/frontStore/stripeReturn/index.js.map +1 -0
  4385. package/dist/modules/stripe/pages/frontStore/stripeReturn/route.json +4 -0
  4386. package/dist/modules/stripe/services/cancelPayment.d.ts +1 -0
  4387. package/dist/modules/stripe/services/cancelPayment.js +40 -0
  4388. package/dist/modules/stripe/services/cancelPayment.js.map +1 -0
  4389. package/dist/modules/tax/api/createTaxClass/[context]borderParser[auth].d.ts +2 -0
  4390. package/dist/modules/tax/api/createTaxClass/[context]borderParser[auth].js +5 -0
  4391. package/dist/modules/tax/api/createTaxClass/[context]borderParser[auth].js.map +1 -0
  4392. package/dist/modules/tax/api/createTaxClass/createTaxClass.d.ts +2 -0
  4393. package/dist/modules/tax/api/createTaxClass/createTaxClass.js +31 -0
  4394. package/dist/modules/tax/api/createTaxClass/createTaxClass.js.map +1 -0
  4395. package/dist/modules/tax/api/createTaxClass/payloadSchema.json +10 -0
  4396. package/dist/modules/tax/api/createTaxClass/route.json +5 -0
  4397. package/dist/modules/tax/api/createTaxRate/[context]borderParser[auth].d.ts +2 -0
  4398. package/dist/modules/tax/api/createTaxRate/[context]borderParser[auth].js +5 -0
  4399. package/dist/modules/tax/api/createTaxRate/[context]borderParser[auth].js.map +1 -0
  4400. package/dist/modules/tax/api/createTaxRate/createTaxRate.d.ts +2 -0
  4401. package/dist/modules/tax/api/createTaxRate/createTaxRate.js +53 -0
  4402. package/dist/modules/tax/api/createTaxRate/createTaxRate.js.map +1 -0
  4403. package/dist/modules/tax/api/createTaxRate/payloadSchema.json +31 -0
  4404. package/dist/modules/tax/api/createTaxRate/route.json +5 -0
  4405. package/dist/modules/tax/api/deleteTaxRate/[context]borderParser[auth].d.ts +2 -0
  4406. package/dist/modules/tax/api/deleteTaxRate/[context]borderParser[auth].js +5 -0
  4407. package/dist/modules/tax/api/deleteTaxRate/[context]borderParser[auth].js.map +1 -0
  4408. package/dist/modules/tax/api/deleteTaxRate/deleteTaxRate.d.ts +2 -0
  4409. package/dist/modules/tax/api/deleteTaxRate/deleteTaxRate.js +41 -0
  4410. package/dist/modules/tax/api/deleteTaxRate/deleteTaxRate.js.map +1 -0
  4411. package/dist/modules/tax/api/deleteTaxRate/route.json +5 -0
  4412. package/dist/modules/tax/api/updateTaxClass/[context]borderParser[auth].d.ts +2 -0
  4413. package/dist/modules/tax/api/updateTaxClass/[context]borderParser[auth].js +5 -0
  4414. package/dist/modules/tax/api/updateTaxClass/[context]borderParser[auth].js.map +1 -0
  4415. package/dist/modules/tax/api/updateTaxClass/payloadSchema.json +10 -0
  4416. package/dist/modules/tax/api/updateTaxClass/route.json +5 -0
  4417. package/dist/modules/tax/api/updateTaxClass/updateTaxClass.d.ts +2 -0
  4418. package/dist/modules/tax/api/updateTaxClass/updateTaxClass.js +48 -0
  4419. package/dist/modules/tax/api/updateTaxClass/updateTaxClass.js.map +1 -0
  4420. package/dist/modules/tax/api/updateTaxRate/[context]borderParser[auth].d.ts +2 -0
  4421. package/dist/modules/tax/api/updateTaxRate/[context]borderParser[auth].js +5 -0
  4422. package/dist/modules/tax/api/updateTaxRate/[context]borderParser[auth].js.map +1 -0
  4423. package/dist/modules/tax/api/updateTaxRate/payloadSchema.json +31 -0
  4424. package/dist/modules/tax/api/updateTaxRate/route.json +5 -0
  4425. package/dist/modules/tax/api/updateTaxRate/updateTaxRate.d.ts +2 -0
  4426. package/dist/modules/tax/api/updateTaxRate/updateTaxRate.js +53 -0
  4427. package/dist/modules/tax/api/updateTaxRate/updateTaxRate.js.map +1 -0
  4428. package/dist/modules/tax/bootstrap.d.ts +2 -0
  4429. package/dist/modules/tax/bootstrap.js +55 -0
  4430. package/dist/modules/tax/bootstrap.js.map +1 -0
  4431. package/dist/modules/tax/graphql/types/Product/Price/ProductPrice.resolvers.d.ts +9 -0
  4432. package/dist/modules/tax/graphql/types/Product/Price/ProductPrice.resolvers.js +13 -0
  4433. package/dist/modules/tax/graphql/types/Product/Price/ProductPrice.resolvers.js.map +1 -0
  4434. package/dist/modules/tax/graphql/types/TaxClass/TaxClass.admin.graphql +43 -0
  4435. package/dist/modules/tax/graphql/types/TaxClass/TaxClass.admin.resolvers.d.ts +26 -0
  4436. package/dist/modules/tax/graphql/types/TaxClass/TaxClass.admin.resolvers.js +36 -0
  4437. package/dist/modules/tax/graphql/types/TaxClass/TaxClass.admin.resolvers.js.map +1 -0
  4438. package/dist/modules/tax/graphql/types/TaxSetting/TaxSetting.admin.graphql +5 -0
  4439. package/dist/modules/tax/graphql/types/TaxSetting/TaxSetting.admin.resolvers.d.ts +8 -0
  4440. package/dist/modules/tax/graphql/types/TaxSetting/TaxSetting.admin.resolvers.js +32 -0
  4441. package/dist/modules/tax/graphql/types/TaxSetting/TaxSetting.admin.resolvers.js.map +1 -0
  4442. package/dist/modules/tax/graphql/types/TaxSetting/TaxSetting.graphql +3 -0
  4443. package/dist/modules/tax/graphql/types/TaxSetting/TaxSetting.resolvers.d.ts +6 -0
  4444. package/dist/modules/tax/graphql/types/TaxSetting/TaxSetting.resolvers.js +7 -0
  4445. package/dist/modules/tax/graphql/types/TaxSetting/TaxSetting.resolvers.js.map +1 -0
  4446. package/dist/modules/tax/migration/Version-1.0.0.d.ts +2 -0
  4447. package/dist/modules/tax/migration/Version-1.0.0.js +65 -0
  4448. package/dist/modules/tax/migration/Version-1.0.0.js.map +1 -0
  4449. package/dist/modules/tax/pages/admin/all/TaxSettingMenu.d.ts +15 -0
  4450. package/dist/modules/tax/pages/admin/all/TaxSettingMenu.js +20 -0
  4451. package/dist/modules/tax/pages/admin/all/TaxSettingMenu.js.map +1 -0
  4452. package/dist/modules/tax/pages/admin/taxSetting/TaxSetting.d.ts +19 -0
  4453. package/dist/modules/tax/pages/admin/taxSetting/TaxSetting.js +148 -0
  4454. package/dist/modules/tax/pages/admin/taxSetting/TaxSetting.js.map +1 -0
  4455. package/dist/modules/tax/pages/admin/taxSetting/index.d.ts +2 -0
  4456. package/dist/modules/tax/pages/admin/taxSetting/index.js +8 -0
  4457. package/dist/modules/tax/pages/admin/taxSetting/index.js.map +1 -0
  4458. package/dist/modules/tax/pages/admin/taxSetting/route.json +4 -0
  4459. package/dist/modules/tax/services/TaxClassCollection.d.ts +11 -0
  4460. package/dist/modules/tax/services/TaxClassCollection.js +39 -0
  4461. package/dist/modules/tax/services/TaxClassCollection.js.map +1 -0
  4462. package/dist/modules/tax/services/calculateTaxAmount.d.ts +1 -0
  4463. package/dist/modules/tax/services/calculateTaxAmount.js +52 -0
  4464. package/dist/modules/tax/services/calculateTaxAmount.js.map +1 -0
  4465. package/dist/modules/tax/services/getTaxPercent.d.ts +1 -0
  4466. package/dist/modules/tax/services/getTaxPercent.js +14 -0
  4467. package/dist/modules/tax/services/getTaxPercent.js.map +1 -0
  4468. package/dist/modules/tax/services/getTaxRates.d.ts +1 -0
  4469. package/dist/modules/tax/services/getTaxRates.js +55 -0
  4470. package/dist/modules/tax/services/getTaxRates.js.map +1 -0
  4471. package/dist/modules/tax/services/registerCartItemTaxPercentField.d.ts +1 -0
  4472. package/dist/modules/tax/services/registerCartItemTaxPercentField.js +60 -0
  4473. package/dist/modules/tax/services/registerCartItemTaxPercentField.js.map +1 -0
  4474. package/dist/modules/tax/services/registerDefaultTaxClassCollectionFilters.d.ts +5 -0
  4475. package/dist/modules/tax/services/registerDefaultTaxClassCollectionFilters.js +38 -0
  4476. package/dist/modules/tax/services/registerDefaultTaxClassCollectionFilters.js.map +1 -0
  4477. package/dist/types/componentLayout.d.ts +4 -0
  4478. package/dist/types/componentLayout.js +2 -0
  4479. package/dist/types/componentLayout.js.map +1 -0
  4480. package/dist/types/cronjob.d.ts +6 -0
  4481. package/dist/types/cronjob.js +2 -0
  4482. package/dist/types/cronjob.js.map +1 -0
  4483. package/dist/types/extension.d.ts +8 -0
  4484. package/dist/types/extension.js +2 -0
  4485. package/dist/types/extension.js.map +1 -0
  4486. package/dist/types/graphqlFilter.d.ts +6 -0
  4487. package/dist/types/graphqlFilter.js +2 -0
  4488. package/dist/types/graphqlFilter.js.map +1 -0
  4489. package/dist/types/index.d.ts +9 -0
  4490. package/dist/types/index.js +10 -0
  4491. package/dist/types/index.js.map +1 -0
  4492. package/dist/types/middleware.d.ts +26 -0
  4493. package/dist/types/middleware.js +2 -0
  4494. package/dist/types/middleware.js.map +1 -0
  4495. package/dist/types/order.d.ts +22 -0
  4496. package/dist/types/order.js +2 -0
  4497. package/dist/types/order.js.map +1 -0
  4498. package/dist/types/request.d.ts +51 -0
  4499. package/dist/types/request.js +2 -0
  4500. package/dist/types/request.js.map +1 -0
  4501. package/dist/types/response.d.ts +8 -0
  4502. package/dist/types/response.js +2 -0
  4503. package/dist/types/response.js.map +1 -0
  4504. package/dist/types/route.d.ts +11 -0
  4505. package/dist/types/route.js +2 -0
  4506. package/dist/types/route.js.map +1 -0
  4507. package/dist/types/widget.d.ts +16 -0
  4508. package/dist/types/widget.js +2 -0
  4509. package/dist/types/widget.js.map +1 -0
  4510. package/package.json +242 -0
@@ -0,0 +1,3683 @@
1
+ import PropTypes from 'prop-types';
2
+ import React from 'react';
3
+ function ProvinceOptions(props) {
4
+ const { country, children } = props;
5
+ const options = [
6
+ { value: 'AD-07', country_code: 'AD', text: 'Andorra la Vella' },
7
+ { value: 'AD-02', country_code: 'AD', text: 'Canillo' },
8
+ { value: 'AD-03', country_code: 'AD', text: 'Encamp' },
9
+ { value: 'AD-08', country_code: 'AD', text: 'Escaldes-Engordany' },
10
+ { value: 'AD-04', country_code: 'AD', text: 'La Massana' },
11
+ { value: 'AD-05', country_code: 'AD', text: 'Ordino' },
12
+ { value: 'AD-06', country_code: 'AD', text: 'Sant Julia de Loria' },
13
+ { value: 'AE-AJ', country_code: 'AE', text: "'Ajman" },
14
+ { value: 'AE-AZ', country_code: 'AE', text: 'Abu Zaby' },
15
+ { value: 'AE-FU', country_code: 'AE', text: 'Al Fujayrah' },
16
+ { value: 'AE-SH', country_code: 'AE', text: 'Ash Shariqah' },
17
+ { value: 'AE-DU', country_code: 'AE', text: 'Dubayy' },
18
+ { value: 'AE-RK', country_code: 'AE', text: "Ra's al Khaymah" },
19
+ { value: 'AE-UQ', country_code: 'AE', text: 'Umm al Qaywayn' },
20
+ { value: 'AF-BDS', country_code: 'AF', text: 'Badakhshan' },
21
+ { value: 'AF-BDG', country_code: 'AF', text: 'Badghis' },
22
+ { value: 'AF-BGL', country_code: 'AF', text: 'Baghlan' },
23
+ { value: 'AF-BAL', country_code: 'AF', text: 'Balkh' },
24
+ { value: 'AF-BAM', country_code: 'AF', text: 'Bamyan' },
25
+ { value: 'AF-DAY', country_code: 'AF', text: 'Daykundi' },
26
+ { value: 'AF-FRA', country_code: 'AF', text: 'Farah' },
27
+ { value: 'AF-FYB', country_code: 'AF', text: 'Faryab' },
28
+ { value: 'AF-GHA', country_code: 'AF', text: 'Ghazni' },
29
+ { value: 'AF-GHO', country_code: 'AF', text: 'Ghor' },
30
+ { value: 'AF-HEL', country_code: 'AF', text: 'Helmand' },
31
+ { value: 'AF-HER', country_code: 'AF', text: 'Herat' },
32
+ { value: 'AF-JOW', country_code: 'AF', text: 'Jowzjan' },
33
+ { value: 'AF-KAB', country_code: 'AF', text: 'Kabul' },
34
+ { value: 'AF-KAN', country_code: 'AF', text: 'Kandahar' },
35
+ { value: 'AF-KAP', country_code: 'AF', text: 'Kapisa' },
36
+ { value: 'AF-KHO', country_code: 'AF', text: 'Khost' },
37
+ { value: 'AF-KNR', country_code: 'AF', text: 'Kunar' },
38
+ { value: 'AF-KDZ', country_code: 'AF', text: 'Kunduz' },
39
+ { value: 'AF-LAG', country_code: 'AF', text: 'Laghman' },
40
+ { value: 'AF-LOG', country_code: 'AF', text: 'Logar' },
41
+ { value: 'AF-NAN', country_code: 'AF', text: 'Nangarhar' },
42
+ { value: 'AF-NIM', country_code: 'AF', text: 'Nimroz' },
43
+ { value: 'AF-NUR', country_code: 'AF', text: 'Nuristan' },
44
+ { value: 'AF-PKA', country_code: 'AF', text: 'Paktika' },
45
+ { value: 'AF-PIA', country_code: 'AF', text: 'Paktiya' },
46
+ { value: 'AF-PAN', country_code: 'AF', text: 'Panjshayr' },
47
+ { value: 'AF-PAR', country_code: 'AF', text: 'Parwan' },
48
+ { value: 'AF-SAM', country_code: 'AF', text: 'Samangan' },
49
+ { value: 'AF-SAR', country_code: 'AF', text: 'Sar-e Pul' },
50
+ { value: 'AF-TAK', country_code: 'AF', text: 'Takhar' },
51
+ { value: 'AF-URU', country_code: 'AF', text: 'Uruzgan' },
52
+ { value: 'AF-WAR', country_code: 'AF', text: 'Wardak' },
53
+ { value: 'AF-ZAB', country_code: 'AF', text: 'Zabul' },
54
+ { value: 'AG-04', country_code: 'AG', text: 'Saint John' },
55
+ { value: 'AG-05', country_code: 'AG', text: 'Saint Mary' },
56
+ { value: 'AG-06', country_code: 'AG', text: 'Saint Paul' },
57
+ { value: 'AL-01', country_code: 'AL', text: 'Berat' },
58
+ { value: 'AL-09', country_code: 'AL', text: 'Diber' },
59
+ { value: 'AL-02', country_code: 'AL', text: 'Durres' },
60
+ { value: 'AL-03', country_code: 'AL', text: 'Elbasan' },
61
+ { value: 'AL-04', country_code: 'AL', text: 'Fier' },
62
+ { value: 'AL-05', country_code: 'AL', text: 'Gjirokaster' },
63
+ { value: 'AL-06', country_code: 'AL', text: 'Korce' },
64
+ { value: 'AL-07', country_code: 'AL', text: 'Kukes' },
65
+ { value: 'AL-08', country_code: 'AL', text: 'Lezhe' },
66
+ { value: 'AL-10', country_code: 'AL', text: 'Shkoder' },
67
+ { value: 'AL-11', country_code: 'AL', text: 'Tirane' },
68
+ { value: 'AL-12', country_code: 'AL', text: 'Vlore' },
69
+ { value: 'AM-AG', country_code: 'AM', text: 'Aragacotn' },
70
+ { value: 'AM-AR', country_code: 'AM', text: 'Ararat' },
71
+ { value: 'AM-AV', country_code: 'AM', text: 'Armavir' },
72
+ { value: 'AM-ER', country_code: 'AM', text: 'Erevan' },
73
+ { value: 'AM-GR', country_code: 'AM', text: "Gegark'unik'" },
74
+ { value: 'AM-KT', country_code: 'AM', text: "Kotayk'" },
75
+ { value: 'AM-LO', country_code: 'AM', text: 'Lori' },
76
+ { value: 'AM-SH', country_code: 'AM', text: 'Sirak' },
77
+ { value: 'AM-SU', country_code: 'AM', text: "Syunik'" },
78
+ { value: 'AM-TV', country_code: 'AM', text: 'Tavus' },
79
+ { value: 'AM-VD', country_code: 'AM', text: 'Vayoc Jor' },
80
+ { value: 'AO-BGO', country_code: 'AO', text: 'Bengo' },
81
+ { value: 'AO-BGU', country_code: 'AO', text: 'Benguela' },
82
+ { value: 'AO-BIE', country_code: 'AO', text: 'Bie' },
83
+ { value: 'AO-CAB', country_code: 'AO', text: 'Cabinda' },
84
+ { value: 'AO-CNN', country_code: 'AO', text: 'Cunene' },
85
+ { value: 'AO-HUA', country_code: 'AO', text: 'Huambo' },
86
+ { value: 'AO-HUI', country_code: 'AO', text: 'Huila' },
87
+ { value: 'AO-CCU', country_code: 'AO', text: 'Kuando Kubango' },
88
+ { value: 'AO-CNO', country_code: 'AO', text: 'Kwanza Norte' },
89
+ { value: 'AO-CUS', country_code: 'AO', text: 'Kwanza Sul' },
90
+ { value: 'AO-LUA', country_code: 'AO', text: 'Luanda' },
91
+ { value: 'AO-LNO', country_code: 'AO', text: 'Lunda Norte' },
92
+ { value: 'AO-LSU', country_code: 'AO', text: 'Lunda Sul' },
93
+ { value: 'AO-MAL', country_code: 'AO', text: 'Malange' },
94
+ { value: 'AO-MOX', country_code: 'AO', text: 'Moxico' },
95
+ { value: 'AO-NAM', country_code: 'AO', text: 'Namibe' },
96
+ { value: 'AO-UIG', country_code: 'AO', text: 'Uige' },
97
+ { value: 'AO-ZAI', country_code: 'AO', text: 'Zaire' },
98
+ { value: 'AR-B', country_code: 'AR', text: 'Buenos Aires' },
99
+ { value: 'AR-K', country_code: 'AR', text: 'Catamarca' },
100
+ { value: 'AR-H', country_code: 'AR', text: 'Chaco' },
101
+ { value: 'AR-U', country_code: 'AR', text: 'Chubut' },
102
+ {
103
+ value: 'AR-C',
104
+ country_code: 'AR',
105
+ text: 'Ciudad Autonoma de Buenos Aires'
106
+ },
107
+ { value: 'AR-X', country_code: 'AR', text: 'Cordoba' },
108
+ { value: 'AR-W', country_code: 'AR', text: 'Corrientes' },
109
+ { value: 'AR-E', country_code: 'AR', text: 'Entre Rios' },
110
+ { value: 'AR-P', country_code: 'AR', text: 'Formosa' },
111
+ { value: 'AR-Y', country_code: 'AR', text: 'Jujuy' },
112
+ { value: 'AR-L', country_code: 'AR', text: 'La Pampa' },
113
+ { value: 'AR-F', country_code: 'AR', text: 'La Rioja' },
114
+ { value: 'AR-M', country_code: 'AR', text: 'Mendoza' },
115
+ { value: 'AR-N', country_code: 'AR', text: 'Misiones' },
116
+ { value: 'AR-Q', country_code: 'AR', text: 'Neuquen' },
117
+ { value: 'AR-R', country_code: 'AR', text: 'Rio Negro' },
118
+ { value: 'AR-A', country_code: 'AR', text: 'Salta' },
119
+ { value: 'AR-J', country_code: 'AR', text: 'San Juan' },
120
+ { value: 'AR-D', country_code: 'AR', text: 'San Luis' },
121
+ { value: 'AR-Z', country_code: 'AR', text: 'Santa Cruz' },
122
+ { value: 'AR-S', country_code: 'AR', text: 'Santa Fe' },
123
+ { value: 'AR-G', country_code: 'AR', text: 'Santiago del Estero' },
124
+ { value: 'AR-V', country_code: 'AR', text: 'Tierra del Fuego' },
125
+ { value: 'AR-T', country_code: 'AR', text: 'Tucuman' },
126
+ { value: 'AT-1', country_code: 'AT', text: 'Burgenland' },
127
+ { value: 'AT-2', country_code: 'AT', text: 'Karnten' },
128
+ { value: 'AT-3', country_code: 'AT', text: 'Niederosterreich' },
129
+ { value: 'AT-4', country_code: 'AT', text: 'Oberosterreich' },
130
+ { value: 'AT-5', country_code: 'AT', text: 'Salzburg' },
131
+ { value: 'AT-6', country_code: 'AT', text: 'Steiermark' },
132
+ { value: 'AT-7', country_code: 'AT', text: 'Tirol' },
133
+ { value: 'AT-8', country_code: 'AT', text: 'Vorarlberg' },
134
+ { value: 'AT-9', country_code: 'AT', text: 'Wien' },
135
+ {
136
+ value: 'AU-ACT',
137
+ country_code: 'AU',
138
+ text: 'Australian Capital Territory'
139
+ },
140
+ { value: 'AU-NSW', country_code: 'AU', text: 'New South Wales' },
141
+ { value: 'AU-NT', country_code: 'AU', text: 'Northern Territory' },
142
+ { value: 'AU-QLD', country_code: 'AU', text: 'Queensland' },
143
+ { value: 'AU-SA', country_code: 'AU', text: 'South Australia' },
144
+ { value: 'AU-TAS', country_code: 'AU', text: 'Tasmania' },
145
+ { value: 'AU-VIC', country_code: 'AU', text: 'Victoria' },
146
+ { value: 'AU-WA', country_code: 'AU', text: 'Western Australia' },
147
+ { value: 'AZ-ABS', country_code: 'AZ', text: 'Abseron' },
148
+ { value: 'AZ-AGC', country_code: 'AZ', text: 'Agcabadi' },
149
+ { value: 'AZ-AGM', country_code: 'AZ', text: 'Agdam' },
150
+ { value: 'AZ-AGS', country_code: 'AZ', text: 'Agdas' },
151
+ { value: 'AZ-AGA', country_code: 'AZ', text: 'Agstafa' },
152
+ { value: 'AZ-AGU', country_code: 'AZ', text: 'Agsu' },
153
+ { value: 'AZ-AST', country_code: 'AZ', text: 'Astara' },
154
+ { value: 'AZ-BA', country_code: 'AZ', text: 'Baki' },
155
+ { value: 'AZ-BAL', country_code: 'AZ', text: 'Balakan' },
156
+ { value: 'AZ-BAR', country_code: 'AZ', text: 'Barda' },
157
+ { value: 'AZ-BEY', country_code: 'AZ', text: 'Beylaqan' },
158
+ { value: 'AZ-BIL', country_code: 'AZ', text: 'Bilasuvar' },
159
+ { value: 'AZ-CAB', country_code: 'AZ', text: 'Cabrayil' },
160
+ { value: 'AZ-CAL', country_code: 'AZ', text: 'Calilabad' },
161
+ { value: 'AZ-DAS', country_code: 'AZ', text: 'Daskasan' },
162
+ { value: 'AZ-FUZ', country_code: 'AZ', text: 'Fuzuli' },
163
+ { value: 'AZ-GAD', country_code: 'AZ', text: 'Gadabay' },
164
+ { value: 'AZ-GA', country_code: 'AZ', text: 'Ganca' },
165
+ { value: 'AZ-GOR', country_code: 'AZ', text: 'Goranboy' },
166
+ { value: 'AZ-GOY', country_code: 'AZ', text: 'Goycay' },
167
+ { value: 'AZ-GYG', country_code: 'AZ', text: 'Goygol' },
168
+ { value: 'AZ-HAC', country_code: 'AZ', text: 'Haciqabul' },
169
+ { value: 'AZ-IMI', country_code: 'AZ', text: 'Imisli' },
170
+ { value: 'AZ-ISM', country_code: 'AZ', text: 'Ismayilli' },
171
+ { value: 'AZ-KAL', country_code: 'AZ', text: 'Kalbacar' },
172
+ { value: 'AZ-LAC', country_code: 'AZ', text: 'Lacin' },
173
+ { value: 'AZ-LA', country_code: 'AZ', text: 'Lankaran' },
174
+ { value: 'AZ-LER', country_code: 'AZ', text: 'Lerik' },
175
+ { value: 'AZ-MAS', country_code: 'AZ', text: 'Masalli' },
176
+ { value: 'AZ-MI', country_code: 'AZ', text: 'Mingacevir' },
177
+ { value: 'AZ-NA', country_code: 'AZ', text: 'Naftalan' },
178
+ { value: 'AZ-NX', country_code: 'AZ', text: 'Naxcivan' },
179
+ { value: 'AZ-NEF', country_code: 'AZ', text: 'Neftcala' },
180
+ { value: 'AZ-OGU', country_code: 'AZ', text: 'Oguz' },
181
+ { value: 'AZ-QAB', country_code: 'AZ', text: 'Qabala' },
182
+ { value: 'AZ-QAX', country_code: 'AZ', text: 'Qax' },
183
+ { value: 'AZ-QAZ', country_code: 'AZ', text: 'Qazax' },
184
+ { value: 'AZ-QOB', country_code: 'AZ', text: 'Qobustan' },
185
+ { value: 'AZ-QBA', country_code: 'AZ', text: 'Quba' },
186
+ { value: 'AZ-QBI', country_code: 'AZ', text: 'Qubadli' },
187
+ { value: 'AZ-QUS', country_code: 'AZ', text: 'Qusar' },
188
+ { value: 'AZ-SAT', country_code: 'AZ', text: 'Saatli' },
189
+ { value: 'AZ-SAB', country_code: 'AZ', text: 'Sabirabad' },
190
+ { value: 'AZ-SA', country_code: 'AZ', text: 'Saki' },
191
+ { value: 'AZ-SAL', country_code: 'AZ', text: 'Salyan' },
192
+ { value: 'AZ-SMI', country_code: 'AZ', text: 'Samaxi' },
193
+ { value: 'AZ-SKR', country_code: 'AZ', text: 'Samkir' },
194
+ { value: 'AZ-SMX', country_code: 'AZ', text: 'Samux' },
195
+ { value: 'AZ-SR', country_code: 'AZ', text: 'Sirvan' },
196
+ { value: 'AZ-SM', country_code: 'AZ', text: 'Sumqayit' },
197
+ { value: 'AZ-SUS', country_code: 'AZ', text: 'Susa' },
198
+ { value: 'AZ-TAR', country_code: 'AZ', text: 'Tartar' },
199
+ { value: 'AZ-TOV', country_code: 'AZ', text: 'Tovuz' },
200
+ { value: 'AZ-UCA', country_code: 'AZ', text: 'Ucar' },
201
+ { value: 'AZ-XAC', country_code: 'AZ', text: 'Xacmaz' },
202
+ { value: 'AZ-XA', country_code: 'AZ', text: 'Xankandi' },
203
+ { value: 'AZ-XIZ', country_code: 'AZ', text: 'Xizi' },
204
+ { value: 'AZ-XCI', country_code: 'AZ', text: 'Xocali' },
205
+ { value: 'AZ-XVD', country_code: 'AZ', text: 'Xocavand' },
206
+ { value: 'AZ-YAR', country_code: 'AZ', text: 'Yardimli' },
207
+ { value: 'AZ-YE', country_code: 'AZ', text: 'Yevlax' },
208
+ { value: 'AZ-ZAN', country_code: 'AZ', text: 'Zangilan' },
209
+ { value: 'AZ-ZAQ', country_code: 'AZ', text: 'Zaqatala' },
210
+ { value: 'AZ-ZAR', country_code: 'AZ', text: 'Zardab' },
211
+ {
212
+ value: 'BA-BIH',
213
+ country_code: 'BA',
214
+ text: 'Federacija Bosne i Hercegovine'
215
+ },
216
+ { value: 'BA-SRP', country_code: 'BA', text: 'Republika Srpska' },
217
+ { value: 'BB-01', country_code: 'BB', text: 'Christ Church' },
218
+ { value: 'BB-04', country_code: 'BB', text: 'Saint James' },
219
+ { value: 'BB-06', country_code: 'BB', text: 'Saint Joseph' },
220
+ { value: 'BB-08', country_code: 'BB', text: 'Saint Michael' },
221
+ { value: 'BB-09', country_code: 'BB', text: 'Saint Peter' },
222
+ { value: 'BD-06', country_code: 'BD', text: 'Barisal' },
223
+ { value: 'BD-10', country_code: 'BD', text: 'Chittagong' },
224
+ { value: 'BD-13', country_code: 'BD', text: 'Dhaka' },
225
+ { value: 'BD-27', country_code: 'BD', text: 'Khulna' },
226
+ { value: 'BD-54', country_code: 'BD', text: 'Rajshahi' },
227
+ { value: 'BD-55', country_code: 'BD', text: 'Rangpur' },
228
+ { value: 'BD-60', country_code: 'BD', text: 'Sylhet' },
229
+ { value: 'BE-VAN', country_code: 'BE', text: 'Antwerpen' },
230
+ { value: 'BE-WBR', country_code: 'BE', text: 'Brabant wallon' },
231
+ {
232
+ value: 'BE-BRU',
233
+ country_code: 'BE',
234
+ text: 'Brussels Hoofdstedelijk Gewest'
235
+ },
236
+ { value: 'BE-WHT', country_code: 'BE', text: 'Hainaut' },
237
+ { value: 'BE-WLG', country_code: 'BE', text: 'Liege' },
238
+ { value: 'BE-VLI', country_code: 'BE', text: 'Limburg' },
239
+ { value: 'BE-WLX', country_code: 'BE', text: 'Luxembourg' },
240
+ { value: 'BE-WNA', country_code: 'BE', text: 'Namur' },
241
+ { value: 'BE-VOV', country_code: 'BE', text: 'Oost-Vlaanderen' },
242
+ { value: 'BE-VBR', country_code: 'BE', text: 'Vlaams-Brabant' },
243
+ { value: 'BE-VWV', country_code: 'BE', text: 'West-Vlaanderen' },
244
+ { value: 'BF-BAL', country_code: 'BF', text: 'Bale' },
245
+ { value: 'BF-BAM', country_code: 'BF', text: 'Bam' },
246
+ { value: 'BF-BAN', country_code: 'BF', text: 'Banwa' },
247
+ { value: 'BF-BAZ', country_code: 'BF', text: 'Bazega' },
248
+ { value: 'BF-BGR', country_code: 'BF', text: 'Bougouriba' },
249
+ { value: 'BF-BLG', country_code: 'BF', text: 'Boulgou' },
250
+ { value: 'BF-BLK', country_code: 'BF', text: 'Boulkiemde' },
251
+ { value: 'BF-COM', country_code: 'BF', text: 'Comoe' },
252
+ { value: 'BF-GAN', country_code: 'BF', text: 'Ganzourgou' },
253
+ { value: 'BF-GNA', country_code: 'BF', text: 'Gnagna' },
254
+ { value: 'BF-GOU', country_code: 'BF', text: 'Gourma' },
255
+ { value: 'BF-HOU', country_code: 'BF', text: 'Houet' },
256
+ { value: 'BF-IOB', country_code: 'BF', text: 'Ioba' },
257
+ { value: 'BF-KAD', country_code: 'BF', text: 'Kadiogo' },
258
+ { value: 'BF-KEN', country_code: 'BF', text: 'Kenedougou' },
259
+ { value: 'BF-KMD', country_code: 'BF', text: 'Komondjari' },
260
+ { value: 'BF-KMP', country_code: 'BF', text: 'Kompienga' },
261
+ { value: 'BF-KOS', country_code: 'BF', text: 'Kossi' },
262
+ { value: 'BF-KOP', country_code: 'BF', text: 'Koulpelogo' },
263
+ { value: 'BF-KOT', country_code: 'BF', text: 'Kouritenga' },
264
+ { value: 'BF-KOW', country_code: 'BF', text: 'Kourweogo' },
265
+ { value: 'BF-LER', country_code: 'BF', text: 'Leraba' },
266
+ { value: 'BF-LOR', country_code: 'BF', text: 'Loroum' },
267
+ { value: 'BF-MOU', country_code: 'BF', text: 'Mouhoun' },
268
+ { value: 'BF-NAO', country_code: 'BF', text: 'Nahouri' },
269
+ { value: 'BF-NAM', country_code: 'BF', text: 'Namentenga' },
270
+ { value: 'BF-NAY', country_code: 'BF', text: 'Nayala' },
271
+ { value: 'BF-NOU', country_code: 'BF', text: 'Noumbiel' },
272
+ { value: 'BF-OUB', country_code: 'BF', text: 'Oubritenga' },
273
+ { value: 'BF-OUD', country_code: 'BF', text: 'Oudalan' },
274
+ { value: 'BF-PAS', country_code: 'BF', text: 'Passore' },
275
+ { value: 'BF-PON', country_code: 'BF', text: 'Poni' },
276
+ { value: 'BF-SNG', country_code: 'BF', text: 'Sanguie' },
277
+ { value: 'BF-SMT', country_code: 'BF', text: 'Sanmatenga' },
278
+ { value: 'BF-SEN', country_code: 'BF', text: 'Seno' },
279
+ { value: 'BF-SIS', country_code: 'BF', text: 'Sissili' },
280
+ { value: 'BF-SOM', country_code: 'BF', text: 'Soum' },
281
+ { value: 'BF-SOR', country_code: 'BF', text: 'Sourou' },
282
+ { value: 'BF-TAP', country_code: 'BF', text: 'Tapoa' },
283
+ { value: 'BF-TUI', country_code: 'BF', text: 'Tuy' },
284
+ { value: 'BF-YAG', country_code: 'BF', text: 'Yagha' },
285
+ { value: 'BF-YAT', country_code: 'BF', text: 'Yatenga' },
286
+ { value: 'BF-ZIR', country_code: 'BF', text: 'Ziro' },
287
+ { value: 'BF-ZON', country_code: 'BF', text: 'Zondoma' },
288
+ { value: 'BF-ZOU', country_code: 'BF', text: 'Zoundweogo' },
289
+ { value: 'BG-01', country_code: 'BG', text: 'Blagoevgrad' },
290
+ { value: 'BG-02', country_code: 'BG', text: 'Burgas' },
291
+ { value: 'BG-08', country_code: 'BG', text: 'Dobrich' },
292
+ { value: 'BG-07', country_code: 'BG', text: 'Gabrovo' },
293
+ { value: 'BG-26', country_code: 'BG', text: 'Haskovo' },
294
+ { value: 'BG-09', country_code: 'BG', text: 'Kardzhali' },
295
+ { value: 'BG-10', country_code: 'BG', text: 'Kyustendil' },
296
+ { value: 'BG-11', country_code: 'BG', text: 'Lovech' },
297
+ { value: 'BG-12', country_code: 'BG', text: 'Montana' },
298
+ { value: 'BG-13', country_code: 'BG', text: 'Pazardzhik' },
299
+ { value: 'BG-14', country_code: 'BG', text: 'Pernik' },
300
+ { value: 'BG-15', country_code: 'BG', text: 'Pleven' },
301
+ { value: 'BG-16', country_code: 'BG', text: 'Plovdiv' },
302
+ { value: 'BG-17', country_code: 'BG', text: 'Razgrad' },
303
+ { value: 'BG-18', country_code: 'BG', text: 'Ruse' },
304
+ { value: 'BG-27', country_code: 'BG', text: 'Shumen' },
305
+ { value: 'BG-19', country_code: 'BG', text: 'Silistra' },
306
+ { value: 'BG-20', country_code: 'BG', text: 'Sliven' },
307
+ { value: 'BG-21', country_code: 'BG', text: 'Smolyan' },
308
+ { value: 'BG-23', country_code: 'BG', text: 'Sofia' },
309
+ { value: 'BG-22', country_code: 'BG', text: 'Sofia (stolitsa)' },
310
+ { value: 'BG-24', country_code: 'BG', text: 'Stara Zagora' },
311
+ { value: 'BG-25', country_code: 'BG', text: 'Targovishte' },
312
+ { value: 'BG-03', country_code: 'BG', text: 'Varna' },
313
+ { value: 'BG-04', country_code: 'BG', text: 'Veliko Tarnovo' },
314
+ { value: 'BG-05', country_code: 'BG', text: 'Vidin' },
315
+ { value: 'BG-06', country_code: 'BG', text: 'Vratsa' },
316
+ { value: 'BG-28', country_code: 'BG', text: 'Yambol' },
317
+ { value: 'BH-13', country_code: 'BH', text: "Al 'Asimah" },
318
+ { value: 'BH-15', country_code: 'BH', text: 'Al Muharraq' },
319
+ { value: 'BH-17', country_code: 'BH', text: 'Ash Shamaliyah' },
320
+ { value: 'BI-BB', country_code: 'BI', text: 'Bubanza' },
321
+ { value: 'BI-BM', country_code: 'BI', text: 'Bujumbura Mairie' },
322
+ { value: 'BI-BR', country_code: 'BI', text: 'Bururi' },
323
+ { value: 'BI-CA', country_code: 'BI', text: 'Cankuzo' },
324
+ { value: 'BI-CI', country_code: 'BI', text: 'Cibitoke' },
325
+ { value: 'BI-GI', country_code: 'BI', text: 'Gitega' },
326
+ { value: 'BI-KR', country_code: 'BI', text: 'Karuzi' },
327
+ { value: 'BI-KY', country_code: 'BI', text: 'Kayanza' },
328
+ { value: 'BI-KI', country_code: 'BI', text: 'Kirundo' },
329
+ { value: 'BI-MA', country_code: 'BI', text: 'Makamba' },
330
+ { value: 'BI-MU', country_code: 'BI', text: 'Muramvya' },
331
+ { value: 'BI-MY', country_code: 'BI', text: 'Muyinga' },
332
+ { value: 'BI-MW', country_code: 'BI', text: 'Mwaro' },
333
+ { value: 'BI-NG', country_code: 'BI', text: 'Ngozi' },
334
+ { value: 'BI-RT', country_code: 'BI', text: 'Rutana' },
335
+ { value: 'BI-RY', country_code: 'BI', text: 'Ruyigi' },
336
+ { value: 'BJ-AL', country_code: 'BJ', text: 'Alibori' },
337
+ { value: 'BJ-AK', country_code: 'BJ', text: 'Atacora' },
338
+ { value: 'BJ-AQ', country_code: 'BJ', text: 'Atlantique' },
339
+ { value: 'BJ-BO', country_code: 'BJ', text: 'Borgou' },
340
+ { value: 'BJ-CO', country_code: 'BJ', text: 'Collines' },
341
+ { value: 'BJ-KO', country_code: 'BJ', text: 'Couffo' },
342
+ { value: 'BJ-DO', country_code: 'BJ', text: 'Donga' },
343
+ { value: 'BJ-LI', country_code: 'BJ', text: 'Littoral' },
344
+ { value: 'BJ-MO', country_code: 'BJ', text: 'Mono' },
345
+ { value: 'BJ-OU', country_code: 'BJ', text: 'Oueme' },
346
+ { value: 'BJ-PL', country_code: 'BJ', text: 'Plateau' },
347
+ { value: 'BJ-ZO', country_code: 'BJ', text: 'Zou' },
348
+ { value: 'BN-BE', country_code: 'BN', text: 'Belait' },
349
+ { value: 'BN-BM', country_code: 'BN', text: 'Brunei-Muara' },
350
+ { value: 'BN-TE', country_code: 'BN', text: 'Temburong' },
351
+ { value: 'BN-TU', country_code: 'BN', text: 'Tutong' },
352
+ { value: 'BO-H', country_code: 'BO', text: 'Chuquisaca' },
353
+ { value: 'BO-C', country_code: 'BO', text: 'Cochabamba' },
354
+ { value: 'BO-B', country_code: 'BO', text: 'El Beni' },
355
+ { value: 'BO-L', country_code: 'BO', text: 'La Paz' },
356
+ { value: 'BO-O', country_code: 'BO', text: 'Oruro' },
357
+ { value: 'BO-N', country_code: 'BO', text: 'Pando' },
358
+ { value: 'BO-P', country_code: 'BO', text: 'Potosi' },
359
+ { value: 'BO-S', country_code: 'BO', text: 'Santa Cruz' },
360
+ { value: 'BO-T', country_code: 'BO', text: 'Tarija' },
361
+ { value: 'BQ-BO', country_code: 'BQ', text: 'Bonaire' },
362
+ { value: 'BQ-SA', country_code: 'BQ', text: 'Saba' },
363
+ { value: 'BQ-SE', country_code: 'BQ', text: 'Sint Eustatius' },
364
+ { value: 'BR-AC', country_code: 'BR', text: 'Acre' },
365
+ { value: 'BR-AL', country_code: 'BR', text: 'Alagoas' },
366
+ { value: 'BR-AP', country_code: 'BR', text: 'Amapa' },
367
+ { value: 'BR-AM', country_code: 'BR', text: 'Amazonas' },
368
+ { value: 'BR-BA', country_code: 'BR', text: 'Bahia' },
369
+ { value: 'BR-CE', country_code: 'BR', text: 'Ceara' },
370
+ { value: 'BR-DF', country_code: 'BR', text: 'Distrito Federal' },
371
+ { value: 'BR-ES', country_code: 'BR', text: 'Espirito Santo' },
372
+ { value: 'BR-GO', country_code: 'BR', text: 'Goias' },
373
+ { value: 'BR-MA', country_code: 'BR', text: 'Maranhao' },
374
+ { value: 'BR-MT', country_code: 'BR', text: 'Mato Grosso' },
375
+ { value: 'BR-MS', country_code: 'BR', text: 'Mato Grosso do Sul' },
376
+ { value: 'BR-MG', country_code: 'BR', text: 'Minas Gerais' },
377
+ { value: 'BR-PA', country_code: 'BR', text: 'Para' },
378
+ { value: 'BR-PB', country_code: 'BR', text: 'Paraiba' },
379
+ { value: 'BR-PR', country_code: 'BR', text: 'Parana' },
380
+ { value: 'BR-PE', country_code: 'BR', text: 'Pernambuco' },
381
+ { value: 'BR-PI', country_code: 'BR', text: 'Piaui' },
382
+ { value: 'BR-RJ', country_code: 'BR', text: 'Rio de Janeiro' },
383
+ { value: 'BR-RN', country_code: 'BR', text: 'Rio Grande do Norte' },
384
+ { value: 'BR-RS', country_code: 'BR', text: 'Rio Grande do Sul' },
385
+ { value: 'BR-RO', country_code: 'BR', text: 'Rondonia' },
386
+ { value: 'BR-RR', country_code: 'BR', text: 'Roraima' },
387
+ { value: 'BR-SC', country_code: 'BR', text: 'Santa Catarina' },
388
+ { value: 'BR-SP', country_code: 'BR', text: 'Sao Paulo' },
389
+ { value: 'BR-SE', country_code: 'BR', text: 'Sergipe' },
390
+ { value: 'BR-TO', country_code: 'BR', text: 'Tocantins' },
391
+ { value: 'BS-CS', country_code: 'BS', text: 'Central Andros' },
392
+ { value: 'BS-FP', country_code: 'BS', text: 'City of Freeport' },
393
+ { value: 'BS-EG', country_code: 'BS', text: 'East Grand Bahama' },
394
+ { value: 'BS-HI', country_code: 'BS', text: 'Harbour Island' },
395
+ { value: 'BS-HT', country_code: 'BS', text: 'Hope Town' },
396
+ { value: 'BS-LI', country_code: 'BS', text: 'Long Island' },
397
+ { value: 'BS-SE', country_code: 'BS', text: 'South Eleuthera' },
398
+ { value: 'BT-12', country_code: 'BT', text: 'Chhukha' },
399
+ { value: 'BT-22', country_code: 'BT', text: 'Dagana' },
400
+ { value: 'BT-GA', country_code: 'BT', text: 'Gasa' },
401
+ { value: 'BT-13', country_code: 'BT', text: 'Haa' },
402
+ { value: 'BT-42', country_code: 'BT', text: 'Monggar' },
403
+ { value: 'BT-11', country_code: 'BT', text: 'Paro' },
404
+ { value: 'BT-23', country_code: 'BT', text: 'Punakha' },
405
+ { value: 'BT-15', country_code: 'BT', text: 'Thimphu' },
406
+ { value: 'BT-TY', country_code: 'BT', text: 'Trashi Yangtse' },
407
+ { value: 'BT-32', country_code: 'BT', text: 'Trongsa' },
408
+ { value: 'BT-34', country_code: 'BT', text: 'Zhemgang' },
409
+ { value: 'BW-CE', country_code: 'BW', text: 'Central' },
410
+ { value: 'BW-GH', country_code: 'BW', text: 'Ghanzi' },
411
+ { value: 'BW-KG', country_code: 'BW', text: 'Kgalagadi' },
412
+ { value: 'BW-KL', country_code: 'BW', text: 'Kgatleng' },
413
+ { value: 'BW-KW', country_code: 'BW', text: 'Kweneng' },
414
+ { value: 'BW-NE', country_code: 'BW', text: 'North East' },
415
+ { value: 'BW-NW', country_code: 'BW', text: 'North West' },
416
+ { value: 'BW-SE', country_code: 'BW', text: 'South East' },
417
+ { value: 'BW-SO', country_code: 'BW', text: 'Southern' },
418
+ { value: 'BY-BR', country_code: 'BY', text: "Brestskaya voblasts'" },
419
+ { value: 'BY-HO', country_code: 'BY', text: "Homyel'skaya voblasts'" },
420
+ { value: 'BY-HR', country_code: 'BY', text: "Hrodzenskaya voblasts'" },
421
+ { value: 'BY-MA', country_code: 'BY', text: "Mahilyowskaya voblasts'" },
422
+ { value: 'BY-MI', country_code: 'BY', text: "Minskaya voblasts'" },
423
+ { value: 'BY-VI', country_code: 'BY', text: "Vitsyebskaya voblasts'" },
424
+ { value: 'BZ-BZ', country_code: 'BZ', text: 'Belize' },
425
+ { value: 'BZ-CY', country_code: 'BZ', text: 'Cayo' },
426
+ { value: 'BZ-CZL', country_code: 'BZ', text: 'Corozal' },
427
+ { value: 'BZ-OW', country_code: 'BZ', text: 'Orange Walk' },
428
+ { value: 'BZ-SC', country_code: 'BZ', text: 'Stann Creek' },
429
+ { value: 'BZ-TOL', country_code: 'BZ', text: 'Toledo' },
430
+ { value: 'CA-AB', country_code: 'CA', text: 'Alberta' },
431
+ { value: 'CA-BC', country_code: 'CA', text: 'British Columbia' },
432
+ { value: 'CA-MB', country_code: 'CA', text: 'Manitoba' },
433
+ { value: 'CA-NB', country_code: 'CA', text: 'New Brunswick' },
434
+ { value: 'CA-NL', country_code: 'CA', text: 'Newfoundland and Labrador' },
435
+ { value: 'CA-NT', country_code: 'CA', text: 'Northwest Territories' },
436
+ { value: 'CA-NS', country_code: 'CA', text: 'Nova Scotia' },
437
+ { value: 'CA-NU', country_code: 'CA', text: 'Nunavut' },
438
+ { value: 'CA-ON', country_code: 'CA', text: 'Ontario' },
439
+ { value: 'CA-PE', country_code: 'CA', text: 'Prince Edward Island' },
440
+ { value: 'CA-QC', country_code: 'CA', text: 'Quebec' },
441
+ { value: 'CA-SK', country_code: 'CA', text: 'Saskatchewan' },
442
+ { value: 'CA-YT', country_code: 'CA', text: 'Yukon' },
443
+ { value: 'CD-BU', country_code: 'CD', text: 'Bas-Uele' },
444
+ { value: 'CD-EQ', country_code: 'CD', text: 'Equateur' },
445
+ { value: 'CD-HK', country_code: 'CD', text: 'Haut-Katanga' },
446
+ { value: 'CD-HL', country_code: 'CD', text: 'Haut-Lomani' },
447
+ { value: 'CD-HU', country_code: 'CD', text: 'Haut-Uele' },
448
+ { value: 'CD-IT', country_code: 'CD', text: 'Ituri' },
449
+ { value: 'CD-KS', country_code: 'CD', text: 'Kasai' },
450
+ { value: 'CD-KC', country_code: 'CD', text: 'Kasai Central' },
451
+ { value: 'CD-KE', country_code: 'CD', text: 'Kasai Oriental' },
452
+ { value: 'CD-KN', country_code: 'CD', text: 'Kinshasa' },
453
+ { value: 'CD-BC', country_code: 'CD', text: 'Kongo Central' },
454
+ { value: 'CD-KG', country_code: 'CD', text: 'Kwango' },
455
+ { value: 'CD-KL', country_code: 'CD', text: 'Kwilu' },
456
+ { value: 'CD-LO', country_code: 'CD', text: 'Lomami' },
457
+ { value: 'CD-LU', country_code: 'CD', text: 'Lualaba' },
458
+ { value: 'CD-MN', country_code: 'CD', text: 'Mai-Ndombe' },
459
+ { value: 'CD-MA', country_code: 'CD', text: 'Maniema' },
460
+ { value: 'CD-MO', country_code: 'CD', text: 'Mongala' },
461
+ { value: 'CD-NK', country_code: 'CD', text: 'Nord-Kivu' },
462
+ { value: 'CD-NU', country_code: 'CD', text: 'Nord-Ubangi' },
463
+ { value: 'CD-SA', country_code: 'CD', text: 'Sankuru' },
464
+ { value: 'CD-SK', country_code: 'CD', text: 'Sud-Kivu' },
465
+ { value: 'CD-SU', country_code: 'CD', text: 'Sud-Ubangi' },
466
+ { value: 'CD-TA', country_code: 'CD', text: 'Tanganyika' },
467
+ { value: 'CD-TO', country_code: 'CD', text: 'Tshopo' },
468
+ { value: 'CD-TU', country_code: 'CD', text: 'Tshuapa' },
469
+ { value: 'CF-BB', country_code: 'CF', text: 'Bamingui-Bangoran' },
470
+ { value: 'CF-BGF', country_code: 'CF', text: 'Bangui' },
471
+ { value: 'CF-BK', country_code: 'CF', text: 'Basse-Kotto' },
472
+ { value: 'CF-KB', country_code: 'CF', text: 'Gribingui' },
473
+ { value: 'CF-HM', country_code: 'CF', text: 'Haut-Mbomou' },
474
+ { value: 'CF-HK', country_code: 'CF', text: 'Haute-Kotto' },
475
+ { value: 'CF-KG', country_code: 'CF', text: 'Kemo-Gribingui' },
476
+ { value: 'CF-LB', country_code: 'CF', text: 'Lobaye' },
477
+ { value: 'CF-HS', country_code: 'CF', text: 'Mambere-Kadei' },
478
+ { value: 'CF-MB', country_code: 'CF', text: 'Mbomou' },
479
+ { value: 'CF-NM', country_code: 'CF', text: 'Nana-Mambere' },
480
+ { value: 'CF-MP', country_code: 'CF', text: 'Ombella-Mpoko' },
481
+ { value: 'CF-UK', country_code: 'CF', text: 'Ouaka' },
482
+ { value: 'CF-AC', country_code: 'CF', text: 'Ouham' },
483
+ { value: 'CF-OP', country_code: 'CF', text: 'Ouham-Pende' },
484
+ { value: 'CF-SE', country_code: 'CF', text: 'Sangha' },
485
+ { value: 'CG-11', country_code: 'CG', text: 'Bouenza' },
486
+ { value: 'CG-BZV', country_code: 'CG', text: 'Brazzaville' },
487
+ { value: 'CG-8', country_code: 'CG', text: 'Cuvette' },
488
+ { value: 'CG-15', country_code: 'CG', text: 'Cuvette-Ouest' },
489
+ { value: 'CG-2', country_code: 'CG', text: 'Lekoumou' },
490
+ { value: 'CG-7', country_code: 'CG', text: 'Likouala' },
491
+ { value: 'CG-9', country_code: 'CG', text: 'Niari' },
492
+ { value: 'CG-14', country_code: 'CG', text: 'Plateaux' },
493
+ { value: 'CG-16', country_code: 'CG', text: 'Pointe-Noire' },
494
+ { value: 'CG-12', country_code: 'CG', text: 'Pool' },
495
+ { value: 'CG-13', country_code: 'CG', text: 'Sangha' },
496
+ { value: 'CH-AG', country_code: 'CH', text: 'Aargau' },
497
+ { value: 'CH-AR', country_code: 'CH', text: 'Appenzell Ausserrhoden' },
498
+ { value: 'CH-AI', country_code: 'CH', text: 'Appenzell Innerrhoden' },
499
+ { value: 'CH-BL', country_code: 'CH', text: 'Basel-Landschaft' },
500
+ { value: 'CH-BS', country_code: 'CH', text: 'Basel-Stadt' },
501
+ { value: 'CH-BE', country_code: 'CH', text: 'Bern' },
502
+ { value: 'CH-FR', country_code: 'CH', text: 'Fribourg' },
503
+ { value: 'CH-GE', country_code: 'CH', text: 'Geneve' },
504
+ { value: 'CH-GL', country_code: 'CH', text: 'Glarus' },
505
+ { value: 'CH-GR', country_code: 'CH', text: 'Graubunden' },
506
+ { value: 'CH-JU', country_code: 'CH', text: 'Jura' },
507
+ { value: 'CH-LU', country_code: 'CH', text: 'Luzern' },
508
+ { value: 'CH-NE', country_code: 'CH', text: 'Neuchatel' },
509
+ { value: 'CH-NW', country_code: 'CH', text: 'Nidwalden' },
510
+ { value: 'CH-OW', country_code: 'CH', text: 'Obwalden' },
511
+ { value: 'CH-SG', country_code: 'CH', text: 'Sankt Gallen' },
512
+ { value: 'CH-SH', country_code: 'CH', text: 'Schaffhausen' },
513
+ { value: 'CH-SZ', country_code: 'CH', text: 'Schwyz' },
514
+ { value: 'CH-SO', country_code: 'CH', text: 'Solothurn' },
515
+ { value: 'CH-TG', country_code: 'CH', text: 'Thurgau' },
516
+ { value: 'CH-TI', country_code: 'CH', text: 'Ticino' },
517
+ { value: 'CH-UR', country_code: 'CH', text: 'Uri' },
518
+ { value: 'CH-VS', country_code: 'CH', text: 'Valais' },
519
+ { value: 'CH-VD', country_code: 'CH', text: 'Vaud' },
520
+ { value: 'CH-ZG', country_code: 'CH', text: 'Zug' },
521
+ { value: 'CH-ZH', country_code: 'CH', text: 'Zurich' },
522
+ { value: 'CI-AB', country_code: 'CI', text: 'Abidjan' },
523
+ { value: 'CI-BS', country_code: 'CI', text: 'Bas-Sassandra' },
524
+ { value: 'CI-CM', country_code: 'CI', text: 'Comoe' },
525
+ { value: 'CI-DN', country_code: 'CI', text: 'Denguele' },
526
+ { value: 'CI-GD', country_code: 'CI', text: 'Goh-Djiboua' },
527
+ { value: 'CI-LC', country_code: 'CI', text: 'Lacs' },
528
+ { value: 'CI-LG', country_code: 'CI', text: 'Lagunes' },
529
+ { value: 'CI-MG', country_code: 'CI', text: 'Montagnes' },
530
+ { value: 'CI-SM', country_code: 'CI', text: 'Sassandra-Marahoue' },
531
+ { value: 'CI-SV', country_code: 'CI', text: 'Savanes' },
532
+ { value: 'CI-VB', country_code: 'CI', text: 'Vallee du Bandama' },
533
+ { value: 'CI-WR', country_code: 'CI', text: 'Woroba' },
534
+ { value: 'CI-ZZ', country_code: 'CI', text: 'Zanzan' },
535
+ {
536
+ value: 'CL-AI',
537
+ country_code: 'CL',
538
+ text: 'Aisen del General Carlos Ibanez del Campo'
539
+ },
540
+ { value: 'CL-AN', country_code: 'CL', text: 'Antofagasta' },
541
+ { value: 'CL-AP', country_code: 'CL', text: 'Arica y Parinacota' },
542
+ { value: 'CL-AT', country_code: 'CL', text: 'Atacama' },
543
+ { value: 'CL-BI', country_code: 'CL', text: 'Biobio' },
544
+ { value: 'CL-CO', country_code: 'CL', text: 'Coquimbo' },
545
+ { value: 'CL-AR', country_code: 'CL', text: 'La Araucania' },
546
+ {
547
+ value: 'CL-LI',
548
+ country_code: 'CL',
549
+ text: "Libertador General Bernardo O'Higgins"
550
+ },
551
+ { value: 'CL-LL', country_code: 'CL', text: 'Los Lagos' },
552
+ { value: 'CL-LR', country_code: 'CL', text: 'Los Rios' },
553
+ { value: 'CL-MA', country_code: 'CL', text: 'Magallanes' },
554
+ { value: 'CL-ML', country_code: 'CL', text: 'Maule' },
555
+ {
556
+ value: 'CL-RM',
557
+ country_code: 'CL',
558
+ text: 'Region Metropolitana de Santiago'
559
+ },
560
+ { value: 'CL-TA', country_code: 'CL', text: 'Tarapaca' },
561
+ { value: 'CL-VS', country_code: 'CL', text: 'Valparaiso' },
562
+ { value: 'CM-AD', country_code: 'CM', text: 'Adamaoua' },
563
+ { value: 'CM-CE', country_code: 'CM', text: 'Centre' },
564
+ { value: 'CM-ES', country_code: 'CM', text: 'Est' },
565
+ { value: 'CM-EN', country_code: 'CM', text: 'Extreme-Nord' },
566
+ { value: 'CM-LT', country_code: 'CM', text: 'Littoral' },
567
+ { value: 'CM-NO', country_code: 'CM', text: 'Nord' },
568
+ { value: 'CM-NW', country_code: 'CM', text: 'Nord-Ouest' },
569
+ { value: 'CM-OU', country_code: 'CM', text: 'Ouest' },
570
+ { value: 'CM-SU', country_code: 'CM', text: 'Sud' },
571
+ { value: 'CM-SW', country_code: 'CM', text: 'Sud-Ouest' },
572
+ { value: 'CN-34', country_code: 'CN', text: 'Anhui' },
573
+ { value: 'CN-11', country_code: 'CN', text: 'Beijing' },
574
+ { value: 'CN-50', country_code: 'CN', text: 'Chongqing' },
575
+ { value: 'CN-35', country_code: 'CN', text: 'Fujian' },
576
+ { value: 'CN-62', country_code: 'CN', text: 'Gansu' },
577
+ { value: 'CN-44', country_code: 'CN', text: 'Guangdong' },
578
+ { value: 'CN-45', country_code: 'CN', text: 'Guangxi' },
579
+ { value: 'CN-52', country_code: 'CN', text: 'Guizhou' },
580
+ { value: 'CN-46', country_code: 'CN', text: 'Hainan' },
581
+ { value: 'CN-13', country_code: 'CN', text: 'Hebei' },
582
+ { value: 'CN-23', country_code: 'CN', text: 'Heilongjiang' },
583
+ { value: 'CN-41', country_code: 'CN', text: 'Henan' },
584
+ { value: 'CN-42', country_code: 'CN', text: 'Hubei' },
585
+ { value: 'CN-43', country_code: 'CN', text: 'Hunan' },
586
+ { value: 'CN-32', country_code: 'CN', text: 'Jiangsu' },
587
+ { value: 'CN-36', country_code: 'CN', text: 'Jiangxi' },
588
+ { value: 'CN-22', country_code: 'CN', text: 'Jilin' },
589
+ { value: 'CN-21', country_code: 'CN', text: 'Liaoning' },
590
+ { value: 'CN-15', country_code: 'CN', text: 'Nei Mongol' },
591
+ { value: 'CN-64', country_code: 'CN', text: 'Ningxia' },
592
+ { value: 'CN-63', country_code: 'CN', text: 'Qinghai' },
593
+ { value: 'CN-61', country_code: 'CN', text: 'Shaanxi' },
594
+ { value: 'CN-37', country_code: 'CN', text: 'Shandong' },
595
+ { value: 'CN-31', country_code: 'CN', text: 'Shanghai' },
596
+ { value: 'CN-14', country_code: 'CN', text: 'Shanxi' },
597
+ { value: 'CN-51', country_code: 'CN', text: 'Sichuan' },
598
+ { value: 'CN-12', country_code: 'CN', text: 'Tianjin' },
599
+ { value: 'CN-65', country_code: 'CN', text: 'Xinjiang' },
600
+ { value: 'CN-54', country_code: 'CN', text: 'Xizang' },
601
+ { value: 'CN-53', country_code: 'CN', text: 'Yunnan' },
602
+ { value: 'CN-33', country_code: 'CN', text: 'Zhejiang' },
603
+ { value: 'CO-AMA', country_code: 'CO', text: 'Amazonas' },
604
+ { value: 'CO-ANT', country_code: 'CO', text: 'Antioquia' },
605
+ { value: 'CO-ARA', country_code: 'CO', text: 'Arauca' },
606
+ { value: 'CO-ATL', country_code: 'CO', text: 'Atlantico' },
607
+ { value: 'CO-BOL', country_code: 'CO', text: 'Bolivar' },
608
+ { value: 'CO-BOY', country_code: 'CO', text: 'Boyaca' },
609
+ { value: 'CO-CAL', country_code: 'CO', text: 'Caldas' },
610
+ { value: 'CO-CAQ', country_code: 'CO', text: 'Caqueta' },
611
+ { value: 'CO-CAS', country_code: 'CO', text: 'Casanare' },
612
+ { value: 'CO-CAU', country_code: 'CO', text: 'Cauca' },
613
+ { value: 'CO-CES', country_code: 'CO', text: 'Cesar' },
614
+ { value: 'CO-CHO', country_code: 'CO', text: 'Choco' },
615
+ { value: 'CO-COR', country_code: 'CO', text: 'Cordoba' },
616
+ { value: 'CO-CUN', country_code: 'CO', text: 'Cundinamarca' },
617
+ { value: 'CO-DC', country_code: 'CO', text: 'Distrito Capital de Bogota' },
618
+ { value: 'CO-GUA', country_code: 'CO', text: 'Guainia' },
619
+ { value: 'CO-GUV', country_code: 'CO', text: 'Guaviare' },
620
+ { value: 'CO-HUI', country_code: 'CO', text: 'Huila' },
621
+ { value: 'CO-LAG', country_code: 'CO', text: 'La Guajira' },
622
+ { value: 'CO-MAG', country_code: 'CO', text: 'Magdalena' },
623
+ { value: 'CO-MET', country_code: 'CO', text: 'Meta' },
624
+ { value: 'CO-NAR', country_code: 'CO', text: 'Narino' },
625
+ { value: 'CO-NSA', country_code: 'CO', text: 'Norte de Santander' },
626
+ { value: 'CO-PUT', country_code: 'CO', text: 'Putumayo' },
627
+ { value: 'CO-QUI', country_code: 'CO', text: 'Quindio' },
628
+ { value: 'CO-RIS', country_code: 'CO', text: 'Risaralda' },
629
+ {
630
+ value: 'CO-SAP',
631
+ country_code: 'CO',
632
+ text: 'San Andres, Providencia y Santa Catalina'
633
+ },
634
+ { value: 'CO-SAN', country_code: 'CO', text: 'Santander' },
635
+ { value: 'CO-SUC', country_code: 'CO', text: 'Sucre' },
636
+ { value: 'CO-TOL', country_code: 'CO', text: 'Tolima' },
637
+ { value: 'CO-VAC', country_code: 'CO', text: 'Valle del Cauca' },
638
+ { value: 'CO-VAU', country_code: 'CO', text: 'Vaupes' },
639
+ { value: 'CO-VID', country_code: 'CO', text: 'Vichada' },
640
+ { value: 'CR-A', country_code: 'CR', text: 'Alajuela' },
641
+ { value: 'CR-C', country_code: 'CR', text: 'Cartago' },
642
+ { value: 'CR-G', country_code: 'CR', text: 'Guanacaste' },
643
+ { value: 'CR-H', country_code: 'CR', text: 'Heredia' },
644
+ { value: 'CR-L', country_code: 'CR', text: 'Limon' },
645
+ { value: 'CR-P', country_code: 'CR', text: 'Puntarenas' },
646
+ { value: 'CR-SJ', country_code: 'CR', text: 'San Jose' },
647
+ { value: 'CU-15', country_code: 'CU', text: 'Artemisa' },
648
+ { value: 'CU-09', country_code: 'CU', text: 'Camaguey' },
649
+ { value: 'CU-08', country_code: 'CU', text: 'Ciego de Avila' },
650
+ { value: 'CU-06', country_code: 'CU', text: 'Cienfuegos' },
651
+ { value: 'CU-12', country_code: 'CU', text: 'Granma' },
652
+ { value: 'CU-14', country_code: 'CU', text: 'Guantanamo' },
653
+ { value: 'CU-11', country_code: 'CU', text: 'Holguin' },
654
+ { value: 'CU-99', country_code: 'CU', text: 'Isla de la Juventud' },
655
+ { value: 'CU-03', country_code: 'CU', text: 'La Habana' },
656
+ { value: 'CU-10', country_code: 'CU', text: 'Las Tunas' },
657
+ { value: 'CU-04', country_code: 'CU', text: 'Matanzas' },
658
+ { value: 'CU-16', country_code: 'CU', text: 'Mayabeque' },
659
+ { value: 'CU-01', country_code: 'CU', text: 'Pinar del Rio' },
660
+ { value: 'CU-07', country_code: 'CU', text: 'Sancti Spiritus' },
661
+ { value: 'CU-13', country_code: 'CU', text: 'Santiago de Cuba' },
662
+ { value: 'CU-05', country_code: 'CU', text: 'Villa Clara' },
663
+ { value: 'CV-BV', country_code: 'CV', text: 'Boa Vista' },
664
+ { value: 'CV-BR', country_code: 'CV', text: 'Brava' },
665
+ { value: 'CV-MA', country_code: 'CV', text: 'Maio' },
666
+ { value: 'CV-MO', country_code: 'CV', text: 'Mosteiros' },
667
+ { value: 'CV-PA', country_code: 'CV', text: 'Paul' },
668
+ { value: 'CV-PN', country_code: 'CV', text: 'Porto Novo' },
669
+ { value: 'CV-PR', country_code: 'CV', text: 'Praia' },
670
+ { value: 'CV-RB', country_code: 'CV', text: 'Ribeira Brava' },
671
+ { value: 'CV-RG', country_code: 'CV', text: 'Ribeira Grande' },
672
+ { value: 'CV-RS', country_code: 'CV', text: 'Ribeira Grande de Santiago' },
673
+ { value: 'CV-SL', country_code: 'CV', text: 'Sal' },
674
+ { value: 'CV-CA', country_code: 'CV', text: 'Santa Catarina' },
675
+ { value: 'CV-CF', country_code: 'CV', text: 'Santa Catarina do Fogo' },
676
+ { value: 'CV-CR', country_code: 'CV', text: 'Santa Cruz' },
677
+ { value: 'CV-SD', country_code: 'CV', text: 'Sao Domingos' },
678
+ { value: 'CV-SF', country_code: 'CV', text: 'Sao Filipe' },
679
+ { value: 'CV-SM', country_code: 'CV', text: 'Sao Miguel' },
680
+ { value: 'CV-SS', country_code: 'CV', text: 'Sao Salvador do Mundo' },
681
+ { value: 'CV-SV', country_code: 'CV', text: 'Sao Vicente' },
682
+ { value: 'CV-TA', country_code: 'CV', text: 'Tarrafal' },
683
+ { value: 'CV-TS', country_code: 'CV', text: 'Tarrafal de Sao Nicolau' },
684
+ { value: 'CY-04', country_code: 'CY', text: 'Ammochostos' },
685
+ { value: 'CY-06', country_code: 'CY', text: 'Keryneia' },
686
+ { value: 'CY-03', country_code: 'CY', text: 'Larnaka' },
687
+ { value: 'CY-01', country_code: 'CY', text: 'Lefkosia' },
688
+ { value: 'CY-02', country_code: 'CY', text: 'Lemesos' },
689
+ { value: 'CY-05', country_code: 'CY', text: 'Pafos' },
690
+ { value: 'CZ-JC', country_code: 'CZ', text: 'Jihocesky kraj' },
691
+ { value: 'CZ-JM', country_code: 'CZ', text: 'Jihomoravsky kraj' },
692
+ { value: 'CZ-KA', country_code: 'CZ', text: 'Karlovarsky kraj' },
693
+ { value: 'CZ-63', country_code: 'CZ', text: 'Kraj Vysocina' },
694
+ { value: 'CZ-KR', country_code: 'CZ', text: 'Kralovehradecky kraj' },
695
+ { value: 'CZ-LI', country_code: 'CZ', text: 'Liberecky kraj' },
696
+ { value: 'CZ-MO', country_code: 'CZ', text: 'Moravskoslezsky kraj' },
697
+ { value: 'CZ-OL', country_code: 'CZ', text: 'Olomoucky kraj' },
698
+ { value: 'CZ-PA', country_code: 'CZ', text: 'Pardubicky kraj' },
699
+ { value: 'CZ-PL', country_code: 'CZ', text: 'Plzensky kraj' },
700
+ { value: 'CZ-10', country_code: 'CZ', text: 'Praha, Hlavni mesto' },
701
+ { value: 'CZ-ST', country_code: 'CZ', text: 'Stredocesky kraj' },
702
+ { value: 'CZ-US', country_code: 'CZ', text: 'Ustecky kraj' },
703
+ { value: 'CZ-ZL', country_code: 'CZ', text: 'Zlinsky kraj' },
704
+ { value: 'DE-BW', country_code: 'DE', text: 'Baden-Wurttemberg' },
705
+ { value: 'DE-BY', country_code: 'DE', text: 'Bayern' },
706
+ { value: 'DE-BE', country_code: 'DE', text: 'Berlin' },
707
+ { value: 'DE-BB', country_code: 'DE', text: 'Brandenburg' },
708
+ { value: 'DE-HB', country_code: 'DE', text: 'Bremen' },
709
+ { value: 'DE-HH', country_code: 'DE', text: 'Hamburg' },
710
+ { value: 'DE-HE', country_code: 'DE', text: 'Hessen' },
711
+ { value: 'DE-MV', country_code: 'DE', text: 'Mecklenburg-Vorpommern' },
712
+ { value: 'DE-NI', country_code: 'DE', text: 'Niedersachsen' },
713
+ { value: 'DE-NW', country_code: 'DE', text: 'Nordrhein-Westfalen' },
714
+ { value: 'DE-RP', country_code: 'DE', text: 'Rheinland-Pfalz' },
715
+ { value: 'DE-SL', country_code: 'DE', text: 'Saarland' },
716
+ { value: 'DE-SN', country_code: 'DE', text: 'Sachsen' },
717
+ { value: 'DE-ST', country_code: 'DE', text: 'Sachsen-Anhalt' },
718
+ { value: 'DE-SH', country_code: 'DE', text: 'Schleswig-Holstein' },
719
+ { value: 'DE-TH', country_code: 'DE', text: 'Thuringen' },
720
+ { value: 'DJ-AS', country_code: 'DJ', text: 'Ali Sabieh' },
721
+ { value: 'DJ-AR', country_code: 'DJ', text: 'Arta' },
722
+ { value: 'DJ-DI', country_code: 'DJ', text: 'Dikhil' },
723
+ { value: 'DJ-DJ', country_code: 'DJ', text: 'Djibouti' },
724
+ { value: 'DJ-OB', country_code: 'DJ', text: 'Obock' },
725
+ { value: 'DJ-TA', country_code: 'DJ', text: 'Tadjourah' },
726
+ { value: 'DK-84', country_code: 'DK', text: 'Hovedstaden' },
727
+ { value: 'DK-82', country_code: 'DK', text: 'Midtjylland' },
728
+ { value: 'DK-81', country_code: 'DK', text: 'Nordjylland' },
729
+ { value: 'DK-85', country_code: 'DK', text: 'Sjelland' },
730
+ { value: 'DK-83', country_code: 'DK', text: 'Syddanmark' },
731
+ { value: 'DM-02', country_code: 'DM', text: 'Saint Andrew' },
732
+ { value: 'DM-03', country_code: 'DM', text: 'Saint David' },
733
+ { value: 'DM-04', country_code: 'DM', text: 'Saint George' },
734
+ { value: 'DM-05', country_code: 'DM', text: 'Saint John' },
735
+ { value: 'DM-06', country_code: 'DM', text: 'Saint Joseph' },
736
+ { value: 'DM-07', country_code: 'DM', text: 'Saint Luke' },
737
+ { value: 'DM-08', country_code: 'DM', text: 'Saint Mark' },
738
+ { value: 'DM-09', country_code: 'DM', text: 'Saint Patrick' },
739
+ { value: 'DM-10', country_code: 'DM', text: 'Saint Paul' },
740
+ { value: 'DO-02', country_code: 'DO', text: 'Azua' },
741
+ { value: 'DO-03', country_code: 'DO', text: 'Baoruco' },
742
+ { value: 'DO-04', country_code: 'DO', text: 'Barahona' },
743
+ { value: 'DO-05', country_code: 'DO', text: 'Dajabon' },
744
+ {
745
+ value: 'DO-01',
746
+ country_code: 'DO',
747
+ text: 'Distrito Nacional (Santo Domingo)'
748
+ },
749
+ { value: 'DO-06', country_code: 'DO', text: 'Duarte' },
750
+ { value: 'DO-08', country_code: 'DO', text: 'El Seibo' },
751
+ { value: 'DO-07', country_code: 'DO', text: 'Elias Pina' },
752
+ { value: 'DO-09', country_code: 'DO', text: 'Espaillat' },
753
+ { value: 'DO-30', country_code: 'DO', text: 'Hato Mayor' },
754
+ { value: 'DO-19', country_code: 'DO', text: 'Hermanas Mirabal' },
755
+ { value: 'DO-10', country_code: 'DO', text: 'Independencia' },
756
+ { value: 'DO-11', country_code: 'DO', text: 'La Altagracia' },
757
+ { value: 'DO-12', country_code: 'DO', text: 'La Romana' },
758
+ { value: 'DO-13', country_code: 'DO', text: 'La Vega' },
759
+ { value: 'DO-14', country_code: 'DO', text: 'Maria Trinidad Sanchez' },
760
+ { value: 'DO-28', country_code: 'DO', text: 'Monsenor Nouel' },
761
+ { value: 'DO-15', country_code: 'DO', text: 'Monte Cristi' },
762
+ { value: 'DO-29', country_code: 'DO', text: 'Monte Plata' },
763
+ { value: 'DO-16', country_code: 'DO', text: 'Pedernales' },
764
+ { value: 'DO-17', country_code: 'DO', text: 'Peravia' },
765
+ { value: 'DO-18', country_code: 'DO', text: 'Puerto Plata' },
766
+ { value: 'DO-20', country_code: 'DO', text: 'Samana' },
767
+ { value: 'DO-21', country_code: 'DO', text: 'San Cristobal' },
768
+ { value: 'DO-22', country_code: 'DO', text: 'San Juan' },
769
+ { value: 'DO-23', country_code: 'DO', text: 'San Pedro de Macoris' },
770
+ { value: 'DO-24', country_code: 'DO', text: 'Sanchez Ramirez' },
771
+ { value: 'DO-25', country_code: 'DO', text: 'Santiago' },
772
+ { value: 'DO-26', country_code: 'DO', text: 'Santiago Rodriguez' },
773
+ { value: 'DO-27', country_code: 'DO', text: 'Valverde' },
774
+ { value: 'DZ-01', country_code: 'DZ', text: 'Adrar' },
775
+ { value: 'DZ-44', country_code: 'DZ', text: 'Ain Defla' },
776
+ { value: 'DZ-46', country_code: 'DZ', text: 'Ain Temouchent' },
777
+ { value: 'DZ-16', country_code: 'DZ', text: 'Alger' },
778
+ { value: 'DZ-23', country_code: 'DZ', text: 'Annaba' },
779
+ { value: 'DZ-05', country_code: 'DZ', text: 'Batna' },
780
+ { value: 'DZ-08', country_code: 'DZ', text: 'Bechar' },
781
+ { value: 'DZ-06', country_code: 'DZ', text: 'Bejaia' },
782
+ { value: 'DZ-07', country_code: 'DZ', text: 'Biskra' },
783
+ { value: 'DZ-09', country_code: 'DZ', text: 'Blida' },
784
+ { value: 'DZ-34', country_code: 'DZ', text: 'Bordj Bou Arreridj' },
785
+ { value: 'DZ-10', country_code: 'DZ', text: 'Bouira' },
786
+ { value: 'DZ-35', country_code: 'DZ', text: 'Boumerdes' },
787
+ { value: 'DZ-02', country_code: 'DZ', text: 'Chlef' },
788
+ { value: 'DZ-25', country_code: 'DZ', text: 'Constantine' },
789
+ { value: 'DZ-17', country_code: 'DZ', text: 'Djelfa' },
790
+ { value: 'DZ-32', country_code: 'DZ', text: 'El Bayadh' },
791
+ { value: 'DZ-39', country_code: 'DZ', text: 'El Oued' },
792
+ { value: 'DZ-36', country_code: 'DZ', text: 'El Tarf' },
793
+ { value: 'DZ-47', country_code: 'DZ', text: 'Ghardaia' },
794
+ { value: 'DZ-24', country_code: 'DZ', text: 'Guelma' },
795
+ { value: 'DZ-33', country_code: 'DZ', text: 'Illizi' },
796
+ { value: 'DZ-40', country_code: 'DZ', text: 'Khenchela' },
797
+ { value: 'DZ-03', country_code: 'DZ', text: 'Laghouat' },
798
+ { value: 'DZ-28', country_code: 'DZ', text: "M'sila" },
799
+ { value: 'DZ-29', country_code: 'DZ', text: 'Mascara' },
800
+ { value: 'DZ-26', country_code: 'DZ', text: 'Medea' },
801
+ { value: 'DZ-43', country_code: 'DZ', text: 'Mila' },
802
+ { value: 'DZ-27', country_code: 'DZ', text: 'Mostaganem' },
803
+ { value: 'DZ-45', country_code: 'DZ', text: 'Naama' },
804
+ { value: 'DZ-31', country_code: 'DZ', text: 'Oran' },
805
+ { value: 'DZ-30', country_code: 'DZ', text: 'Ouargla' },
806
+ { value: 'DZ-04', country_code: 'DZ', text: 'Oum el Bouaghi' },
807
+ { value: 'DZ-48', country_code: 'DZ', text: 'Relizane' },
808
+ { value: 'DZ-20', country_code: 'DZ', text: 'Saida' },
809
+ { value: 'DZ-19', country_code: 'DZ', text: 'Setif' },
810
+ { value: 'DZ-22', country_code: 'DZ', text: 'Sidi Bel Abbes' },
811
+ { value: 'DZ-21', country_code: 'DZ', text: 'Skikda' },
812
+ { value: 'DZ-41', country_code: 'DZ', text: 'Souk Ahras' },
813
+ { value: 'DZ-11', country_code: 'DZ', text: 'Tamanrasset' },
814
+ { value: 'DZ-12', country_code: 'DZ', text: 'Tebessa' },
815
+ { value: 'DZ-14', country_code: 'DZ', text: 'Tiaret' },
816
+ { value: 'DZ-37', country_code: 'DZ', text: 'Tindouf' },
817
+ { value: 'DZ-42', country_code: 'DZ', text: 'Tipaza' },
818
+ { value: 'DZ-38', country_code: 'DZ', text: 'Tissemsilt' },
819
+ { value: 'DZ-15', country_code: 'DZ', text: 'Tizi Ouzou' },
820
+ { value: 'DZ-13', country_code: 'DZ', text: 'Tlemcen' },
821
+ { value: 'EC-A', country_code: 'EC', text: 'Azuay' },
822
+ { value: 'EC-B', country_code: 'EC', text: 'Bolivar' },
823
+ { value: 'EC-F', country_code: 'EC', text: 'Canar' },
824
+ { value: 'EC-C', country_code: 'EC', text: 'Carchi' },
825
+ { value: 'EC-H', country_code: 'EC', text: 'Chimborazo' },
826
+ { value: 'EC-X', country_code: 'EC', text: 'Cotopaxi' },
827
+ { value: 'EC-O', country_code: 'EC', text: 'El Oro' },
828
+ { value: 'EC-E', country_code: 'EC', text: 'Esmeraldas' },
829
+ { value: 'EC-W', country_code: 'EC', text: 'Galapagos' },
830
+ { value: 'EC-G', country_code: 'EC', text: 'Guayas' },
831
+ { value: 'EC-I', country_code: 'EC', text: 'Imbabura' },
832
+ { value: 'EC-L', country_code: 'EC', text: 'Loja' },
833
+ { value: 'EC-R', country_code: 'EC', text: 'Los Rios' },
834
+ { value: 'EC-M', country_code: 'EC', text: 'Manabi' },
835
+ { value: 'EC-S', country_code: 'EC', text: 'Morona-Santiago' },
836
+ { value: 'EC-N', country_code: 'EC', text: 'Napo' },
837
+ { value: 'EC-D', country_code: 'EC', text: 'Orellana' },
838
+ { value: 'EC-Y', country_code: 'EC', text: 'Pastaza' },
839
+ { value: 'EC-P', country_code: 'EC', text: 'Pichincha' },
840
+ { value: 'EC-SE', country_code: 'EC', text: 'Santa Elena' },
841
+ { value: 'EC-U', country_code: 'EC', text: 'Sucumbios' },
842
+ { value: 'EC-T', country_code: 'EC', text: 'Tungurahua' },
843
+ { value: 'EC-Z', country_code: 'EC', text: 'Zamora-Chinchipe' },
844
+ { value: 'EE-37', country_code: 'EE', text: 'Harjumaa' },
845
+ { value: 'EE-39', country_code: 'EE', text: 'Hiiumaa' },
846
+ { value: 'EE-44', country_code: 'EE', text: 'Ida-Virumaa' },
847
+ { value: 'EE-51', country_code: 'EE', text: 'Jarvamaa' },
848
+ { value: 'EE-49', country_code: 'EE', text: 'Jogevamaa' },
849
+ { value: 'EE-59', country_code: 'EE', text: 'Laane-Virumaa' },
850
+ { value: 'EE-57', country_code: 'EE', text: 'Laanemaa' },
851
+ { value: 'EE-67', country_code: 'EE', text: 'Parnumaa' },
852
+ { value: 'EE-65', country_code: 'EE', text: 'Polvamaa' },
853
+ { value: 'EE-70', country_code: 'EE', text: 'Raplamaa' },
854
+ { value: 'EE-74', country_code: 'EE', text: 'Saaremaa' },
855
+ { value: 'EE-78', country_code: 'EE', text: 'Tartumaa' },
856
+ { value: 'EE-82', country_code: 'EE', text: 'Valgamaa' },
857
+ { value: 'EE-84', country_code: 'EE', text: 'Viljandimaa' },
858
+ { value: 'EE-86', country_code: 'EE', text: 'Vorumaa' },
859
+ { value: 'EG-DK', country_code: 'EG', text: 'Ad Daqahliyah' },
860
+ { value: 'EG-BA', country_code: 'EG', text: 'Al Bahr al Ahmar' },
861
+ { value: 'EG-BH', country_code: 'EG', text: 'Al Buhayrah' },
862
+ { value: 'EG-FYM', country_code: 'EG', text: 'Al Fayyum' },
863
+ { value: 'EG-GH', country_code: 'EG', text: 'Al Gharbiyah' },
864
+ { value: 'EG-ALX', country_code: 'EG', text: 'Al Iskandariyah' },
865
+ { value: 'EG-IS', country_code: 'EG', text: "Al Isma'iliyah" },
866
+ { value: 'EG-GZ', country_code: 'EG', text: 'Al Jizah' },
867
+ { value: 'EG-MNF', country_code: 'EG', text: 'Al Minufiyah' },
868
+ { value: 'EG-MN', country_code: 'EG', text: 'Al Minya' },
869
+ { value: 'EG-C', country_code: 'EG', text: 'Al Qahirah' },
870
+ { value: 'EG-KB', country_code: 'EG', text: 'Al Qalyubiyah' },
871
+ { value: 'EG-LX', country_code: 'EG', text: 'Al Uqsur' },
872
+ { value: 'EG-WAD', country_code: 'EG', text: 'Al Wadi al Jadid' },
873
+ { value: 'EG-SUZ', country_code: 'EG', text: 'As Suways' },
874
+ { value: 'EG-SHR', country_code: 'EG', text: 'Ash Sharqiyah' },
875
+ { value: 'EG-ASN', country_code: 'EG', text: 'Aswan' },
876
+ { value: 'EG-AST', country_code: 'EG', text: 'Asyut' },
877
+ { value: 'EG-BNS', country_code: 'EG', text: 'Bani Suwayf' },
878
+ { value: 'EG-PTS', country_code: 'EG', text: "Bur Sa'id" },
879
+ { value: 'EG-DT', country_code: 'EG', text: 'Dumyat' },
880
+ { value: 'EG-JS', country_code: 'EG', text: "Janub Sina'" },
881
+ { value: 'EG-KFS', country_code: 'EG', text: 'Kafr ash Shaykh' },
882
+ { value: 'EG-MT', country_code: 'EG', text: 'Matruh' },
883
+ { value: 'EG-KN', country_code: 'EG', text: 'Qina' },
884
+ { value: 'EG-SIN', country_code: 'EG', text: "Shamal Sina'" },
885
+ { value: 'EG-SHG', country_code: 'EG', text: 'Suhaj' },
886
+ { value: 'ER-MA', country_code: 'ER', text: 'Al Awsat' },
887
+ { value: 'ER-DU', country_code: 'ER', text: 'Al Janubi' },
888
+ { value: 'ER-AN', country_code: 'ER', text: 'Ansaba' },
889
+ { value: 'ER-DK', country_code: 'ER', text: 'Janubi al Bahri al Ahmar' },
890
+ { value: 'ER-GB', country_code: 'ER', text: 'Qash-Barkah' },
891
+ { value: 'ER-SK', country_code: 'ER', text: 'Shimali al Bahri al Ahmar' },
892
+ { value: 'ES-AN', country_code: 'ES', text: 'Andalucia' },
893
+ { value: 'ES-AR', country_code: 'ES', text: 'Aragon' },
894
+ { value: 'ES-AS', country_code: 'ES', text: 'Asturias, Principado de' },
895
+ { value: 'ES-CN', country_code: 'ES', text: 'Canarias' },
896
+ { value: 'ES-CB', country_code: 'ES', text: 'Cantabria' },
897
+ { value: 'ES-CL', country_code: 'ES', text: 'Castilla y Leon' },
898
+ { value: 'ES-CM', country_code: 'ES', text: 'Castilla-La Mancha' },
899
+ { value: 'ES-CT', country_code: 'ES', text: 'Catalunya' },
900
+ { value: 'ES-CE', country_code: 'ES', text: 'Ceuta' },
901
+ { value: 'ES-EX', country_code: 'ES', text: 'Extremadura' },
902
+ { value: 'ES-GA', country_code: 'ES', text: 'Galicia' },
903
+ { value: 'ES-IB', country_code: 'ES', text: 'Illes Balears' },
904
+ { value: 'ES-RI', country_code: 'ES', text: 'La Rioja' },
905
+ { value: 'ES-MD', country_code: 'ES', text: 'Madrid, Comunidad de' },
906
+ { value: 'ES-ML', country_code: 'ES', text: 'Melilla' },
907
+ { value: 'ES-MC', country_code: 'ES', text: 'Murcia, Region de' },
908
+ { value: 'ES-NC', country_code: 'ES', text: 'Navarra, Comunidad Foral de' },
909
+ { value: 'ES-PV', country_code: 'ES', text: 'Pais Vasco' },
910
+ { value: 'ES-VC', country_code: 'ES', text: 'Valenciana, Comunidad' },
911
+ { value: 'ET-AA', country_code: 'ET', text: 'Adis Abeba' },
912
+ { value: 'ET-AF', country_code: 'ET', text: 'Afar' },
913
+ { value: 'ET-AM', country_code: 'ET', text: 'Amara' },
914
+ { value: 'ET-BE', country_code: 'ET', text: 'Binshangul Gumuz' },
915
+ { value: 'ET-DD', country_code: 'ET', text: 'Dire Dawa' },
916
+ { value: 'ET-GA', country_code: 'ET', text: 'Gambela Hizboch' },
917
+ { value: 'ET-HA', country_code: 'ET', text: 'Hareri Hizb' },
918
+ { value: 'ET-OR', country_code: 'ET', text: 'Oromiya' },
919
+ { value: 'ET-SO', country_code: 'ET', text: 'Sumale' },
920
+ { value: 'ET-TI', country_code: 'ET', text: 'Tigray' },
921
+ {
922
+ value: 'ET-SN',
923
+ country_code: 'ET',
924
+ text: 'YeDebub Biheroch Bihereseboch na Hizboch'
925
+ },
926
+ { value: 'FI-02', country_code: 'FI', text: 'Etela-Karjala' },
927
+ { value: 'FI-03', country_code: 'FI', text: 'Etela-Pohjanmaa' },
928
+ { value: 'FI-04', country_code: 'FI', text: 'Etela-Savo' },
929
+ { value: 'FI-05', country_code: 'FI', text: 'Kainuu' },
930
+ { value: 'FI-06', country_code: 'FI', text: 'Kanta-Hame' },
931
+ { value: 'FI-07', country_code: 'FI', text: 'Keski-Pohjanmaa' },
932
+ { value: 'FI-08', country_code: 'FI', text: 'Keski-Suomi' },
933
+ { value: 'FI-09', country_code: 'FI', text: 'Kymenlaakso' },
934
+ { value: 'FI-10', country_code: 'FI', text: 'Lappi' },
935
+ { value: 'FI-16', country_code: 'FI', text: 'Paijat-Hame' },
936
+ { value: 'FI-11', country_code: 'FI', text: 'Pirkanmaa' },
937
+ { value: 'FI-12', country_code: 'FI', text: 'Pohjanmaa' },
938
+ { value: 'FI-13', country_code: 'FI', text: 'Pohjois-Karjala' },
939
+ { value: 'FI-14', country_code: 'FI', text: 'Pohjois-Pohjanmaa' },
940
+ { value: 'FI-15', country_code: 'FI', text: 'Pohjois-Savo' },
941
+ { value: 'FI-17', country_code: 'FI', text: 'Satakunta' },
942
+ { value: 'FI-18', country_code: 'FI', text: 'Uusimaa' },
943
+ { value: 'FI-19', country_code: 'FI', text: 'Varsinais-Suomi' },
944
+ { value: 'FJ-C', country_code: 'FJ', text: 'Central' },
945
+ { value: 'FJ-N', country_code: 'FJ', text: 'Northern' },
946
+ { value: 'FJ-W', country_code: 'FJ', text: 'Western' },
947
+ { value: 'FM-TRK', country_code: 'FM', text: 'Chuuk' },
948
+ { value: 'FM-KSA', country_code: 'FM', text: 'Kosrae' },
949
+ { value: 'FM-PNI', country_code: 'FM', text: 'Pohnpei' },
950
+ { value: 'FM-YAP', country_code: 'FM', text: 'Yap' },
951
+ { value: 'FR-ARA', country_code: 'FR', text: 'Auvergne-Rhone-Alpes' },
952
+ { value: 'FR-BFC', country_code: 'FR', text: 'Bourgogne-Franche-Comte' },
953
+ { value: 'FR-E', country_code: 'FR', text: 'Bretagne' },
954
+ { value: 'FR-CVL', country_code: 'FR', text: 'Centre-Val de Loire' },
955
+ { value: 'FR-H', country_code: 'FR', text: 'Corse' },
956
+ { value: 'FR-GES', country_code: 'FR', text: 'Grand-Est' },
957
+ { value: 'FR-HDF', country_code: 'FR', text: 'Hauts-de-France' },
958
+ { value: 'FR-J', country_code: 'FR', text: 'Ile-de-France' },
959
+ { value: 'FR-NOR', country_code: 'FR', text: 'Normandie' },
960
+ { value: 'FR-NAQ', country_code: 'FR', text: 'Nouvelle-Aquitaine' },
961
+ { value: 'FR-OCC', country_code: 'FR', text: 'Occitanie' },
962
+ { value: 'FR-R', country_code: 'FR', text: 'Pays-de-la-Loire' },
963
+ { value: 'FR-PAC', country_code: 'FR', text: "Provence-Alpes-Cote d'Azur" },
964
+ { value: 'GA-1', country_code: 'GA', text: 'Estuaire' },
965
+ { value: 'GA-2', country_code: 'GA', text: 'Haut-Ogooue' },
966
+ { value: 'GA-3', country_code: 'GA', text: 'Moyen-Ogooue' },
967
+ { value: 'GA-4', country_code: 'GA', text: 'Ngounie' },
968
+ { value: 'GA-5', country_code: 'GA', text: 'Nyanga' },
969
+ { value: 'GA-6', country_code: 'GA', text: 'Ogooue-Ivindo' },
970
+ { value: 'GA-7', country_code: 'GA', text: 'Ogooue-Lolo' },
971
+ { value: 'GA-8', country_code: 'GA', text: 'Ogooue-Maritime' },
972
+ { value: 'GA-9', country_code: 'GA', text: 'Woleu-Ntem' },
973
+ { value: 'GB-ENG', country_code: 'GB', text: 'England' },
974
+ { value: 'GB-NIR', country_code: 'GB', text: 'Northern Ireland' },
975
+ { value: 'GB-SCT', country_code: 'GB', text: 'Scotland' },
976
+ { value: 'GB-WLS', country_code: 'GB', text: 'Wales' },
977
+ { value: 'GD-01', country_code: 'GD', text: 'Saint Andrew' },
978
+ { value: 'GD-02', country_code: 'GD', text: 'Saint David' },
979
+ { value: 'GD-03', country_code: 'GD', text: 'Saint George' },
980
+ { value: 'GD-04', country_code: 'GD', text: 'Saint John' },
981
+ { value: 'GD-05', country_code: 'GD', text: 'Saint Mark' },
982
+ { value: 'GD-06', country_code: 'GD', text: 'Saint Patrick' },
983
+ { value: 'GE-AB', country_code: 'GE', text: 'Abkhazia' },
984
+ { value: 'GE-AJ', country_code: 'GE', text: 'Ajaria' },
985
+ { value: 'GE-GU', country_code: 'GE', text: 'Guria' },
986
+ { value: 'GE-IM', country_code: 'GE', text: 'Imereti' },
987
+ { value: 'GE-KA', country_code: 'GE', text: "K'akheti" },
988
+ { value: 'GE-KK', country_code: 'GE', text: 'Kvemo Kartli' },
989
+ { value: 'GE-MM', country_code: 'GE', text: 'Mtskheta-Mtianeti' },
990
+ {
991
+ value: 'GE-RL',
992
+ country_code: 'GE',
993
+ text: "Rach'a-Lechkhumi-Kvemo Svaneti"
994
+ },
995
+ { value: 'GE-SZ', country_code: 'GE', text: 'Samegrelo-Zemo Svaneti' },
996
+ { value: 'GE-SJ', country_code: 'GE', text: 'Samtskhe-Javakheti' },
997
+ { value: 'GE-SK', country_code: 'GE', text: 'Shida Kartli' },
998
+ { value: 'GE-TB', country_code: 'GE', text: 'Tbilisi' },
999
+ { value: 'GH-AH', country_code: 'GH', text: 'Ashanti' },
1000
+ { value: 'GH-BA', country_code: 'GH', text: 'Brong-Ahafo' },
1001
+ { value: 'GH-CP', country_code: 'GH', text: 'Central' },
1002
+ { value: 'GH-EP', country_code: 'GH', text: 'Eastern' },
1003
+ { value: 'GH-AA', country_code: 'GH', text: 'Greater Accra' },
1004
+ { value: 'GH-NP', country_code: 'GH', text: 'Northern' },
1005
+ { value: 'GH-UE', country_code: 'GH', text: 'Upper East' },
1006
+ { value: 'GH-UW', country_code: 'GH', text: 'Upper West' },
1007
+ { value: 'GH-TV', country_code: 'GH', text: 'Volta' },
1008
+ { value: 'GH-WP', country_code: 'GH', text: 'Western' },
1009
+ { value: 'GL-KU', country_code: 'GL', text: 'Kommune Kujalleq' },
1010
+ { value: 'GL-SM', country_code: 'GL', text: 'Kommuneqarfik Sermersooq' },
1011
+ { value: 'GL-QA', country_code: 'GL', text: 'Qaasuitsup Kommunia' },
1012
+ { value: 'GL-QE', country_code: 'GL', text: 'Qeqqata Kommunia' },
1013
+ { value: 'GM-B', country_code: 'GM', text: 'Banjul' },
1014
+ { value: 'GM-M', country_code: 'GM', text: 'Central River' },
1015
+ { value: 'GM-L', country_code: 'GM', text: 'Lower River' },
1016
+ { value: 'GM-N', country_code: 'GM', text: 'North Bank' },
1017
+ { value: 'GM-U', country_code: 'GM', text: 'Upper River' },
1018
+ { value: 'GM-W', country_code: 'GM', text: 'Western' },
1019
+ { value: 'GN-BE', country_code: 'GN', text: 'Beyla' },
1020
+ { value: 'GN-BF', country_code: 'GN', text: 'Boffa' },
1021
+ { value: 'GN-B', country_code: 'GN', text: 'Boke' },
1022
+ { value: 'GN-C', country_code: 'GN', text: 'Conakry' },
1023
+ { value: 'GN-CO', country_code: 'GN', text: 'Coyah' },
1024
+ { value: 'GN-DB', country_code: 'GN', text: 'Dabola' },
1025
+ { value: 'GN-DL', country_code: 'GN', text: 'Dalaba' },
1026
+ { value: 'GN-DI', country_code: 'GN', text: 'Dinguiraye' },
1027
+ { value: 'GN-DU', country_code: 'GN', text: 'Dubreka' },
1028
+ { value: 'GN-F', country_code: 'GN', text: 'Faranah' },
1029
+ { value: 'GN-FO', country_code: 'GN', text: 'Forecariah' },
1030
+ { value: 'GN-FR', country_code: 'GN', text: 'Fria' },
1031
+ { value: 'GN-GA', country_code: 'GN', text: 'Gaoual' },
1032
+ { value: 'GN-GU', country_code: 'GN', text: 'Guekedou' },
1033
+ { value: 'GN-K', country_code: 'GN', text: 'Kankan' },
1034
+ { value: 'GN-KE', country_code: 'GN', text: 'Kerouane' },
1035
+ { value: 'GN-D', country_code: 'GN', text: 'Kindia' },
1036
+ { value: 'GN-KS', country_code: 'GN', text: 'Kissidougou' },
1037
+ { value: 'GN-KB', country_code: 'GN', text: 'Koubia' },
1038
+ { value: 'GN-KN', country_code: 'GN', text: 'Koundara' },
1039
+ { value: 'GN-KO', country_code: 'GN', text: 'Kouroussa' },
1040
+ { value: 'GN-L', country_code: 'GN', text: 'Labe' },
1041
+ { value: 'GN-LE', country_code: 'GN', text: 'Lelouma' },
1042
+ { value: 'GN-LO', country_code: 'GN', text: 'Lola' },
1043
+ { value: 'GN-MC', country_code: 'GN', text: 'Macenta' },
1044
+ { value: 'GN-ML', country_code: 'GN', text: 'Mali' },
1045
+ { value: 'GN-M', country_code: 'GN', text: 'Mamou' },
1046
+ { value: 'GN-MD', country_code: 'GN', text: 'Mandiana' },
1047
+ { value: 'GN-N', country_code: 'GN', text: 'Nzerekore' },
1048
+ { value: 'GN-PI', country_code: 'GN', text: 'Pita' },
1049
+ { value: 'GN-SI', country_code: 'GN', text: 'Siguiri' },
1050
+ { value: 'GN-TE', country_code: 'GN', text: 'Telimele' },
1051
+ { value: 'GN-TO', country_code: 'GN', text: 'Tougue' },
1052
+ { value: 'GN-YO', country_code: 'GN', text: 'Yomou' },
1053
+ { value: 'GQ-AN', country_code: 'GQ', text: 'Annobon' },
1054
+ { value: 'GQ-BN', country_code: 'GQ', text: 'Bioko Norte' },
1055
+ { value: 'GQ-BS', country_code: 'GQ', text: 'Bioko Sur' },
1056
+ { value: 'GQ-CS', country_code: 'GQ', text: 'Centro Sur' },
1057
+ { value: 'GQ-KN', country_code: 'GQ', text: 'Kie-Ntem' },
1058
+ { value: 'GQ-LI', country_code: 'GQ', text: 'Litoral' },
1059
+ { value: 'GQ-WN', country_code: 'GQ', text: 'Wele-Nzas' },
1060
+ {
1061
+ value: 'GR-A',
1062
+ country_code: 'GR',
1063
+ text: 'Anatoliki Makedonia kai Thraki'
1064
+ },
1065
+ { value: 'GR-I', country_code: 'GR', text: 'Attiki' },
1066
+ { value: 'GR-G', country_code: 'GR', text: 'Dytiki Ellada' },
1067
+ { value: 'GR-C', country_code: 'GR', text: 'Dytiki Makedonia' },
1068
+ { value: 'GR-F', country_code: 'GR', text: 'Ionia Nisia' },
1069
+ { value: 'GR-D', country_code: 'GR', text: 'Ipeiros' },
1070
+ { value: 'GR-B', country_code: 'GR', text: 'Kentriki Makedonia' },
1071
+ { value: 'GR-M', country_code: 'GR', text: 'Kriti' },
1072
+ { value: 'GR-L', country_code: 'GR', text: 'Notio Aigaio' },
1073
+ { value: 'GR-J', country_code: 'GR', text: 'Peloponnisos' },
1074
+ { value: 'GR-H', country_code: 'GR', text: 'Sterea Ellada' },
1075
+ { value: 'GR-E', country_code: 'GR', text: 'Thessalia' },
1076
+ { value: 'GR-K', country_code: 'GR', text: 'Voreio Aigaio' },
1077
+ { value: 'GT-AV', country_code: 'GT', text: 'Alta Verapaz' },
1078
+ { value: 'GT-BV', country_code: 'GT', text: 'Baja Verapaz' },
1079
+ { value: 'GT-CM', country_code: 'GT', text: 'Chimaltenango' },
1080
+ { value: 'GT-CQ', country_code: 'GT', text: 'Chiquimula' },
1081
+ { value: 'GT-PR', country_code: 'GT', text: 'El Progreso' },
1082
+ { value: 'GT-ES', country_code: 'GT', text: 'Escuintla' },
1083
+ { value: 'GT-GU', country_code: 'GT', text: 'Guatemala' },
1084
+ { value: 'GT-HU', country_code: 'GT', text: 'Huehuetenango' },
1085
+ { value: 'GT-IZ', country_code: 'GT', text: 'Izabal' },
1086
+ { value: 'GT-JA', country_code: 'GT', text: 'Jalapa' },
1087
+ { value: 'GT-JU', country_code: 'GT', text: 'Jutiapa' },
1088
+ { value: 'GT-PE', country_code: 'GT', text: 'Peten' },
1089
+ { value: 'GT-QZ', country_code: 'GT', text: 'Quetzaltenango' },
1090
+ { value: 'GT-QC', country_code: 'GT', text: 'Quiche' },
1091
+ { value: 'GT-RE', country_code: 'GT', text: 'Retalhuleu' },
1092
+ { value: 'GT-SA', country_code: 'GT', text: 'Sacatepequez' },
1093
+ { value: 'GT-SM', country_code: 'GT', text: 'San Marcos' },
1094
+ { value: 'GT-SR', country_code: 'GT', text: 'Santa Rosa' },
1095
+ { value: 'GT-SO', country_code: 'GT', text: 'Solola' },
1096
+ { value: 'GT-SU', country_code: 'GT', text: 'Suchitepequez' },
1097
+ { value: 'GT-TO', country_code: 'GT', text: 'Totonicapan' },
1098
+ { value: 'GT-ZA', country_code: 'GT', text: 'Zacapa' },
1099
+ { value: 'GW-BA', country_code: 'GW', text: 'Bafata' },
1100
+ { value: 'GW-BM', country_code: 'GW', text: 'Biombo' },
1101
+ { value: 'GW-BS', country_code: 'GW', text: 'Bissau' },
1102
+ { value: 'GW-BL', country_code: 'GW', text: 'Bolama' },
1103
+ { value: 'GW-CA', country_code: 'GW', text: 'Cacheu' },
1104
+ { value: 'GW-GA', country_code: 'GW', text: 'Gabu' },
1105
+ { value: 'GW-OI', country_code: 'GW', text: 'Oio' },
1106
+ { value: 'GW-QU', country_code: 'GW', text: 'Quinara' },
1107
+ { value: 'GW-TO', country_code: 'GW', text: 'Tombali' },
1108
+ { value: 'GY-CU', country_code: 'GY', text: 'Cuyuni-Mazaruni' },
1109
+ { value: 'GY-DE', country_code: 'GY', text: 'Demerara-Mahaica' },
1110
+ { value: 'GY-EB', country_code: 'GY', text: 'East Berbice-Corentyne' },
1111
+ {
1112
+ value: 'GY-ES',
1113
+ country_code: 'GY',
1114
+ text: 'Essequibo Islands-West Demerara'
1115
+ },
1116
+ { value: 'GY-MA', country_code: 'GY', text: 'Mahaica-Berbice' },
1117
+ { value: 'GY-PM', country_code: 'GY', text: 'Pomeroon-Supenaam' },
1118
+ { value: 'GY-UD', country_code: 'GY', text: 'Upper Demerara-Berbice' },
1119
+ { value: 'HN-AT', country_code: 'HN', text: 'Atlantida' },
1120
+ { value: 'HN-CH', country_code: 'HN', text: 'Choluteca' },
1121
+ { value: 'HN-CL', country_code: 'HN', text: 'Colon' },
1122
+ { value: 'HN-CM', country_code: 'HN', text: 'Comayagua' },
1123
+ { value: 'HN-CP', country_code: 'HN', text: 'Copan' },
1124
+ { value: 'HN-CR', country_code: 'HN', text: 'Cortes' },
1125
+ { value: 'HN-EP', country_code: 'HN', text: 'El Paraiso' },
1126
+ { value: 'HN-FM', country_code: 'HN', text: 'Francisco Morazan' },
1127
+ { value: 'HN-GD', country_code: 'HN', text: 'Gracias a Dios' },
1128
+ { value: 'HN-IN', country_code: 'HN', text: 'Intibuca' },
1129
+ { value: 'HN-IB', country_code: 'HN', text: 'Islas de la Bahia' },
1130
+ { value: 'HN-LP', country_code: 'HN', text: 'La Paz' },
1131
+ { value: 'HN-LE', country_code: 'HN', text: 'Lempira' },
1132
+ { value: 'HN-OC', country_code: 'HN', text: 'Ocotepeque' },
1133
+ { value: 'HN-OL', country_code: 'HN', text: 'Olancho' },
1134
+ { value: 'HN-SB', country_code: 'HN', text: 'Santa Barbara' },
1135
+ { value: 'HN-VA', country_code: 'HN', text: 'Valle' },
1136
+ { value: 'HN-YO', country_code: 'HN', text: 'Yoro' },
1137
+ {
1138
+ value: 'HR-07',
1139
+ country_code: 'HR',
1140
+ text: 'Bjelovarsko-bilogorska zupanija'
1141
+ },
1142
+ { value: 'HR-12', country_code: 'HR', text: 'Brodsko-posavska zupanija' },
1143
+ {
1144
+ value: 'HR-19',
1145
+ country_code: 'HR',
1146
+ text: 'Dubrovacko-neretvanska zupanija'
1147
+ },
1148
+ { value: 'HR-21', country_code: 'HR', text: 'Grad Zagreb' },
1149
+ { value: 'HR-18', country_code: 'HR', text: 'Istarska zupanija' },
1150
+ { value: 'HR-04', country_code: 'HR', text: 'Karlovacka zupanija' },
1151
+ {
1152
+ value: 'HR-06',
1153
+ country_code: 'HR',
1154
+ text: 'Koprivnicko-krizevacka zupanija'
1155
+ },
1156
+ { value: 'HR-02', country_code: 'HR', text: 'Krapinsko-zagorska zupanija' },
1157
+ { value: 'HR-09', country_code: 'HR', text: 'Licko-senjska zupanija' },
1158
+ { value: 'HR-20', country_code: 'HR', text: 'Medimurska zupanija' },
1159
+ { value: 'HR-14', country_code: 'HR', text: 'Osjecko-baranjska zupanija' },
1160
+ { value: 'HR-11', country_code: 'HR', text: 'Pozesko-slavonska zupanija' },
1161
+ { value: 'HR-08', country_code: 'HR', text: 'Primorsko-goranska zupanija' },
1162
+ { value: 'HR-15', country_code: 'HR', text: 'Sibensko-kninska zupanija' },
1163
+ { value: 'HR-03', country_code: 'HR', text: 'Sisacko-moslavacka zupanija' },
1164
+ {
1165
+ value: 'HR-17',
1166
+ country_code: 'HR',
1167
+ text: 'Splitsko-dalmatinska zupanija'
1168
+ },
1169
+ { value: 'HR-05', country_code: 'HR', text: 'Varazdinska zupanija' },
1170
+ {
1171
+ value: 'HR-10',
1172
+ country_code: 'HR',
1173
+ text: 'Viroviticko-podravska zupanija'
1174
+ },
1175
+ {
1176
+ value: 'HR-16',
1177
+ country_code: 'HR',
1178
+ text: 'Vukovarsko-srijemska zupanija'
1179
+ },
1180
+ { value: 'HR-13', country_code: 'HR', text: 'Zadarska zupanija' },
1181
+ { value: 'HR-01', country_code: 'HR', text: 'Zagrebacka zupanija' },
1182
+ { value: 'HT-AR', country_code: 'HT', text: 'Artibonite' },
1183
+ { value: 'HT-CE', country_code: 'HT', text: 'Centre' },
1184
+ { value: 'HT-GA', country_code: 'HT', text: "Grande'Anse" },
1185
+ { value: 'HT-NI', country_code: 'HT', text: 'Nippes' },
1186
+ { value: 'HT-ND', country_code: 'HT', text: 'Nord' },
1187
+ { value: 'HT-NE', country_code: 'HT', text: 'Nord-Est' },
1188
+ { value: 'HT-NO', country_code: 'HT', text: 'Nord-Ouest' },
1189
+ { value: 'HT-OU', country_code: 'HT', text: 'Ouest' },
1190
+ { value: 'HT-SD', country_code: 'HT', text: 'Sud' },
1191
+ { value: 'HT-SE', country_code: 'HT', text: 'Sud-Est' },
1192
+ { value: 'HU-BK', country_code: 'HU', text: 'Bacs-Kiskun' },
1193
+ { value: 'HU-BA', country_code: 'HU', text: 'Baranya' },
1194
+ { value: 'HU-BE', country_code: 'HU', text: 'Bekes' },
1195
+ { value: 'HU-BZ', country_code: 'HU', text: 'Borsod-Abauj-Zemplen' },
1196
+ { value: 'HU-BU', country_code: 'HU', text: 'Budapest' },
1197
+ { value: 'HU-CS', country_code: 'HU', text: 'Csongrad' },
1198
+ { value: 'HU-FE', country_code: 'HU', text: 'Fejer' },
1199
+ { value: 'HU-GS', country_code: 'HU', text: 'Gyor-Moson-Sopron' },
1200
+ { value: 'HU-HB', country_code: 'HU', text: 'Hajdu-Bihar' },
1201
+ { value: 'HU-HE', country_code: 'HU', text: 'Heves' },
1202
+ { value: 'HU-JN', country_code: 'HU', text: 'Jasz-Nagykun-Szolnok' },
1203
+ { value: 'HU-KE', country_code: 'HU', text: 'Komarom-Esztergom' },
1204
+ { value: 'HU-NO', country_code: 'HU', text: 'Nograd' },
1205
+ { value: 'HU-PE', country_code: 'HU', text: 'Pest' },
1206
+ { value: 'HU-SO', country_code: 'HU', text: 'Somogy' },
1207
+ { value: 'HU-SZ', country_code: 'HU', text: 'Szabolcs-Szatmar-Bereg' },
1208
+ { value: 'HU-TO', country_code: 'HU', text: 'Tolna' },
1209
+ { value: 'HU-VA', country_code: 'HU', text: 'Vas' },
1210
+ { value: 'HU-VM', country_code: 'HU', text: 'Veszprem' },
1211
+ { value: 'HU-ZA', country_code: 'HU', text: 'Zala' },
1212
+ { value: 'ID-AC', country_code: 'ID', text: 'Aceh' },
1213
+ { value: 'ID-BA', country_code: 'ID', text: 'Bali' },
1214
+ { value: 'ID-BT', country_code: 'ID', text: 'Banten' },
1215
+ { value: 'ID-BE', country_code: 'ID', text: 'Bengkulu' },
1216
+ { value: 'ID-GO', country_code: 'ID', text: 'Gorontalo' },
1217
+ { value: 'ID-JK', country_code: 'ID', text: 'Jakarta Raya' },
1218
+ { value: 'ID-JA', country_code: 'ID', text: 'Jambi' },
1219
+ { value: 'ID-JB', country_code: 'ID', text: 'Jawa Barat' },
1220
+ { value: 'ID-JT', country_code: 'ID', text: 'Jawa Tengah' },
1221
+ { value: 'ID-JI', country_code: 'ID', text: 'Jawa Timur' },
1222
+ { value: 'ID-KB', country_code: 'ID', text: 'Kalimantan Barat' },
1223
+ { value: 'ID-KS', country_code: 'ID', text: 'Kalimantan Selatan' },
1224
+ { value: 'ID-KT', country_code: 'ID', text: 'Kalimantan Tengah' },
1225
+ { value: 'ID-KI', country_code: 'ID', text: 'Kalimantan Timur' },
1226
+ { value: 'ID-BB', country_code: 'ID', text: 'Kepulauan Bangka Belitung' },
1227
+ { value: 'ID-KR', country_code: 'ID', text: 'Kepulauan Riau' },
1228
+ { value: 'ID-LA', country_code: 'ID', text: 'Lampung' },
1229
+ { value: 'ID-ML', country_code: 'ID', text: 'Maluku' },
1230
+ { value: 'ID-MU', country_code: 'ID', text: 'Maluku Utara' },
1231
+ { value: 'ID-NB', country_code: 'ID', text: 'Nusa Tenggara Barat' },
1232
+ { value: 'ID-NT', country_code: 'ID', text: 'Nusa Tenggara Timur' },
1233
+ { value: 'ID-PP', country_code: 'ID', text: 'Papua' },
1234
+ { value: 'ID-PB', country_code: 'ID', text: 'Papua Barat' },
1235
+ { value: 'ID-RI', country_code: 'ID', text: 'Riau' },
1236
+ { value: 'ID-SR', country_code: 'ID', text: 'Sulawesi Barat' },
1237
+ { value: 'ID-SN', country_code: 'ID', text: 'Sulawesi Selatan' },
1238
+ { value: 'ID-ST', country_code: 'ID', text: 'Sulawesi Tengah' },
1239
+ { value: 'ID-SG', country_code: 'ID', text: 'Sulawesi Tenggara' },
1240
+ { value: 'ID-SA', country_code: 'ID', text: 'Sulawesi Utara' },
1241
+ { value: 'ID-SB', country_code: 'ID', text: 'Sumatera Barat' },
1242
+ { value: 'ID-SS', country_code: 'ID', text: 'Sumatera Selatan' },
1243
+ { value: 'ID-SU', country_code: 'ID', text: 'Sumatera Utara' },
1244
+ { value: 'ID-YO', country_code: 'ID', text: 'Yogyakarta' },
1245
+ { value: 'IE-CW', country_code: 'IE', text: 'Carlow' },
1246
+ { value: 'IE-CN', country_code: 'IE', text: 'Cavan' },
1247
+ { value: 'IE-CE', country_code: 'IE', text: 'Clare' },
1248
+ { value: 'IE-CO', country_code: 'IE', text: 'Cork' },
1249
+ { value: 'IE-DL', country_code: 'IE', text: 'Donegal' },
1250
+ { value: 'IE-D', country_code: 'IE', text: 'Dublin' },
1251
+ { value: 'IE-G', country_code: 'IE', text: 'Galway' },
1252
+ { value: 'IE-KY', country_code: 'IE', text: 'Kerry' },
1253
+ { value: 'IE-KE', country_code: 'IE', text: 'Kildare' },
1254
+ { value: 'IE-KK', country_code: 'IE', text: 'Kilkenny' },
1255
+ { value: 'IE-LS', country_code: 'IE', text: 'Laois' },
1256
+ { value: 'IE-LM', country_code: 'IE', text: 'Leitrim' },
1257
+ { value: 'IE-LK', country_code: 'IE', text: 'Limerick' },
1258
+ { value: 'IE-LD', country_code: 'IE', text: 'Longford' },
1259
+ { value: 'IE-LH', country_code: 'IE', text: 'Louth' },
1260
+ { value: 'IE-MO', country_code: 'IE', text: 'Mayo' },
1261
+ { value: 'IE-MH', country_code: 'IE', text: 'Meath' },
1262
+ { value: 'IE-MN', country_code: 'IE', text: 'Monaghan' },
1263
+ { value: 'IE-OY', country_code: 'IE', text: 'Offaly' },
1264
+ { value: 'IE-RN', country_code: 'IE', text: 'Roscommon' },
1265
+ { value: 'IE-SO', country_code: 'IE', text: 'Sligo' },
1266
+ { value: 'IE-TA', country_code: 'IE', text: 'Tipperary' },
1267
+ { value: 'IE-WD', country_code: 'IE', text: 'Waterford' },
1268
+ { value: 'IE-WH', country_code: 'IE', text: 'Westmeath' },
1269
+ { value: 'IE-WX', country_code: 'IE', text: 'Wexford' },
1270
+ { value: 'IE-WW', country_code: 'IE', text: 'Wicklow' },
1271
+ { value: 'IL-D', country_code: 'IL', text: 'HaDarom' },
1272
+ { value: 'IL-M', country_code: 'IL', text: 'HaMerkaz' },
1273
+ { value: 'IL-Z', country_code: 'IL', text: 'HaTsafon' },
1274
+ { value: 'IL-HA', country_code: 'IL', text: 'Hefa' },
1275
+ { value: 'IL-TA', country_code: 'IL', text: 'Tel Aviv' },
1276
+ { value: 'IL-JM', country_code: 'IL', text: 'Yerushalayim' },
1277
+ { value: 'IN-AN', country_code: 'IN', text: 'Andaman and Nicobar Islands' },
1278
+ { value: 'IN-AP', country_code: 'IN', text: 'Andhra Pradesh' },
1279
+ { value: 'IN-AR', country_code: 'IN', text: 'Arunachal Pradesh' },
1280
+ { value: 'IN-AS', country_code: 'IN', text: 'Assam' },
1281
+ { value: 'IN-BR', country_code: 'IN', text: 'Bihar' },
1282
+ { value: 'IN-CH', country_code: 'IN', text: 'Chandigarh' },
1283
+ { value: 'IN-CT', country_code: 'IN', text: 'Chhattisgarh' },
1284
+ { value: 'IN-DN', country_code: 'IN', text: 'Dadra and Nagar Haveli' },
1285
+ { value: 'IN-DD', country_code: 'IN', text: 'Daman and Diu' },
1286
+ { value: 'IN-DL', country_code: 'IN', text: 'Delhi' },
1287
+ { value: 'IN-GA', country_code: 'IN', text: 'Goa' },
1288
+ { value: 'IN-GJ', country_code: 'IN', text: 'Gujarat' },
1289
+ { value: 'IN-HR', country_code: 'IN', text: 'Haryana' },
1290
+ { value: 'IN-HP', country_code: 'IN', text: 'Himachal Pradesh' },
1291
+ { value: 'IN-JK', country_code: 'IN', text: 'Jammu and Kashmir' },
1292
+ { value: 'IN-JH', country_code: 'IN', text: 'Jharkhand' },
1293
+ { value: 'IN-KA', country_code: 'IN', text: 'Karnataka' },
1294
+ { value: 'IN-KL', country_code: 'IN', text: 'Kerala' },
1295
+ { value: 'IN-LD', country_code: 'IN', text: 'Lakshadweep' },
1296
+ { value: 'IN-MP', country_code: 'IN', text: 'Madhya Pradesh' },
1297
+ { value: 'IN-MH', country_code: 'IN', text: 'Maharashtra' },
1298
+ { value: 'IN-MN', country_code: 'IN', text: 'Manipur' },
1299
+ { value: 'IN-ML', country_code: 'IN', text: 'Meghalaya' },
1300
+ { value: 'IN-MZ', country_code: 'IN', text: 'Mizoram' },
1301
+ { value: 'IN-NL', country_code: 'IN', text: 'Nagaland' },
1302
+ { value: 'IN-OR', country_code: 'IN', text: 'Odisha' },
1303
+ { value: 'IN-PY', country_code: 'IN', text: 'Puducherry' },
1304
+ { value: 'IN-PB', country_code: 'IN', text: 'Punjab' },
1305
+ { value: 'IN-RJ', country_code: 'IN', text: 'Rajasthan' },
1306
+ { value: 'IN-SK', country_code: 'IN', text: 'Sikkim' },
1307
+ { value: 'IN-TN', country_code: 'IN', text: 'Tamil Nadu' },
1308
+ { value: 'IN-TG', country_code: 'IN', text: 'Telangana' },
1309
+ { value: 'IN-TR', country_code: 'IN', text: 'Tripura' },
1310
+ { value: 'IN-UP', country_code: 'IN', text: 'Uttar Pradesh' },
1311
+ { value: 'IN-UT', country_code: 'IN', text: 'Uttarakhand' },
1312
+ { value: 'IN-WB', country_code: 'IN', text: 'West Bengal' },
1313
+ { value: 'IQ-AN', country_code: 'IQ', text: 'Al Anbar' },
1314
+ { value: 'IQ-BA', country_code: 'IQ', text: 'Al Basrah' },
1315
+ { value: 'IQ-MU', country_code: 'IQ', text: 'Al Muthanna' },
1316
+ { value: 'IQ-QA', country_code: 'IQ', text: 'Al Qadisiyah' },
1317
+ { value: 'IQ-NA', country_code: 'IQ', text: 'An Najaf' },
1318
+ { value: 'IQ-AR', country_code: 'IQ', text: 'Arbil' },
1319
+ { value: 'IQ-SU', country_code: 'IQ', text: 'As Sulaymaniyah' },
1320
+ { value: 'IQ-BB', country_code: 'IQ', text: 'Babil' },
1321
+ { value: 'IQ-BG', country_code: 'IQ', text: 'Baghdad' },
1322
+ { value: 'IQ-DA', country_code: 'IQ', text: 'Dahuk' },
1323
+ { value: 'IQ-DQ', country_code: 'IQ', text: 'Dhi Qar' },
1324
+ { value: 'IQ-DI', country_code: 'IQ', text: 'Diyala' },
1325
+ { value: 'IQ-KA', country_code: 'IQ', text: "Karbala'" },
1326
+ { value: 'IQ-KI', country_code: 'IQ', text: 'Kirkuk' },
1327
+ { value: 'IQ-MA', country_code: 'IQ', text: 'Maysan' },
1328
+ { value: 'IQ-NI', country_code: 'IQ', text: 'Ninawa' },
1329
+ { value: 'IQ-SD', country_code: 'IQ', text: 'Salah ad Din' },
1330
+ { value: 'IQ-WA', country_code: 'IQ', text: 'Wasit' },
1331
+ { value: 'IR-32', country_code: 'IR', text: 'Alborz' },
1332
+ { value: 'IR-03', country_code: 'IR', text: 'Ardabil' },
1333
+ { value: 'IR-02', country_code: 'IR', text: 'Azarbayjan-e Gharbi' },
1334
+ { value: 'IR-01', country_code: 'IR', text: 'Azarbayjan-e Sharqi' },
1335
+ { value: 'IR-06', country_code: 'IR', text: 'Bushehr' },
1336
+ { value: 'IR-08', country_code: 'IR', text: 'Chahar Mahal va Bakhtiari' },
1337
+ { value: 'IR-04', country_code: 'IR', text: 'Esfahan' },
1338
+ { value: 'IR-14', country_code: 'IR', text: 'Fars' },
1339
+ { value: 'IR-19', country_code: 'IR', text: 'Gilan' },
1340
+ { value: 'IR-27', country_code: 'IR', text: 'Golestan' },
1341
+ { value: 'IR-24', country_code: 'IR', text: 'Hamadan' },
1342
+ { value: 'IR-23', country_code: 'IR', text: 'Hormozgan' },
1343
+ { value: 'IR-05', country_code: 'IR', text: 'Ilam' },
1344
+ { value: 'IR-15', country_code: 'IR', text: 'Kerman' },
1345
+ { value: 'IR-17', country_code: 'IR', text: 'Kermanshah' },
1346
+ { value: 'IR-29', country_code: 'IR', text: 'Khorasan-e Jonubi' },
1347
+ { value: 'IR-30', country_code: 'IR', text: 'Khorasan-e Razavi' },
1348
+ { value: 'IR-31', country_code: 'IR', text: 'Khorasan-e Shomali' },
1349
+ { value: 'IR-10', country_code: 'IR', text: 'Khuzestan' },
1350
+ { value: 'IR-18', country_code: 'IR', text: 'Kohgiluyeh va Bowyer Ahmad' },
1351
+ { value: 'IR-16', country_code: 'IR', text: 'Kordestan' },
1352
+ { value: 'IR-20', country_code: 'IR', text: 'Lorestan' },
1353
+ { value: 'IR-22', country_code: 'IR', text: 'Markazi' },
1354
+ { value: 'IR-21', country_code: 'IR', text: 'Mazandaran' },
1355
+ { value: 'IR-28', country_code: 'IR', text: 'Qazvin' },
1356
+ { value: 'IR-26', country_code: 'IR', text: 'Qom' },
1357
+ { value: 'IR-12', country_code: 'IR', text: 'Semnan' },
1358
+ { value: 'IR-13', country_code: 'IR', text: 'Sistan va Baluchestan' },
1359
+ { value: 'IR-07', country_code: 'IR', text: 'Tehran' },
1360
+ { value: 'IR-25', country_code: 'IR', text: 'Yazd' },
1361
+ { value: 'IR-11', country_code: 'IR', text: 'Zanjan' },
1362
+ { value: 'IS-7', country_code: 'IS', text: 'Austurland' },
1363
+ {
1364
+ value: 'IS-1',
1365
+ country_code: 'IS',
1366
+ text: 'Hofudborgarsvaedi utan Reykjavikur'
1367
+ },
1368
+ { value: 'IS-6', country_code: 'IS', text: 'Nordurland eystra' },
1369
+ { value: 'IS-5', country_code: 'IS', text: 'Nordurland vestra' },
1370
+ { value: 'IS-8', country_code: 'IS', text: 'Sudurland' },
1371
+ { value: 'IS-2', country_code: 'IS', text: 'Sudurnes' },
1372
+ { value: 'IS-4', country_code: 'IS', text: 'Vestfirdir' },
1373
+ { value: 'IS-3', country_code: 'IS', text: 'Vesturland' },
1374
+ { value: 'IT-65', country_code: 'IT', text: 'Abruzzo' },
1375
+ { value: 'IT-77', country_code: 'IT', text: 'Basilicata' },
1376
+ { value: 'IT-78', country_code: 'IT', text: 'Calabria' },
1377
+ { value: 'IT-72', country_code: 'IT', text: 'Campania' },
1378
+ { value: 'IT-45', country_code: 'IT', text: 'Emilia-Romagna' },
1379
+ { value: 'IT-36', country_code: 'IT', text: 'Friuli-Venezia Giulia' },
1380
+ { value: 'IT-62', country_code: 'IT', text: 'Lazio' },
1381
+ { value: 'IT-42', country_code: 'IT', text: 'Liguria' },
1382
+ { value: 'IT-25', country_code: 'IT', text: 'Lombardia' },
1383
+ { value: 'IT-57', country_code: 'IT', text: 'Marche' },
1384
+ { value: 'IT-67', country_code: 'IT', text: 'Molise' },
1385
+ { value: 'IT-21', country_code: 'IT', text: 'Piemonte' },
1386
+ { value: 'IT-75', country_code: 'IT', text: 'Puglia' },
1387
+ { value: 'IT-88', country_code: 'IT', text: 'Sardegna' },
1388
+ { value: 'IT-82', country_code: 'IT', text: 'Sicilia' },
1389
+ { value: 'IT-52', country_code: 'IT', text: 'Toscana' },
1390
+ { value: 'IT-32', country_code: 'IT', text: 'Trentino-Alto Adige' },
1391
+ { value: 'IT-55', country_code: 'IT', text: 'Umbria' },
1392
+ { value: 'IT-23', country_code: 'IT', text: "Valle d'Aosta" },
1393
+ { value: 'IT-34', country_code: 'IT', text: 'Veneto' },
1394
+ { value: 'JM-13', country_code: 'JM', text: 'Clarendon' },
1395
+ { value: 'JM-09', country_code: 'JM', text: 'Hanover' },
1396
+ { value: 'JM-01', country_code: 'JM', text: 'Kingston' },
1397
+ { value: 'JM-12', country_code: 'JM', text: 'Manchester' },
1398
+ { value: 'JM-04', country_code: 'JM', text: 'Portland' },
1399
+ { value: 'JM-02', country_code: 'JM', text: 'Saint Andrew' },
1400
+ { value: 'JM-06', country_code: 'JM', text: 'Saint Ann' },
1401
+ { value: 'JM-14', country_code: 'JM', text: 'Saint Catherine' },
1402
+ { value: 'JM-11', country_code: 'JM', text: 'Saint Elizabeth' },
1403
+ { value: 'JM-08', country_code: 'JM', text: 'Saint James' },
1404
+ { value: 'JM-05', country_code: 'JM', text: 'Saint Mary' },
1405
+ { value: 'JM-03', country_code: 'JM', text: 'Saint Thomas' },
1406
+ { value: 'JM-07', country_code: 'JM', text: 'Trelawny' },
1407
+ { value: 'JM-10', country_code: 'JM', text: 'Westmoreland' },
1408
+ { value: 'JO-AQ', country_code: 'JO', text: "Al 'Aqabah" },
1409
+ { value: 'JO-AM', country_code: 'JO', text: "Al 'Asimah" },
1410
+ { value: 'JO-BA', country_code: 'JO', text: "Al Balqa'" },
1411
+ { value: 'JO-KA', country_code: 'JO', text: 'Al Karak' },
1412
+ { value: 'JO-MA', country_code: 'JO', text: 'Al Mafraq' },
1413
+ { value: 'JO-AT', country_code: 'JO', text: 'At Tafilah' },
1414
+ { value: 'JO-AZ', country_code: 'JO', text: "Az Zarqa'" },
1415
+ { value: 'JO-IR', country_code: 'JO', text: 'Irbid' },
1416
+ { value: 'JO-MN', country_code: 'JO', text: "Ma'an" },
1417
+ { value: 'JO-MD', country_code: 'JO', text: 'Madaba' },
1418
+ { value: 'JP-23', country_code: 'JP', text: 'Aichi' },
1419
+ { value: 'JP-05', country_code: 'JP', text: 'Akita' },
1420
+ { value: 'JP-02', country_code: 'JP', text: 'Aomori' },
1421
+ { value: 'JP-12', country_code: 'JP', text: 'Chiba' },
1422
+ { value: 'JP-38', country_code: 'JP', text: 'Ehime' },
1423
+ { value: 'JP-18', country_code: 'JP', text: 'Fukui' },
1424
+ { value: 'JP-40', country_code: 'JP', text: 'Fukuoka' },
1425
+ { value: 'JP-07', country_code: 'JP', text: 'Fukushima' },
1426
+ { value: 'JP-21', country_code: 'JP', text: 'Gifu' },
1427
+ { value: 'JP-10', country_code: 'JP', text: 'Gunma' },
1428
+ { value: 'JP-34', country_code: 'JP', text: 'Hiroshima' },
1429
+ { value: 'JP-01', country_code: 'JP', text: 'Hokkaido' },
1430
+ { value: 'JP-28', country_code: 'JP', text: 'Hyogo' },
1431
+ { value: 'JP-08', country_code: 'JP', text: 'Ibaraki' },
1432
+ { value: 'JP-17', country_code: 'JP', text: 'Ishikawa' },
1433
+ { value: 'JP-03', country_code: 'JP', text: 'Iwate' },
1434
+ { value: 'JP-37', country_code: 'JP', text: 'Kagawa' },
1435
+ { value: 'JP-46', country_code: 'JP', text: 'Kagoshima' },
1436
+ { value: 'JP-14', country_code: 'JP', text: 'Kanagawa' },
1437
+ { value: 'JP-39', country_code: 'JP', text: 'Kochi' },
1438
+ { value: 'JP-43', country_code: 'JP', text: 'Kumamoto' },
1439
+ { value: 'JP-26', country_code: 'JP', text: 'Kyoto' },
1440
+ { value: 'JP-24', country_code: 'JP', text: 'Mie' },
1441
+ { value: 'JP-04', country_code: 'JP', text: 'Miyagi' },
1442
+ { value: 'JP-45', country_code: 'JP', text: 'Miyazaki' },
1443
+ { value: 'JP-20', country_code: 'JP', text: 'Nagano' },
1444
+ { value: 'JP-42', country_code: 'JP', text: 'Nagasaki' },
1445
+ { value: 'JP-29', country_code: 'JP', text: 'Nara' },
1446
+ { value: 'JP-15', country_code: 'JP', text: 'Niigata' },
1447
+ { value: 'JP-44', country_code: 'JP', text: 'Oita' },
1448
+ { value: 'JP-33', country_code: 'JP', text: 'Okayama' },
1449
+ { value: 'JP-47', country_code: 'JP', text: 'Okinawa' },
1450
+ { value: 'JP-27', country_code: 'JP', text: 'Osaka' },
1451
+ { value: 'JP-41', country_code: 'JP', text: 'Saga' },
1452
+ { value: 'JP-11', country_code: 'JP', text: 'Saitama' },
1453
+ { value: 'JP-25', country_code: 'JP', text: 'Shiga' },
1454
+ { value: 'JP-32', country_code: 'JP', text: 'Shimane' },
1455
+ { value: 'JP-22', country_code: 'JP', text: 'Shizuoka' },
1456
+ { value: 'JP-09', country_code: 'JP', text: 'Tochigi' },
1457
+ { value: 'JP-36', country_code: 'JP', text: 'Tokushima' },
1458
+ { value: 'JP-13', country_code: 'JP', text: 'Tokyo' },
1459
+ { value: 'JP-31', country_code: 'JP', text: 'Tottori' },
1460
+ { value: 'JP-16', country_code: 'JP', text: 'Toyama' },
1461
+ { value: 'JP-30', country_code: 'JP', text: 'Wakayama' },
1462
+ { value: 'JP-06', country_code: 'JP', text: 'Yamagata' },
1463
+ { value: 'JP-35', country_code: 'JP', text: 'Yamaguchi' },
1464
+ { value: 'JP-19', country_code: 'JP', text: 'Yamanashi' },
1465
+ { value: 'KE-01', country_code: 'KE', text: 'Baringo' },
1466
+ { value: 'KE-02', country_code: 'KE', text: 'Bomet' },
1467
+ { value: 'KE-03', country_code: 'KE', text: 'Bungoma' },
1468
+ { value: 'KE-04', country_code: 'KE', text: 'Busia' },
1469
+ { value: 'KE-06', country_code: 'KE', text: 'Embu' },
1470
+ { value: 'KE-07', country_code: 'KE', text: 'Garissa' },
1471
+ { value: 'KE-08', country_code: 'KE', text: 'Homa Bay' },
1472
+ { value: 'KE-09', country_code: 'KE', text: 'Isiolo' },
1473
+ { value: 'KE-10', country_code: 'KE', text: 'Kajiado' },
1474
+ { value: 'KE-11', country_code: 'KE', text: 'Kakamega' },
1475
+ { value: 'KE-12', country_code: 'KE', text: 'Kericho' },
1476
+ { value: 'KE-13', country_code: 'KE', text: 'Kiambu' },
1477
+ { value: 'KE-14', country_code: 'KE', text: 'Kilifi' },
1478
+ { value: 'KE-15', country_code: 'KE', text: 'Kirinyaga' },
1479
+ { value: 'KE-16', country_code: 'KE', text: 'Kisii' },
1480
+ { value: 'KE-17', country_code: 'KE', text: 'Kisumu' },
1481
+ { value: 'KE-18', country_code: 'KE', text: 'Kitui' },
1482
+ { value: 'KE-19', country_code: 'KE', text: 'Kwale' },
1483
+ { value: 'KE-20', country_code: 'KE', text: 'Laikipia' },
1484
+ { value: 'KE-21', country_code: 'KE', text: 'Lamu' },
1485
+ { value: 'KE-22', country_code: 'KE', text: 'Machakos' },
1486
+ { value: 'KE-23', country_code: 'KE', text: 'Makueni' },
1487
+ { value: 'KE-24', country_code: 'KE', text: 'Mandera' },
1488
+ { value: 'KE-25', country_code: 'KE', text: 'Marsabit' },
1489
+ { value: 'KE-26', country_code: 'KE', text: 'Meru' },
1490
+ { value: 'KE-27', country_code: 'KE', text: 'Migori' },
1491
+ { value: 'KE-28', country_code: 'KE', text: 'Mombasa' },
1492
+ { value: 'KE-29', country_code: 'KE', text: "Murang'a" },
1493
+ { value: 'KE-30', country_code: 'KE', text: 'Nairobi City' },
1494
+ { value: 'KE-31', country_code: 'KE', text: 'Nakuru' },
1495
+ { value: 'KE-32', country_code: 'KE', text: 'Nandi' },
1496
+ { value: 'KE-33', country_code: 'KE', text: 'Narok' },
1497
+ { value: 'KE-34', country_code: 'KE', text: 'Nyamira' },
1498
+ { value: 'KE-36', country_code: 'KE', text: 'Nyeri' },
1499
+ { value: 'KE-37', country_code: 'KE', text: 'Samburu' },
1500
+ { value: 'KE-38', country_code: 'KE', text: 'Siaya' },
1501
+ { value: 'KE-39', country_code: 'KE', text: 'Taita/Taveta' },
1502
+ { value: 'KE-40', country_code: 'KE', text: 'Tana River' },
1503
+ { value: 'KE-41', country_code: 'KE', text: 'Tharaka-Nithi' },
1504
+ { value: 'KE-42', country_code: 'KE', text: 'Trans Nzoia' },
1505
+ { value: 'KE-43', country_code: 'KE', text: 'Turkana' },
1506
+ { value: 'KE-44', country_code: 'KE', text: 'Uasin Gishu' },
1507
+ { value: 'KE-45', country_code: 'KE', text: 'Vihiga' },
1508
+ { value: 'KE-46', country_code: 'KE', text: 'Wajir' },
1509
+ { value: 'KE-47', country_code: 'KE', text: 'West Pokot' },
1510
+ { value: 'KG-B', country_code: 'KG', text: 'Batken' },
1511
+ { value: 'KG-GB', country_code: 'KG', text: 'Bishkek' },
1512
+ { value: 'KG-C', country_code: 'KG', text: 'Chuy' },
1513
+ { value: 'KG-J', country_code: 'KG', text: 'Jalal-Abad' },
1514
+ { value: 'KG-N', country_code: 'KG', text: 'Naryn' },
1515
+ { value: 'KG-GO', country_code: 'KG', text: 'Osh' },
1516
+ { value: 'KG-T', country_code: 'KG', text: 'Talas' },
1517
+ { value: 'KG-Y', country_code: 'KG', text: 'Ysyk-Kol' },
1518
+ { value: 'KH-2', country_code: 'KH', text: 'Baat Dambang' },
1519
+ { value: 'KH-1', country_code: 'KH', text: 'Banteay Mean Chey' },
1520
+ { value: 'KH-3', country_code: 'KH', text: 'Kampong Chaam' },
1521
+ { value: 'KH-4', country_code: 'KH', text: 'Kampong Chhnang' },
1522
+ { value: 'KH-5', country_code: 'KH', text: 'Kampong Spueu' },
1523
+ { value: 'KH-6', country_code: 'KH', text: 'Kampong Thum' },
1524
+ { value: 'KH-7', country_code: 'KH', text: 'Kampot' },
1525
+ { value: 'KH-8', country_code: 'KH', text: 'Kandaal' },
1526
+ { value: 'KH-9', country_code: 'KH', text: 'Kaoh Kong' },
1527
+ { value: 'KH-10', country_code: 'KH', text: 'Kracheh' },
1528
+ { value: 'KH-23', country_code: 'KH', text: 'Krong Kaeb' },
1529
+ { value: 'KH-24', country_code: 'KH', text: 'Krong Pailin' },
1530
+ { value: 'KH-18', country_code: 'KH', text: 'Krong Preah Sihanouk' },
1531
+ { value: 'KH-11', country_code: 'KH', text: 'Mondol Kiri' },
1532
+ { value: 'KH-22', country_code: 'KH', text: 'Otdar Mean Chey' },
1533
+ { value: 'KH-12', country_code: 'KH', text: 'Phnom Penh' },
1534
+ { value: 'KH-15', country_code: 'KH', text: 'Pousaat' },
1535
+ { value: 'KH-13', country_code: 'KH', text: 'Preah Vihear' },
1536
+ { value: 'KH-14', country_code: 'KH', text: 'Prey Veaeng' },
1537
+ { value: 'KH-16', country_code: 'KH', text: 'Rotanak Kiri' },
1538
+ { value: 'KH-17', country_code: 'KH', text: 'Siem Reab' },
1539
+ { value: 'KH-19', country_code: 'KH', text: 'Stueng Traeng' },
1540
+ { value: 'KH-20', country_code: 'KH', text: 'Svaay Rieng' },
1541
+ { value: 'KH-21', country_code: 'KH', text: 'Taakaev' },
1542
+ { value: 'KI-G', country_code: 'KI', text: 'Gilbert Islands' },
1543
+ { value: 'KI-L', country_code: 'KI', text: 'Line Islands' },
1544
+ { value: 'KM-A', country_code: 'KM', text: 'Anjouan' },
1545
+ { value: 'KM-G', country_code: 'KM', text: 'Grande Comore' },
1546
+ { value: 'KM-M', country_code: 'KM', text: 'Moheli' },
1547
+ { value: 'KN-03', country_code: 'KN', text: 'Saint George Basseterre' },
1548
+ { value: 'KN-10', country_code: 'KN', text: 'Saint Paul Charlestown' },
1549
+ { value: 'KP-04', country_code: 'KP', text: 'Chagang-do' },
1550
+ { value: 'KP-09', country_code: 'KP', text: 'Hamgyong-bukto' },
1551
+ { value: 'KP-08', country_code: 'KP', text: 'Hamgyong-namdo' },
1552
+ { value: 'KP-06', country_code: 'KP', text: 'Hwanghae-bukto' },
1553
+ { value: 'KP-05', country_code: 'KP', text: 'Hwanghae-namdo' },
1554
+ { value: 'KP-07', country_code: 'KP', text: 'Kangwon-do' },
1555
+ { value: 'KP-13', country_code: 'KP', text: 'Nason' },
1556
+ { value: 'KP-03', country_code: 'KP', text: "P'yongan-bukto" },
1557
+ { value: 'KP-02', country_code: 'KP', text: "P'yongan-namdo" },
1558
+ { value: 'KP-01', country_code: 'KP', text: "P'yongyang" },
1559
+ { value: 'KP-10', country_code: 'KP', text: 'Yanggang-do' },
1560
+ { value: 'KR-26', country_code: 'KR', text: 'Busan-gwangyeoksi' },
1561
+ { value: 'KR-43', country_code: 'KR', text: 'Chungcheongbuk-do' },
1562
+ { value: 'KR-44', country_code: 'KR', text: 'Chungcheongnam-do' },
1563
+ { value: 'KR-27', country_code: 'KR', text: 'Daegu-gwangyeoksi' },
1564
+ { value: 'KR-30', country_code: 'KR', text: 'Daejeon-gwangyeoksi' },
1565
+ { value: 'KR-42', country_code: 'KR', text: 'Gangwon-do' },
1566
+ { value: 'KR-29', country_code: 'KR', text: 'Gwangju-gwangyeoksi' },
1567
+ { value: 'KR-41', country_code: 'KR', text: 'Gyeonggi-do' },
1568
+ { value: 'KR-47', country_code: 'KR', text: 'Gyeongsangbuk-do' },
1569
+ { value: 'KR-48', country_code: 'KR', text: 'Gyeongsangnam-do' },
1570
+ { value: 'KR-28', country_code: 'KR', text: 'Incheon-gwangyeoksi' },
1571
+ { value: 'KR-49', country_code: 'KR', text: 'Jeju-teukbyeoljachido' },
1572
+ { value: 'KR-45', country_code: 'KR', text: 'Jeollabuk-do' },
1573
+ { value: 'KR-46', country_code: 'KR', text: 'Jeollanam-do' },
1574
+ { value: 'KR-11', country_code: 'KR', text: 'Seoul-teukbyeolsi' },
1575
+ { value: 'KR-31', country_code: 'KR', text: 'Ulsan-gwangyeoksi' },
1576
+ { value: 'KW-KU', country_code: 'KW', text: "Al 'Asimah" },
1577
+ { value: 'KW-AH', country_code: 'KW', text: 'Al Ahmadi' },
1578
+ { value: 'KW-FA', country_code: 'KW', text: 'Al Farwaniyah' },
1579
+ { value: 'KW-JA', country_code: 'KW', text: 'Al Jahra' },
1580
+ { value: 'KW-HA', country_code: 'KW', text: 'Hawalli' },
1581
+ { value: 'KW-MU', country_code: 'KW', text: 'Mubarak al Kabir' },
1582
+ { value: 'KZ-ALA', country_code: 'KZ', text: 'Almaty' },
1583
+ { value: 'KZ-ALM', country_code: 'KZ', text: 'Almaty oblysy' },
1584
+ { value: 'KZ-AKM', country_code: 'KZ', text: 'Aqmola oblysy' },
1585
+ { value: 'KZ-AKT', country_code: 'KZ', text: 'Aqtobe oblysy' },
1586
+ { value: 'KZ-AST', country_code: 'KZ', text: 'Astana' },
1587
+ { value: 'KZ-ATY', country_code: 'KZ', text: 'Atyrau oblysy' },
1588
+ { value: 'KZ-ZAP', country_code: 'KZ', text: 'Batys Qazaqstan oblysy' },
1589
+ { value: 'KZ-BAY', country_code: 'KZ', text: 'Bayqongyr' },
1590
+ { value: 'KZ-MAN', country_code: 'KZ', text: 'Mangghystau oblysy' },
1591
+ { value: 'KZ-YUZ', country_code: 'KZ', text: 'Ongtustik Qazaqstan oblysy' },
1592
+ { value: 'KZ-PAV', country_code: 'KZ', text: 'Pavlodar oblysy' },
1593
+ { value: 'KZ-KAR', country_code: 'KZ', text: 'Qaraghandy oblysy' },
1594
+ { value: 'KZ-KUS', country_code: 'KZ', text: 'Qostanay oblysy' },
1595
+ { value: 'KZ-KZY', country_code: 'KZ', text: 'Qyzylorda oblysy' },
1596
+ { value: 'KZ-VOS', country_code: 'KZ', text: 'Shyghys Qazaqstan oblysy' },
1597
+ { value: 'KZ-SEV', country_code: 'KZ', text: 'Soltustik Qazaqstan oblysy' },
1598
+ { value: 'KZ-ZHA', country_code: 'KZ', text: 'Zhambyl oblysy' },
1599
+ { value: 'LA-AT', country_code: 'LA', text: 'Attapu' },
1600
+ { value: 'LA-BK', country_code: 'LA', text: 'Bokeo' },
1601
+ { value: 'LA-BL', country_code: 'LA', text: 'Bolikhamxai' },
1602
+ { value: 'LA-CH', country_code: 'LA', text: 'Champasak' },
1603
+ { value: 'LA-HO', country_code: 'LA', text: 'Houaphan' },
1604
+ { value: 'LA-KH', country_code: 'LA', text: 'Khammouan' },
1605
+ { value: 'LA-LM', country_code: 'LA', text: 'Louang Namtha' },
1606
+ { value: 'LA-LP', country_code: 'LA', text: 'Louangphabang' },
1607
+ { value: 'LA-OU', country_code: 'LA', text: 'Oudomxai' },
1608
+ { value: 'LA-PH', country_code: 'LA', text: 'Phongsali' },
1609
+ { value: 'LA-SL', country_code: 'LA', text: 'Salavan' },
1610
+ { value: 'LA-SV', country_code: 'LA', text: 'Savannakhet' },
1611
+ { value: 'LA-VI', country_code: 'LA', text: 'Viangchan' },
1612
+ { value: 'LA-XA', country_code: 'LA', text: 'Xaignabouli' },
1613
+ { value: 'LA-XE', country_code: 'LA', text: 'Xekong' },
1614
+ { value: 'LA-XI', country_code: 'LA', text: 'Xiangkhouang' },
1615
+ { value: 'LB-AK', country_code: 'LB', text: 'Aakkar' },
1616
+ { value: 'LB-BH', country_code: 'LB', text: 'Baalbek-Hermel' },
1617
+ { value: 'LB-BI', country_code: 'LB', text: 'Beqaa' },
1618
+ { value: 'LB-BA', country_code: 'LB', text: 'Beyrouth' },
1619
+ { value: 'LB-AS', country_code: 'LB', text: 'Liban-Nord' },
1620
+ { value: 'LB-JA', country_code: 'LB', text: 'Liban-Sud' },
1621
+ { value: 'LB-JL', country_code: 'LB', text: 'Mont-Liban' },
1622
+ { value: 'LB-NA', country_code: 'LB', text: 'Nabatiye' },
1623
+ { value: 'LC-01', country_code: 'LC', text: 'Anse la Raye' },
1624
+ { value: 'LC-02', country_code: 'LC', text: 'Castries' },
1625
+ { value: 'LC-05', country_code: 'LC', text: 'Dennery' },
1626
+ { value: 'LC-06', country_code: 'LC', text: 'Gros Islet' },
1627
+ { value: 'LC-07', country_code: 'LC', text: 'Laborie' },
1628
+ { value: 'LC-08', country_code: 'LC', text: 'Micoud' },
1629
+ { value: 'LC-10', country_code: 'LC', text: 'Soufriere' },
1630
+ { value: 'LC-11', country_code: 'LC', text: 'Vieux Fort' },
1631
+ { value: 'LI-01', country_code: 'LI', text: 'Balzers' },
1632
+ { value: 'LI-02', country_code: 'LI', text: 'Eschen' },
1633
+ { value: 'LI-03', country_code: 'LI', text: 'Gamprin' },
1634
+ { value: 'LI-04', country_code: 'LI', text: 'Mauren' },
1635
+ { value: 'LI-05', country_code: 'LI', text: 'Planken' },
1636
+ { value: 'LI-06', country_code: 'LI', text: 'Ruggell' },
1637
+ { value: 'LI-07', country_code: 'LI', text: 'Schaan' },
1638
+ { value: 'LI-08', country_code: 'LI', text: 'Schellenberg' },
1639
+ { value: 'LI-09', country_code: 'LI', text: 'Triesen' },
1640
+ { value: 'LI-10', country_code: 'LI', text: 'Triesenberg' },
1641
+ { value: 'LI-11', country_code: 'LI', text: 'Vaduz' },
1642
+ { value: 'LK-2', country_code: 'LK', text: 'Central Province' },
1643
+ { value: 'LK-5', country_code: 'LK', text: 'Eastern Province' },
1644
+ { value: 'LK-7', country_code: 'LK', text: 'North Central Province' },
1645
+ { value: 'LK-6', country_code: 'LK', text: 'North Western Province' },
1646
+ { value: 'LK-4', country_code: 'LK', text: 'Northern Province' },
1647
+ { value: 'LK-9', country_code: 'LK', text: 'Sabaragamuwa Province' },
1648
+ { value: 'LK-3', country_code: 'LK', text: 'Southern Province' },
1649
+ { value: 'LK-8', country_code: 'LK', text: 'Uva Province' },
1650
+ { value: 'LK-1', country_code: 'LK', text: 'Western Province' },
1651
+ { value: 'LR-BM', country_code: 'LR', text: 'Bomi' },
1652
+ { value: 'LR-BG', country_code: 'LR', text: 'Bong' },
1653
+ { value: 'LR-GP', country_code: 'LR', text: 'Gbarpolu' },
1654
+ { value: 'LR-GB', country_code: 'LR', text: 'Grand Bassa' },
1655
+ { value: 'LR-CM', country_code: 'LR', text: 'Grand Cape Mount' },
1656
+ { value: 'LR-GG', country_code: 'LR', text: 'Grand Gedeh' },
1657
+ { value: 'LR-GK', country_code: 'LR', text: 'Grand Kru' },
1658
+ { value: 'LR-LO', country_code: 'LR', text: 'Lofa' },
1659
+ { value: 'LR-MG', country_code: 'LR', text: 'Margibi' },
1660
+ { value: 'LR-MY', country_code: 'LR', text: 'Maryland' },
1661
+ { value: 'LR-MO', country_code: 'LR', text: 'Montserrado' },
1662
+ { value: 'LR-NI', country_code: 'LR', text: 'Nimba' },
1663
+ { value: 'LR-RI', country_code: 'LR', text: 'River Cess' },
1664
+ { value: 'LR-RG', country_code: 'LR', text: 'River Gee' },
1665
+ { value: 'LR-SI', country_code: 'LR', text: 'Sinoe' },
1666
+ { value: 'LS-D', country_code: 'LS', text: 'Berea' },
1667
+ { value: 'LS-B', country_code: 'LS', text: 'Butha-Buthe' },
1668
+ { value: 'LS-C', country_code: 'LS', text: 'Leribe' },
1669
+ { value: 'LS-E', country_code: 'LS', text: 'Mafeteng' },
1670
+ { value: 'LS-A', country_code: 'LS', text: 'Maseru' },
1671
+ { value: 'LS-F', country_code: 'LS', text: "Mohale's Hoek" },
1672
+ { value: 'LS-J', country_code: 'LS', text: 'Mokhotlong' },
1673
+ { value: 'LS-H', country_code: 'LS', text: "Qacha's Nek" },
1674
+ { value: 'LS-G', country_code: 'LS', text: 'Quthing' },
1675
+ { value: 'LS-K', country_code: 'LS', text: 'Thaba-Tseka' },
1676
+ { value: 'LT-AL', country_code: 'LT', text: 'Alytaus apskritis' },
1677
+ { value: 'LT-KU', country_code: 'LT', text: 'Kauno apskritis' },
1678
+ { value: 'LT-KL', country_code: 'LT', text: 'Klaipedos apskritis' },
1679
+ { value: 'LT-MR', country_code: 'LT', text: 'Marijampoles apskritis' },
1680
+ { value: 'LT-PN', country_code: 'LT', text: 'Panevezio apskritis' },
1681
+ { value: 'LT-SA', country_code: 'LT', text: 'Siauliu apskritis' },
1682
+ { value: 'LT-TA', country_code: 'LT', text: 'Taurages apskritis' },
1683
+ { value: 'LT-TE', country_code: 'LT', text: 'Telsiu apskritis' },
1684
+ { value: 'LT-UT', country_code: 'LT', text: 'Utenos apskritis' },
1685
+ { value: 'LT-VL', country_code: 'LT', text: 'Vilniaus apskritis' },
1686
+ { value: 'LU-DI', country_code: 'LU', text: 'Diekirch' },
1687
+ { value: 'LU-GR', country_code: 'LU', text: 'Grevenmacher' },
1688
+ { value: 'LU-LU', country_code: 'LU', text: 'Luxembourg' },
1689
+ { value: 'LV-011', country_code: 'LV', text: 'Adazu novads' },
1690
+ { value: 'LV-001', country_code: 'LV', text: 'Aglonas novads' },
1691
+ { value: 'LV-002', country_code: 'LV', text: 'Aizkraukles novads' },
1692
+ { value: 'LV-003', country_code: 'LV', text: 'Aizputes novads' },
1693
+ { value: 'LV-005', country_code: 'LV', text: 'Alojas novads' },
1694
+ { value: 'LV-007', country_code: 'LV', text: 'Aluksnes novads' },
1695
+ { value: 'LV-012', country_code: 'LV', text: 'Babites novads' },
1696
+ { value: 'LV-014', country_code: 'LV', text: 'Baltinavas novads' },
1697
+ { value: 'LV-015', country_code: 'LV', text: 'Balvu novads' },
1698
+ { value: 'LV-016', country_code: 'LV', text: 'Bauskas novads' },
1699
+ { value: 'LV-017', country_code: 'LV', text: 'Beverinas novads' },
1700
+ { value: 'LV-018', country_code: 'LV', text: 'Brocenu novads' },
1701
+ { value: 'LV-020', country_code: 'LV', text: 'Carnikavas novads' },
1702
+ { value: 'LV-022', country_code: 'LV', text: 'Cesu novads' },
1703
+ { value: 'LV-021', country_code: 'LV', text: 'Cesvaines novads' },
1704
+ { value: 'LV-023', country_code: 'LV', text: 'Ciblas novads' },
1705
+ { value: 'LV-025', country_code: 'LV', text: 'Daugavpils novads' },
1706
+ { value: 'LV-026', country_code: 'LV', text: 'Dobeles novads' },
1707
+ { value: 'LV-027', country_code: 'LV', text: 'Dundagas novads' },
1708
+ { value: 'LV-033', country_code: 'LV', text: 'Gulbenes novads' },
1709
+ { value: 'LV-034', country_code: 'LV', text: 'Iecavas novads' },
1710
+ { value: 'LV-037', country_code: 'LV', text: 'Incukalna novads' },
1711
+ { value: 'LV-038', country_code: 'LV', text: 'Jaunjelgavas novads' },
1712
+ { value: 'LV-039', country_code: 'LV', text: 'Jaunpiebalgas novads' },
1713
+ { value: 'LV-040', country_code: 'LV', text: 'Jaunpils novads' },
1714
+ { value: 'LV-042', country_code: 'LV', text: 'Jekabpils novads' },
1715
+ { value: 'LV-JEL', country_code: 'LV', text: 'Jelgava' },
1716
+ { value: 'LV-041', country_code: 'LV', text: 'Jelgavas novads' },
1717
+ { value: 'LV-JUR', country_code: 'LV', text: 'Jurmala' },
1718
+ { value: 'LV-052', country_code: 'LV', text: 'Kekavas novads' },
1719
+ { value: 'LV-046', country_code: 'LV', text: 'Kokneses novads' },
1720
+ { value: 'LV-047', country_code: 'LV', text: 'Kraslavas novads' },
1721
+ { value: 'LV-050', country_code: 'LV', text: 'Kuldigas novads' },
1722
+ { value: 'LV-LPX', country_code: 'LV', text: 'Liepaja' },
1723
+ { value: 'LV-054', country_code: 'LV', text: 'Limbazu novads' },
1724
+ { value: 'LV-057', country_code: 'LV', text: 'Lubanas novads' },
1725
+ { value: 'LV-058', country_code: 'LV', text: 'Ludzas novads' },
1726
+ { value: 'LV-059', country_code: 'LV', text: 'Madonas novads' },
1727
+ { value: 'LV-061', country_code: 'LV', text: 'Malpils novads' },
1728
+ { value: 'LV-067', country_code: 'LV', text: 'Ogres novads' },
1729
+ { value: 'LV-068', country_code: 'LV', text: 'Olaines novads' },
1730
+ { value: 'LV-069', country_code: 'LV', text: 'Ozolnieku novads' },
1731
+ { value: 'LV-073', country_code: 'LV', text: 'Preilu novads' },
1732
+ { value: 'LV-077', country_code: 'LV', text: 'Rezeknes novads' },
1733
+ { value: 'LV-RIX', country_code: 'LV', text: 'Riga' },
1734
+ { value: 'LV-079', country_code: 'LV', text: 'Rojas novads' },
1735
+ { value: 'LV-080', country_code: 'LV', text: 'Ropazu novads' },
1736
+ { value: 'LV-082', country_code: 'LV', text: 'Rugaju novads' },
1737
+ { value: 'LV-083', country_code: 'LV', text: 'Rundales novads' },
1738
+ { value: 'LV-086', country_code: 'LV', text: 'Salacgrivas novads' },
1739
+ { value: 'LV-088', country_code: 'LV', text: 'Saldus novads' },
1740
+ { value: 'LV-090', country_code: 'LV', text: 'Sejas novads' },
1741
+ { value: 'LV-091', country_code: 'LV', text: 'Siguldas novads' },
1742
+ { value: 'LV-093', country_code: 'LV', text: 'Skrundas novads' },
1743
+ { value: 'LV-095', country_code: 'LV', text: 'Stopinu novads' },
1744
+ { value: 'LV-096', country_code: 'LV', text: 'Strencu novads' },
1745
+ { value: 'LV-097', country_code: 'LV', text: 'Talsu novads' },
1746
+ { value: 'LV-099', country_code: 'LV', text: 'Tukuma novads' },
1747
+ { value: 'LV-100', country_code: 'LV', text: 'Vainodes novads' },
1748
+ { value: 'LV-101', country_code: 'LV', text: 'Valkas novads' },
1749
+ { value: 'LV-VMR', country_code: 'LV', text: 'Valmiera' },
1750
+ { value: 'LV-103', country_code: 'LV', text: 'Varkavas novads' },
1751
+ { value: 'LV-105', country_code: 'LV', text: 'Vecumnieku novads' },
1752
+ { value: 'LV-106', country_code: 'LV', text: 'Ventspils novads' },
1753
+ { value: 'LY-BU', country_code: 'LY', text: 'Al Butnan' },
1754
+ { value: 'LY-JA', country_code: 'LY', text: 'Al Jabal al Akhdar' },
1755
+ { value: 'LY-JG', country_code: 'LY', text: 'Al Jabal al Gharbi' },
1756
+ { value: 'LY-JI', country_code: 'LY', text: 'Al Jafarah' },
1757
+ { value: 'LY-JU', country_code: 'LY', text: 'Al Jufrah' },
1758
+ { value: 'LY-KF', country_code: 'LY', text: 'Al Kufrah' },
1759
+ { value: 'LY-MJ', country_code: 'LY', text: 'Al Marj' },
1760
+ { value: 'LY-MB', country_code: 'LY', text: 'Al Marqab' },
1761
+ { value: 'LY-WA', country_code: 'LY', text: 'Al Wahat' },
1762
+ { value: 'LY-NQ', country_code: 'LY', text: 'An Nuqat al Khams' },
1763
+ { value: 'LY-ZA', country_code: 'LY', text: 'Az Zawiyah' },
1764
+ { value: 'LY-BA', country_code: 'LY', text: 'Banghazi' },
1765
+ { value: 'LY-DR', country_code: 'LY', text: 'Darnah' },
1766
+ { value: 'LY-GT', country_code: 'LY', text: 'Ghat' },
1767
+ { value: 'LY-MI', country_code: 'LY', text: 'Misratah' },
1768
+ { value: 'LY-MQ', country_code: 'LY', text: 'Murzuq' },
1769
+ { value: 'LY-NL', country_code: 'LY', text: 'Nalut' },
1770
+ { value: 'LY-SB', country_code: 'LY', text: 'Sabha' },
1771
+ { value: 'LY-SR', country_code: 'LY', text: 'Surt' },
1772
+ { value: 'LY-TB', country_code: 'LY', text: 'Tarabulus' },
1773
+ { value: 'LY-WD', country_code: 'LY', text: 'Wadi al Hayat' },
1774
+ { value: 'LY-WS', country_code: 'LY', text: "Wadi ash Shati'" },
1775
+ { value: 'MA-09', country_code: 'MA', text: 'Chaouia-Ouardigha' },
1776
+ { value: 'MA-10', country_code: 'MA', text: 'Doukhala-Abda' },
1777
+ { value: 'MA-05', country_code: 'MA', text: 'Fes-Boulemane' },
1778
+ { value: 'MA-02', country_code: 'MA', text: 'Gharb-Chrarda-Beni Hssen' },
1779
+ { value: 'MA-08', country_code: 'MA', text: 'Grand Casablanca' },
1780
+ { value: 'MA-14', country_code: 'MA', text: 'Guelmim-Es Semara' },
1781
+ { value: 'MA-04', country_code: 'MA', text: "L'Oriental" },
1782
+ { value: 'MA-11', country_code: 'MA', text: 'Marrakech-Tensift-Al Haouz' },
1783
+ { value: 'MA-06', country_code: 'MA', text: 'Meknes-Tafilalet' },
1784
+ { value: 'MA-07', country_code: 'MA', text: 'Rabat-Sale-Zemmour-Zaer' },
1785
+ { value: 'MA-13', country_code: 'MA', text: 'Souss-Massa-Draa' },
1786
+ { value: 'MA-12', country_code: 'MA', text: 'Tadla-Azilal' },
1787
+ { value: 'MA-01', country_code: 'MA', text: 'Tanger-Tetouan' },
1788
+ { value: 'MA-03', country_code: 'MA', text: 'Taza-Al Hoceima-Taounate' },
1789
+ { value: 'MC-FO', country_code: 'MC', text: 'Fontvieille' },
1790
+ { value: 'MC-CO', country_code: 'MC', text: 'La Condamine' },
1791
+ { value: 'MC-MO', country_code: 'MC', text: 'Monaco-Ville' },
1792
+ { value: 'MC-MG', country_code: 'MC', text: 'Moneghetti' },
1793
+ { value: 'MC-MC', country_code: 'MC', text: 'Monte-Carlo' },
1794
+ { value: 'MC-SR', country_code: 'MC', text: 'Saint-Roman' },
1795
+ { value: 'MD-AN', country_code: 'MD', text: 'Anenii Noi' },
1796
+ { value: 'MD-BA', country_code: 'MD', text: 'Balti' },
1797
+ { value: 'MD-BS', country_code: 'MD', text: 'Basarabeasca' },
1798
+ { value: 'MD-BD', country_code: 'MD', text: 'Bender' },
1799
+ { value: 'MD-BR', country_code: 'MD', text: 'Briceni' },
1800
+ { value: 'MD-CA', country_code: 'MD', text: 'Cahul' },
1801
+ { value: 'MD-CL', country_code: 'MD', text: 'Calarasi' },
1802
+ { value: 'MD-CT', country_code: 'MD', text: 'Cantemir' },
1803
+ { value: 'MD-CS', country_code: 'MD', text: 'Causeni' },
1804
+ { value: 'MD-CU', country_code: 'MD', text: 'Chisinau' },
1805
+ { value: 'MD-CM', country_code: 'MD', text: 'Cimislia' },
1806
+ { value: 'MD-CR', country_code: 'MD', text: 'Criuleni' },
1807
+ { value: 'MD-DO', country_code: 'MD', text: 'Donduseni' },
1808
+ { value: 'MD-DR', country_code: 'MD', text: 'Drochia' },
1809
+ { value: 'MD-DU', country_code: 'MD', text: 'Dubasari' },
1810
+ { value: 'MD-ED', country_code: 'MD', text: 'Edinet' },
1811
+ { value: 'MD-FA', country_code: 'MD', text: 'Falesti' },
1812
+ { value: 'MD-FL', country_code: 'MD', text: 'Floresti' },
1813
+ {
1814
+ value: 'MD-GA',
1815
+ country_code: 'MD',
1816
+ text: 'Gagauzia, Unitatea teritoriala autonoma'
1817
+ },
1818
+ { value: 'MD-GL', country_code: 'MD', text: 'Glodeni' },
1819
+ { value: 'MD-HI', country_code: 'MD', text: 'Hincesti' },
1820
+ { value: 'MD-IA', country_code: 'MD', text: 'Ialoveni' },
1821
+ { value: 'MD-LE', country_code: 'MD', text: 'Leova' },
1822
+ { value: 'MD-NI', country_code: 'MD', text: 'Nisporeni' },
1823
+ { value: 'MD-OC', country_code: 'MD', text: 'Ocnita' },
1824
+ { value: 'MD-OR', country_code: 'MD', text: 'Orhei' },
1825
+ { value: 'MD-RE', country_code: 'MD', text: 'Rezina' },
1826
+ { value: 'MD-RI', country_code: 'MD', text: 'Riscani' },
1827
+ { value: 'MD-SI', country_code: 'MD', text: 'Singerei' },
1828
+ { value: 'MD-SD', country_code: 'MD', text: 'Soldanesti' },
1829
+ { value: 'MD-SO', country_code: 'MD', text: 'Soroca' },
1830
+ { value: 'MD-SV', country_code: 'MD', text: 'Stefan Voda' },
1831
+ {
1832
+ value: 'MD-SN',
1833
+ country_code: 'MD',
1834
+ text: 'Stinga Nistrului, unitatea teritoriala din'
1835
+ },
1836
+ { value: 'MD-ST', country_code: 'MD', text: 'Straseni' },
1837
+ { value: 'MD-TA', country_code: 'MD', text: 'Taraclia' },
1838
+ { value: 'MD-TE', country_code: 'MD', text: 'Telenesti' },
1839
+ { value: 'MD-UN', country_code: 'MD', text: 'Ungheni' },
1840
+ { value: 'ME-02', country_code: 'ME', text: 'Bar' },
1841
+ { value: 'ME-05', country_code: 'ME', text: 'Budva' },
1842
+ { value: 'ME-06', country_code: 'ME', text: 'Cetinje' },
1843
+ { value: 'ME-07', country_code: 'ME', text: 'Danilovgrad' },
1844
+ { value: 'ME-08', country_code: 'ME', text: 'Herceg-Novi' },
1845
+ { value: 'ME-09', country_code: 'ME', text: 'Kolasin' },
1846
+ { value: 'ME-10', country_code: 'ME', text: 'Kotor' },
1847
+ { value: 'ME-11', country_code: 'ME', text: 'Mojkovac' },
1848
+ { value: 'ME-12', country_code: 'ME', text: 'Niksic' },
1849
+ { value: 'ME-16', country_code: 'ME', text: 'Podgorica' },
1850
+ { value: 'ME-19', country_code: 'ME', text: 'Tivat' },
1851
+ { value: 'ME-20', country_code: 'ME', text: 'Ulcinj' },
1852
+ { value: 'ME-21', country_code: 'ME', text: 'Zabljak' },
1853
+ { value: 'MG-T', country_code: 'MG', text: 'Antananarivo' },
1854
+ { value: 'MG-D', country_code: 'MG', text: 'Antsiranana' },
1855
+ { value: 'MG-F', country_code: 'MG', text: 'Fianarantsoa' },
1856
+ { value: 'MG-M', country_code: 'MG', text: 'Mahajanga' },
1857
+ { value: 'MG-A', country_code: 'MG', text: 'Toamasina' },
1858
+ { value: 'MG-U', country_code: 'MG', text: 'Toliara' },
1859
+ { value: 'MH-ALL', country_code: 'MH', text: 'Ailinglaplap' },
1860
+ { value: 'MH-ALK', country_code: 'MH', text: 'Ailuk' },
1861
+ { value: 'MH-ARN', country_code: 'MH', text: 'Arno' },
1862
+ { value: 'MH-AUR', country_code: 'MH', text: 'Aur' },
1863
+ { value: 'MH-KIL', country_code: 'MH', text: 'Bikini and Kili' },
1864
+ { value: 'MH-EBO', country_code: 'MH', text: 'Ebon' },
1865
+ { value: 'MH-ENI', country_code: 'MH', text: 'Enewetak and Ujelang' },
1866
+ { value: 'MH-JAB', country_code: 'MH', text: 'Jabat' },
1867
+ { value: 'MH-JAL', country_code: 'MH', text: 'Jaluit' },
1868
+ { value: 'MH-KWA', country_code: 'MH', text: 'Kwajalein' },
1869
+ { value: 'MH-LAE', country_code: 'MH', text: 'Lae' },
1870
+ { value: 'MH-LIB', country_code: 'MH', text: 'Lib' },
1871
+ { value: 'MH-LIK', country_code: 'MH', text: 'Likiep' },
1872
+ { value: 'MH-MAJ', country_code: 'MH', text: 'Majuro' },
1873
+ { value: 'MH-MAL', country_code: 'MH', text: 'Maloelap' },
1874
+ { value: 'MH-MEJ', country_code: 'MH', text: 'Mejit' },
1875
+ { value: 'MH-MIL', country_code: 'MH', text: 'Mili' },
1876
+ { value: 'MH-NMK', country_code: 'MH', text: 'Namdrik' },
1877
+ { value: 'MH-NMU', country_code: 'MH', text: 'Namu' },
1878
+ { value: 'MH-RON', country_code: 'MH', text: 'Rongelap' },
1879
+ { value: 'MH-UJA', country_code: 'MH', text: 'Ujae' },
1880
+ { value: 'MH-UTI', country_code: 'MH', text: 'Utrik' },
1881
+ { value: 'MH-WTH', country_code: 'MH', text: 'Wotho' },
1882
+ { value: 'MH-WTJ', country_code: 'MH', text: 'Wotje' },
1883
+ { value: 'MK-02', country_code: 'MK', text: 'Aracinovo' },
1884
+ { value: 'MK-03', country_code: 'MK', text: 'Berovo' },
1885
+ { value: 'MK-04', country_code: 'MK', text: 'Bitola' },
1886
+ { value: 'MK-05', country_code: 'MK', text: 'Bogdanci' },
1887
+ { value: 'MK-06', country_code: 'MK', text: 'Bogovinje' },
1888
+ { value: 'MK-07', country_code: 'MK', text: 'Bosilovo' },
1889
+ { value: 'MK-08', country_code: 'MK', text: 'Brvenica' },
1890
+ { value: 'MK-80', country_code: 'MK', text: 'Caska' },
1891
+ { value: 'MK-78', country_code: 'MK', text: 'Centar Zupa' },
1892
+ { value: 'MK-81', country_code: 'MK', text: 'Cesinovo-Oblesevo' },
1893
+ { value: 'MK-82', country_code: 'MK', text: 'Cucer Sandevo' },
1894
+ { value: 'MK-21', country_code: 'MK', text: 'Debar' },
1895
+ { value: 'MK-22', country_code: 'MK', text: 'Debarca' },
1896
+ { value: 'MK-23', country_code: 'MK', text: 'Delcevo' },
1897
+ { value: 'MK-25', country_code: 'MK', text: 'Demir Hisar' },
1898
+ { value: 'MK-24', country_code: 'MK', text: 'Demir Kapija' },
1899
+ { value: 'MK-26', country_code: 'MK', text: 'Dojran' },
1900
+ { value: 'MK-27', country_code: 'MK', text: 'Dolneni' },
1901
+ { value: 'MK-18', country_code: 'MK', text: 'Gevgelija' },
1902
+ { value: 'MK-19', country_code: 'MK', text: 'Gostivar' },
1903
+ { value: 'MK-20', country_code: 'MK', text: 'Gradsko' },
1904
+ { value: 'MK-34', country_code: 'MK', text: 'Ilinden' },
1905
+ { value: 'MK-35', country_code: 'MK', text: 'Jegunovce' },
1906
+ { value: 'MK-37', country_code: 'MK', text: 'Karbinci' },
1907
+ { value: 'MK-36', country_code: 'MK', text: 'Kavadarci' },
1908
+ { value: 'MK-40', country_code: 'MK', text: 'Kicevo' },
1909
+ { value: 'MK-42', country_code: 'MK', text: 'Kocani' },
1910
+ { value: 'MK-41', country_code: 'MK', text: 'Konce' },
1911
+ { value: 'MK-43', country_code: 'MK', text: 'Kratovo' },
1912
+ { value: 'MK-44', country_code: 'MK', text: 'Kriva Palanka' },
1913
+ { value: 'MK-45', country_code: 'MK', text: 'Krivogastani' },
1914
+ { value: 'MK-46', country_code: 'MK', text: 'Krusevo' },
1915
+ { value: 'MK-47', country_code: 'MK', text: 'Kumanovo' },
1916
+ { value: 'MK-48', country_code: 'MK', text: 'Lipkovo' },
1917
+ { value: 'MK-49', country_code: 'MK', text: 'Lozovo' },
1918
+ { value: 'MK-51', country_code: 'MK', text: 'Makedonska Kamenica' },
1919
+ { value: 'MK-52', country_code: 'MK', text: 'Makedonski Brod' },
1920
+ { value: 'MK-50', country_code: 'MK', text: 'Mavrovo i Rostusa' },
1921
+ { value: 'MK-53', country_code: 'MK', text: 'Mogila' },
1922
+ { value: 'MK-54', country_code: 'MK', text: 'Negotino' },
1923
+ { value: 'MK-55', country_code: 'MK', text: 'Novaci' },
1924
+ { value: 'MK-56', country_code: 'MK', text: 'Novo Selo' },
1925
+ { value: 'MK-58', country_code: 'MK', text: 'Ohrid' },
1926
+ { value: 'MK-60', country_code: 'MK', text: 'Pehcevo' },
1927
+ { value: 'MK-59', country_code: 'MK', text: 'Petrovec' },
1928
+ { value: 'MK-61', country_code: 'MK', text: 'Plasnica' },
1929
+ { value: 'MK-62', country_code: 'MK', text: 'Prilep' },
1930
+ { value: 'MK-63', country_code: 'MK', text: 'Probistip' },
1931
+ { value: 'MK-64', country_code: 'MK', text: 'Radovis' },
1932
+ { value: 'MK-65', country_code: 'MK', text: 'Rankovce' },
1933
+ { value: 'MK-66', country_code: 'MK', text: 'Resen' },
1934
+ { value: 'MK-67', country_code: 'MK', text: 'Rosoman' },
1935
+ { value: 'MK-85', country_code: 'MK', text: 'Skopje' },
1936
+ { value: 'MK-70', country_code: 'MK', text: 'Sopiste' },
1937
+ { value: 'MK-71', country_code: 'MK', text: 'Staro Nagoricane' },
1938
+ { value: 'MK-83', country_code: 'MK', text: 'Stip' },
1939
+ { value: 'MK-72', country_code: 'MK', text: 'Struga' },
1940
+ { value: 'MK-73', country_code: 'MK', text: 'Strumica' },
1941
+ { value: 'MK-74', country_code: 'MK', text: 'Studenicani' },
1942
+ { value: 'MK-69', country_code: 'MK', text: 'Sveti Nikole' },
1943
+ { value: 'MK-75', country_code: 'MK', text: 'Tearce' },
1944
+ { value: 'MK-76', country_code: 'MK', text: 'Tetovo' },
1945
+ { value: 'MK-10', country_code: 'MK', text: 'Valandovo' },
1946
+ { value: 'MK-11', country_code: 'MK', text: 'Vasilevo' },
1947
+ { value: 'MK-13', country_code: 'MK', text: 'Veles' },
1948
+ { value: 'MK-12', country_code: 'MK', text: 'Vevcani' },
1949
+ { value: 'MK-14', country_code: 'MK', text: 'Vinica' },
1950
+ { value: 'MK-16', country_code: 'MK', text: 'Vrapciste' },
1951
+ { value: 'MK-32', country_code: 'MK', text: 'Zelenikovo' },
1952
+ { value: 'MK-30', country_code: 'MK', text: 'Zelino' },
1953
+ { value: 'MK-33', country_code: 'MK', text: 'Zrnovci' },
1954
+ { value: 'ML-BKO', country_code: 'ML', text: 'Bamako' },
1955
+ { value: 'ML-7', country_code: 'ML', text: 'Gao' },
1956
+ { value: 'ML-1', country_code: 'ML', text: 'Kayes' },
1957
+ { value: 'ML-8', country_code: 'ML', text: 'Kidal' },
1958
+ { value: 'ML-2', country_code: 'ML', text: 'Koulikoro' },
1959
+ { value: 'ML-5', country_code: 'ML', text: 'Mopti' },
1960
+ { value: 'ML-4', country_code: 'ML', text: 'Segou' },
1961
+ { value: 'ML-3', country_code: 'ML', text: 'Sikasso' },
1962
+ { value: 'ML-6', country_code: 'ML', text: 'Tombouctou' },
1963
+ { value: 'MM-07', country_code: 'MM', text: 'Ayeyarwady' },
1964
+ { value: 'MM-02', country_code: 'MM', text: 'Bago' },
1965
+ { value: 'MM-14', country_code: 'MM', text: 'Chin' },
1966
+ { value: 'MM-11', country_code: 'MM', text: 'Kachin' },
1967
+ { value: 'MM-12', country_code: 'MM', text: 'Kayah' },
1968
+ { value: 'MM-13', country_code: 'MM', text: 'Kayin' },
1969
+ { value: 'MM-03', country_code: 'MM', text: 'Magway' },
1970
+ { value: 'MM-04', country_code: 'MM', text: 'Mandalay' },
1971
+ { value: 'MM-15', country_code: 'MM', text: 'Mon' },
1972
+ { value: 'MM-18', country_code: 'MM', text: 'Nay Pyi Taw' },
1973
+ { value: 'MM-16', country_code: 'MM', text: 'Rakhine' },
1974
+ { value: 'MM-01', country_code: 'MM', text: 'Sagaing' },
1975
+ { value: 'MM-17', country_code: 'MM', text: 'Shan' },
1976
+ { value: 'MM-05', country_code: 'MM', text: 'Tanintharyi' },
1977
+ { value: 'MM-06', country_code: 'MM', text: 'Yangon' },
1978
+ { value: 'MN-073', country_code: 'MN', text: 'Arhangay' },
1979
+ { value: 'MN-071', country_code: 'MN', text: 'Bayan-Olgiy' },
1980
+ { value: 'MN-069', country_code: 'MN', text: 'Bayanhongor' },
1981
+ { value: 'MN-067', country_code: 'MN', text: 'Bulgan' },
1982
+ { value: 'MN-037', country_code: 'MN', text: 'Darhan uul' },
1983
+ { value: 'MN-061', country_code: 'MN', text: 'Dornod' },
1984
+ { value: 'MN-063', country_code: 'MN', text: 'Dornogovi' },
1985
+ { value: 'MN-059', country_code: 'MN', text: 'Dundgovi' },
1986
+ { value: 'MN-057', country_code: 'MN', text: 'Dzavhan' },
1987
+ { value: 'MN-065', country_code: 'MN', text: 'Govi-Altay' },
1988
+ { value: 'MN-064', country_code: 'MN', text: 'Govi-Sumber' },
1989
+ { value: 'MN-039', country_code: 'MN', text: 'Hentiy' },
1990
+ { value: 'MN-043', country_code: 'MN', text: 'Hovd' },
1991
+ { value: 'MN-041', country_code: 'MN', text: 'Hovsgol' },
1992
+ { value: 'MN-053', country_code: 'MN', text: 'Omnogovi' },
1993
+ { value: 'MN-035', country_code: 'MN', text: 'Orhon' },
1994
+ { value: 'MN-055', country_code: 'MN', text: 'Ovorhangay' },
1995
+ { value: 'MN-049', country_code: 'MN', text: 'Selenge' },
1996
+ { value: 'MN-051', country_code: 'MN', text: 'Suhbaatar' },
1997
+ { value: 'MN-047', country_code: 'MN', text: 'Tov' },
1998
+ { value: 'MN-1', country_code: 'MN', text: 'Ulaanbaatar' },
1999
+ { value: 'MN-046', country_code: 'MN', text: 'Uvs' },
2000
+ { value: 'MR-07', country_code: 'MR', text: 'Adrar' },
2001
+ { value: 'MR-03', country_code: 'MR', text: 'Assaba' },
2002
+ { value: 'MR-05', country_code: 'MR', text: 'Brakna' },
2003
+ { value: 'MR-08', country_code: 'MR', text: 'Dakhlet Nouadhibou' },
2004
+ { value: 'MR-04', country_code: 'MR', text: 'Gorgol' },
2005
+ { value: 'MR-10', country_code: 'MR', text: 'Guidimaka' },
2006
+ { value: 'MR-01', country_code: 'MR', text: 'Hodh ech Chargui' },
2007
+ { value: 'MR-02', country_code: 'MR', text: 'Hodh el Gharbi' },
2008
+ { value: 'MR-12', country_code: 'MR', text: 'Inchiri' },
2009
+ { value: 'MR-14', country_code: 'MR', text: 'Nouakchott Nord' },
2010
+ { value: 'MR-09', country_code: 'MR', text: 'Tagant' },
2011
+ { value: 'MR-11', country_code: 'MR', text: 'Tiris Zemmour' },
2012
+ { value: 'MR-06', country_code: 'MR', text: 'Trarza' },
2013
+ { value: 'MT-01', country_code: 'MT', text: 'Attard' },
2014
+ { value: 'MT-02', country_code: 'MT', text: 'Balzan' },
2015
+ { value: 'MT-04', country_code: 'MT', text: 'Birkirkara' },
2016
+ { value: 'MT-05', country_code: 'MT', text: 'Birzebbuga' },
2017
+ { value: 'MT-06', country_code: 'MT', text: 'Bormla' },
2018
+ { value: 'MT-07', country_code: 'MT', text: 'Dingli' },
2019
+ { value: 'MT-13', country_code: 'MT', text: 'Ghajnsielem' },
2020
+ { value: 'MT-15', country_code: 'MT', text: 'Gharghur' },
2021
+ { value: 'MT-17', country_code: 'MT', text: 'Ghaxaq' },
2022
+ { value: 'MT-64', country_code: 'MT', text: 'Haz-Zabbar' },
2023
+ { value: 'MT-60', country_code: 'MT', text: 'Valletta' },
2024
+ { value: 'MT-03', country_code: 'MT', text: 'Birgu' },
2025
+ { value: 'MT-08', country_code: 'MT', text: 'Fgura' },
2026
+ { value: 'MT-09', country_code: 'MT', text: 'Floriana' },
2027
+ { value: 'MT-11', country_code: 'MT', text: 'Gudja' },
2028
+ { value: 'MT-18', country_code: 'MT', text: 'Hamrun' },
2029
+ { value: 'MT-21', country_code: 'MT', text: 'Kalkara' },
2030
+ { value: 'MT-26', country_code: 'MT', text: 'Marsa' },
2031
+ { value: 'MT-30', country_code: 'MT', text: 'Mellieha' },
2032
+ { value: 'MT-32', country_code: 'MT', text: 'Mosta' },
2033
+ { value: 'MT-42', country_code: 'MT', text: 'Qala' },
2034
+ { value: 'MT-44', country_code: 'MT', text: 'Qrendi' },
2035
+ { value: 'MT-37', country_code: 'MT', text: 'Nadur' },
2036
+ { value: 'MT-38', country_code: 'MT', text: 'Naxxar' },
2037
+ { value: 'MT-46', country_code: 'MT', text: 'Rabat Malta' },
2038
+ { value: 'MT-55', country_code: 'MT', text: 'Siggiewi' },
2039
+ { value: 'MT-57', country_code: 'MT', text: 'Swieqi' },
2040
+ { value: 'MT-61', country_code: 'MT', text: 'Xaghra' },
2041
+ { value: 'MT-62', country_code: 'MT', text: 'Xewkija' },
2042
+ { value: 'MT-65', country_code: 'MT', text: 'Zebbug Gozo' },
2043
+ { value: 'MT-67', country_code: 'MT', text: 'Zejtun' },
2044
+ { value: 'MT-68', country_code: 'MT', text: 'Zurrieq' },
2045
+ { value: 'MT-23', country_code: 'MT', text: 'Kirkop' },
2046
+ { value: 'MT-19', country_code: 'MT', text: 'Iklin' },
2047
+ { value: 'MT-33', country_code: 'MT', text: 'Mqabba' },
2048
+ { value: 'MT-34', country_code: 'MT', text: 'Msida' },
2049
+ { value: 'MT-20', country_code: 'MT', text: 'Isla' },
2050
+ { value: 'MT-24', country_code: 'MT', text: 'Lija' },
2051
+ { value: 'MT-25', country_code: 'MT', text: 'Luqa' },
2052
+ { value: 'MT-28', country_code: 'MT', text: 'Marsaxlokk' },
2053
+ { value: 'MT-39', country_code: 'MT', text: 'Paola' },
2054
+ { value: 'MT-43', country_code: 'MT', text: 'Qormi' },
2055
+ { value: 'MT-47', country_code: 'MT', text: 'Safi' },
2056
+ { value: 'MT-49', country_code: 'MT', text: 'Saint John' },
2057
+ { value: 'MT-48', country_code: 'MT', text: 'Saint Julian' },
2058
+ { value: 'MT-53', country_code: 'MT', text: 'Saint Lucia' },
2059
+ { value: 'MT-51', country_code: 'MT', text: "Saint Paul's Bay" },
2060
+ { value: 'MT-54', country_code: 'MT', text: 'Saint Venera' },
2061
+ { value: 'MT-52', country_code: 'MT', text: 'Sannat' },
2062
+ { value: 'MT-22', country_code: 'MT', text: 'Kercem' },
2063
+ { value: 'MT-58', country_code: 'MT', text: "Ta' Xbiex" },
2064
+ { value: 'MT-59', country_code: 'MT', text: 'Tarxien' },
2065
+ { value: 'MT-56', country_code: 'MT', text: 'Sliema' },
2066
+ { value: 'MT-45', country_code: 'MT', text: 'Rabat Gozo' },
2067
+ { value: 'MU-BL', country_code: 'MU', text: 'Black River' },
2068
+ { value: 'MU-FL', country_code: 'MU', text: 'Flacq' },
2069
+ { value: 'MU-GP', country_code: 'MU', text: 'Grand Port' },
2070
+ { value: 'MU-MO', country_code: 'MU', text: 'Moka' },
2071
+ { value: 'MU-PA', country_code: 'MU', text: 'Pamplemousses' },
2072
+ { value: 'MU-PW', country_code: 'MU', text: 'Plaines Wilhems' },
2073
+ { value: 'MU-PU', country_code: 'MU', text: 'Port Louis' },
2074
+ { value: 'MU-RR', country_code: 'MU', text: 'Riviere du Rempart' },
2075
+ { value: 'MU-SA', country_code: 'MU', text: 'Savanne' },
2076
+ { value: 'MV-02', country_code: 'MV', text: 'Alifu Alifu' },
2077
+ { value: 'MV-20', country_code: 'MV', text: 'Baa' },
2078
+ { value: 'MV-17', country_code: 'MV', text: 'Dhaalu' },
2079
+ { value: 'MV-28', country_code: 'MV', text: 'Gaafu Dhaalu' },
2080
+ { value: 'MV-07', country_code: 'MV', text: 'Haa Alifu' },
2081
+ { value: 'MV-23', country_code: 'MV', text: 'Haa Dhaalu' },
2082
+ { value: 'MV-26', country_code: 'MV', text: 'Kaafu' },
2083
+ { value: 'MV-05', country_code: 'MV', text: 'Laamu' },
2084
+ { value: 'MV-MLE', country_code: 'MV', text: 'Maale' },
2085
+ { value: 'MV-12', country_code: 'MV', text: 'Meemu' },
2086
+ { value: 'MV-25', country_code: 'MV', text: 'Noonu' },
2087
+ { value: 'MV-13', country_code: 'MV', text: 'Raa' },
2088
+ { value: 'MV-01', country_code: 'MV', text: 'Seenu' },
2089
+ { value: 'MV-24', country_code: 'MV', text: 'Shaviyani' },
2090
+ { value: 'MV-08', country_code: 'MV', text: 'Thaa' },
2091
+ { value: 'MW-BA', country_code: 'MW', text: 'Balaka' },
2092
+ { value: 'MW-BL', country_code: 'MW', text: 'Blantyre' },
2093
+ { value: 'MW-CK', country_code: 'MW', text: 'Chikwawa' },
2094
+ { value: 'MW-CR', country_code: 'MW', text: 'Chiradzulu' },
2095
+ { value: 'MW-CT', country_code: 'MW', text: 'Chitipa' },
2096
+ { value: 'MW-DE', country_code: 'MW', text: 'Dedza' },
2097
+ { value: 'MW-DO', country_code: 'MW', text: 'Dowa' },
2098
+ { value: 'MW-KR', country_code: 'MW', text: 'Karonga' },
2099
+ { value: 'MW-KS', country_code: 'MW', text: 'Kasungu' },
2100
+ { value: 'MW-LK', country_code: 'MW', text: 'Likoma' },
2101
+ { value: 'MW-LI', country_code: 'MW', text: 'Lilongwe' },
2102
+ { value: 'MW-MH', country_code: 'MW', text: 'Machinga' },
2103
+ { value: 'MW-MG', country_code: 'MW', text: 'Mangochi' },
2104
+ { value: 'MW-MC', country_code: 'MW', text: 'Mchinji' },
2105
+ { value: 'MW-MU', country_code: 'MW', text: 'Mulanje' },
2106
+ { value: 'MW-MW', country_code: 'MW', text: 'Mwanza' },
2107
+ { value: 'MW-MZ', country_code: 'MW', text: 'Mzimba' },
2108
+ { value: 'MW-NE', country_code: 'MW', text: 'Neno' },
2109
+ { value: 'MW-NB', country_code: 'MW', text: 'Nkhata Bay' },
2110
+ { value: 'MW-NK', country_code: 'MW', text: 'Nkhotakota' },
2111
+ { value: 'MW-NS', country_code: 'MW', text: 'Nsanje' },
2112
+ { value: 'MW-NU', country_code: 'MW', text: 'Ntcheu' },
2113
+ { value: 'MW-NI', country_code: 'MW', text: 'Ntchisi' },
2114
+ { value: 'MW-PH', country_code: 'MW', text: 'Phalombe' },
2115
+ { value: 'MW-RU', country_code: 'MW', text: 'Rumphi' },
2116
+ { value: 'MW-SA', country_code: 'MW', text: 'Salima' },
2117
+ { value: 'MW-TH', country_code: 'MW', text: 'Thyolo' },
2118
+ { value: 'MW-ZO', country_code: 'MW', text: 'Zomba' },
2119
+ { value: 'MX-AGU', country_code: 'MX', text: 'Aguascalientes' },
2120
+ { value: 'MX-BCN', country_code: 'MX', text: 'Baja California' },
2121
+ { value: 'MX-BCS', country_code: 'MX', text: 'Baja California Sur' },
2122
+ { value: 'MX-CAM', country_code: 'MX', text: 'Campeche' },
2123
+ { value: 'MX-CHP', country_code: 'MX', text: 'Chiapas' },
2124
+ { value: 'MX-CHH', country_code: 'MX', text: 'Chihuahua' },
2125
+ { value: 'MX-CMX', country_code: 'MX', text: 'Ciudad de Mexico' },
2126
+ { value: 'MX-COA', country_code: 'MX', text: 'Coahuila de Zaragoza' },
2127
+ { value: 'MX-COL', country_code: 'MX', text: 'Colima' },
2128
+ { value: 'MX-DUR', country_code: 'MX', text: 'Durango' },
2129
+ { value: 'MX-GUA', country_code: 'MX', text: 'Guanajuato' },
2130
+ { value: 'MX-GRO', country_code: 'MX', text: 'Guerrero' },
2131
+ { value: 'MX-HID', country_code: 'MX', text: 'Hidalgo' },
2132
+ { value: 'MX-JAL', country_code: 'MX', text: 'Jalisco' },
2133
+ { value: 'MX-MEX', country_code: 'MX', text: 'Mexico' },
2134
+ { value: 'MX-MIC', country_code: 'MX', text: 'Michoacan de Ocampo' },
2135
+ { value: 'MX-MOR', country_code: 'MX', text: 'Morelos' },
2136
+ { value: 'MX-NAY', country_code: 'MX', text: 'Nayarit' },
2137
+ { value: 'MX-NLE', country_code: 'MX', text: 'Nuevo Leon' },
2138
+ { value: 'MX-OAX', country_code: 'MX', text: 'Oaxaca' },
2139
+ { value: 'MX-PUE', country_code: 'MX', text: 'Puebla' },
2140
+ { value: 'MX-QUE', country_code: 'MX', text: 'Queretaro' },
2141
+ { value: 'MX-ROO', country_code: 'MX', text: 'Quintana Roo' },
2142
+ { value: 'MX-SLP', country_code: 'MX', text: 'San Luis Potosi' },
2143
+ { value: 'MX-SIN', country_code: 'MX', text: 'Sinaloa' },
2144
+ { value: 'MX-SON', country_code: 'MX', text: 'Sonora' },
2145
+ { value: 'MX-TAB', country_code: 'MX', text: 'Tabasco' },
2146
+ { value: 'MX-TAM', country_code: 'MX', text: 'Tamaulipas' },
2147
+ { value: 'MX-TLA', country_code: 'MX', text: 'Tlaxcala' },
2148
+ {
2149
+ value: 'MX-VER',
2150
+ country_code: 'MX',
2151
+ text: 'Veracruz de Ignacio de la Llave'
2152
+ },
2153
+ { value: 'MX-YUC', country_code: 'MX', text: 'Yucatan' },
2154
+ { value: 'MX-ZAC', country_code: 'MX', text: 'Zacatecas' },
2155
+ { value: 'MY-01', country_code: 'MY', text: 'Johor' },
2156
+ { value: 'MY-02', country_code: 'MY', text: 'Kedah' },
2157
+ { value: 'MY-03', country_code: 'MY', text: 'Kelantan' },
2158
+ { value: 'MY-04', country_code: 'MY', text: 'Melaka' },
2159
+ { value: 'MY-05', country_code: 'MY', text: 'Negeri Sembilan' },
2160
+ { value: 'MY-06', country_code: 'MY', text: 'Pahang' },
2161
+ { value: 'MY-08', country_code: 'MY', text: 'Perak' },
2162
+ { value: 'MY-09', country_code: 'MY', text: 'Perlis' },
2163
+ { value: 'MY-07', country_code: 'MY', text: 'Pulau Pinang' },
2164
+ { value: 'MY-12', country_code: 'MY', text: 'Sabah' },
2165
+ { value: 'MY-13', country_code: 'MY', text: 'Sarawak' },
2166
+ { value: 'MY-10', country_code: 'MY', text: 'Selangor' },
2167
+ { value: 'MY-11', country_code: 'MY', text: 'Terengganu' },
2168
+ {
2169
+ value: 'MY-14',
2170
+ country_code: 'MY',
2171
+ text: 'Wilayah Persekutuan Kuala Lumpur'
2172
+ },
2173
+ { value: 'MY-15', country_code: 'MY', text: 'Wilayah Persekutuan Labuan' },
2174
+ {
2175
+ value: 'MY-16',
2176
+ country_code: 'MY',
2177
+ text: 'Wilayah Persekutuan Putrajaya'
2178
+ },
2179
+ { value: 'MZ-P', country_code: 'MZ', text: 'Cabo Delgado' },
2180
+ { value: 'MZ-G', country_code: 'MZ', text: 'Gaza' },
2181
+ { value: 'MZ-I', country_code: 'MZ', text: 'Inhambane' },
2182
+ { value: 'MZ-B', country_code: 'MZ', text: 'Manica' },
2183
+ { value: 'MZ-MPM', country_code: 'MZ', text: 'Maputo' },
2184
+ { value: 'MZ-N', country_code: 'MZ', text: 'Nampula' },
2185
+ { value: 'MZ-A', country_code: 'MZ', text: 'Niassa' },
2186
+ { value: 'MZ-S', country_code: 'MZ', text: 'Sofala' },
2187
+ { value: 'MZ-T', country_code: 'MZ', text: 'Tete' },
2188
+ { value: 'MZ-Q', country_code: 'MZ', text: 'Zambezia' },
2189
+ { value: 'NA-ER', country_code: 'NA', text: 'Erongo' },
2190
+ { value: 'NA-HA', country_code: 'NA', text: 'Hardap' },
2191
+ { value: 'NA-KA', country_code: 'NA', text: 'Karas' },
2192
+ { value: 'NA-KE', country_code: 'NA', text: 'Kavango East' },
2193
+ { value: 'NA-KH', country_code: 'NA', text: 'Khomas' },
2194
+ { value: 'NA-KU', country_code: 'NA', text: 'Kunene' },
2195
+ { value: 'NA-OW', country_code: 'NA', text: 'Ohangwena' },
2196
+ { value: 'NA-OH', country_code: 'NA', text: 'Omaheke' },
2197
+ { value: 'NA-OS', country_code: 'NA', text: 'Omusati' },
2198
+ { value: 'NA-ON', country_code: 'NA', text: 'Oshana' },
2199
+ { value: 'NA-OT', country_code: 'NA', text: 'Oshikoto' },
2200
+ { value: 'NA-OD', country_code: 'NA', text: 'Otjozondjupa' },
2201
+ { value: 'NA-CA', country_code: 'NA', text: 'Zambezi' },
2202
+ { value: 'NE-1', country_code: 'NE', text: 'Agadez' },
2203
+ { value: 'NE-2', country_code: 'NE', text: 'Diffa' },
2204
+ { value: 'NE-3', country_code: 'NE', text: 'Dosso' },
2205
+ { value: 'NE-4', country_code: 'NE', text: 'Maradi' },
2206
+ { value: 'NE-8', country_code: 'NE', text: 'Niamey' },
2207
+ { value: 'NE-5', country_code: 'NE', text: 'Tahoua' },
2208
+ { value: 'NE-6', country_code: 'NE', text: 'Tillaberi' },
2209
+ { value: 'NE-7', country_code: 'NE', text: 'Zinder' },
2210
+ { value: 'NG-AB', country_code: 'NG', text: 'Abia' },
2211
+ {
2212
+ value: 'NG-FC',
2213
+ country_code: 'NG',
2214
+ text: 'Abuja Federal Capital Territory'
2215
+ },
2216
+ { value: 'NG-AD', country_code: 'NG', text: 'Adamawa' },
2217
+ { value: 'NG-AK', country_code: 'NG', text: 'Akwa Ibom' },
2218
+ { value: 'NG-AN', country_code: 'NG', text: 'Anambra' },
2219
+ { value: 'NG-BA', country_code: 'NG', text: 'Bauchi' },
2220
+ { value: 'NG-BY', country_code: 'NG', text: 'Bayelsa' },
2221
+ { value: 'NG-BE', country_code: 'NG', text: 'Benue' },
2222
+ { value: 'NG-BO', country_code: 'NG', text: 'Borno' },
2223
+ { value: 'NG-CR', country_code: 'NG', text: 'Cross River' },
2224
+ { value: 'NG-DE', country_code: 'NG', text: 'Delta' },
2225
+ { value: 'NG-EB', country_code: 'NG', text: 'Ebonyi' },
2226
+ { value: 'NG-ED', country_code: 'NG', text: 'Edo' },
2227
+ { value: 'NG-EK', country_code: 'NG', text: 'Ekiti' },
2228
+ { value: 'NG-EN', country_code: 'NG', text: 'Enugu' },
2229
+ { value: 'NG-GO', country_code: 'NG', text: 'Gombe' },
2230
+ { value: 'NG-IM', country_code: 'NG', text: 'Imo' },
2231
+ { value: 'NG-JI', country_code: 'NG', text: 'Jigawa' },
2232
+ { value: 'NG-KD', country_code: 'NG', text: 'Kaduna' },
2233
+ { value: 'NG-KN', country_code: 'NG', text: 'Kano' },
2234
+ { value: 'NG-KT', country_code: 'NG', text: 'Katsina' },
2235
+ { value: 'NG-KE', country_code: 'NG', text: 'Kebbi' },
2236
+ { value: 'NG-KO', country_code: 'NG', text: 'Kogi' },
2237
+ { value: 'NG-KW', country_code: 'NG', text: 'Kwara' },
2238
+ { value: 'NG-LA', country_code: 'NG', text: 'Lagos' },
2239
+ { value: 'NG-NA', country_code: 'NG', text: 'Nasarawa' },
2240
+ { value: 'NG-NI', country_code: 'NG', text: 'Niger' },
2241
+ { value: 'NG-OG', country_code: 'NG', text: 'Ogun' },
2242
+ { value: 'NG-ON', country_code: 'NG', text: 'Ondo' },
2243
+ { value: 'NG-OS', country_code: 'NG', text: 'Osun' },
2244
+ { value: 'NG-OY', country_code: 'NG', text: 'Oyo' },
2245
+ { value: 'NG-PL', country_code: 'NG', text: 'Plateau' },
2246
+ { value: 'NG-RI', country_code: 'NG', text: 'Rivers' },
2247
+ { value: 'NG-SO', country_code: 'NG', text: 'Sokoto' },
2248
+ { value: 'NG-TA', country_code: 'NG', text: 'Taraba' },
2249
+ { value: 'NG-YO', country_code: 'NG', text: 'Yobe' },
2250
+ { value: 'NG-ZA', country_code: 'NG', text: 'Zamfara' },
2251
+ { value: 'NI-AN', country_code: 'NI', text: 'Atlantico Norte' },
2252
+ { value: 'NI-AS', country_code: 'NI', text: 'Atlantico Sur' },
2253
+ { value: 'NI-BO', country_code: 'NI', text: 'Boaco' },
2254
+ { value: 'NI-CA', country_code: 'NI', text: 'Carazo' },
2255
+ { value: 'NI-CI', country_code: 'NI', text: 'Chinandega' },
2256
+ { value: 'NI-CO', country_code: 'NI', text: 'Chontales' },
2257
+ { value: 'NI-ES', country_code: 'NI', text: 'Esteli' },
2258
+ { value: 'NI-GR', country_code: 'NI', text: 'Granada' },
2259
+ { value: 'NI-JI', country_code: 'NI', text: 'Jinotega' },
2260
+ { value: 'NI-LE', country_code: 'NI', text: 'Leon' },
2261
+ { value: 'NI-MD', country_code: 'NI', text: 'Madriz' },
2262
+ { value: 'NI-MN', country_code: 'NI', text: 'Managua' },
2263
+ { value: 'NI-MS', country_code: 'NI', text: 'Masaya' },
2264
+ { value: 'NI-MT', country_code: 'NI', text: 'Matagalpa' },
2265
+ { value: 'NI-NS', country_code: 'NI', text: 'Nueva Segovia' },
2266
+ { value: 'NI-SJ', country_code: 'NI', text: 'Rio San Juan' },
2267
+ { value: 'NI-RI', country_code: 'NI', text: 'Rivas' },
2268
+ { value: 'NL-DR', country_code: 'NL', text: 'Drenthe' },
2269
+ { value: 'NL-FL', country_code: 'NL', text: 'Flevoland' },
2270
+ { value: 'NL-FR', country_code: 'NL', text: 'Fryslan' },
2271
+ { value: 'NL-GE', country_code: 'NL', text: 'Gelderland' },
2272
+ { value: 'NL-GR', country_code: 'NL', text: 'Groningen' },
2273
+ { value: 'NL-LI', country_code: 'NL', text: 'Limburg' },
2274
+ { value: 'NL-NB', country_code: 'NL', text: 'Noord-Brabant' },
2275
+ { value: 'NL-NH', country_code: 'NL', text: 'Noord-Holland' },
2276
+ { value: 'NL-OV', country_code: 'NL', text: 'Overijssel' },
2277
+ { value: 'NL-UT', country_code: 'NL', text: 'Utrecht' },
2278
+ { value: 'NL-ZE', country_code: 'NL', text: 'Zeeland' },
2279
+ { value: 'NL-ZH', country_code: 'NL', text: 'Zuid-Holland' },
2280
+ { value: 'NO-02', country_code: 'NO', text: 'Akershus' },
2281
+ { value: 'NO-09', country_code: 'NO', text: 'Aust-Agder' },
2282
+ { value: 'NO-06', country_code: 'NO', text: 'Buskerud' },
2283
+ { value: 'NO-20', country_code: 'NO', text: 'Finnmark' },
2284
+ { value: 'NO-04', country_code: 'NO', text: 'Hedmark' },
2285
+ { value: 'NO-12', country_code: 'NO', text: 'Hordaland' },
2286
+ { value: 'NO-15', country_code: 'NO', text: 'More og Romsdal' },
2287
+ { value: 'NO-17', country_code: 'NO', text: 'Nord-Trondelag' },
2288
+ { value: 'NO-18', country_code: 'NO', text: 'Nordland' },
2289
+ { value: 'NO-05', country_code: 'NO', text: 'Oppland' },
2290
+ { value: 'NO-03', country_code: 'NO', text: 'Oslo' },
2291
+ { value: 'NO-01', country_code: 'NO', text: 'Ostfold' },
2292
+ { value: 'NO-11', country_code: 'NO', text: 'Rogaland' },
2293
+ { value: 'NO-14', country_code: 'NO', text: 'Sogn og Fjordane' },
2294
+ { value: 'NO-16', country_code: 'NO', text: 'Sor-Trondelag' },
2295
+ { value: 'NO-08', country_code: 'NO', text: 'Telemark' },
2296
+ { value: 'NO-19', country_code: 'NO', text: 'Troms' },
2297
+ { value: 'NO-10', country_code: 'NO', text: 'Vest-Agder' },
2298
+ { value: 'NO-07', country_code: 'NO', text: 'Vestfold' },
2299
+ { value: 'NP-BA', country_code: 'NP', text: 'Bagmati' },
2300
+ { value: 'NP-BH', country_code: 'NP', text: 'Bheri' },
2301
+ { value: 'NP-DH', country_code: 'NP', text: 'Dhawalagiri' },
2302
+ { value: 'NP-GA', country_code: 'NP', text: 'Gandaki' },
2303
+ { value: 'NP-JA', country_code: 'NP', text: 'Janakpur' },
2304
+ { value: 'NP-KA', country_code: 'NP', text: 'Karnali' },
2305
+ { value: 'NP-KO', country_code: 'NP', text: 'Kosi' },
2306
+ { value: 'NP-LU', country_code: 'NP', text: 'Lumbini' },
2307
+ { value: 'NP-MA', country_code: 'NP', text: 'Mahakali' },
2308
+ { value: 'NP-ME', country_code: 'NP', text: 'Mechi' },
2309
+ { value: 'NP-NA', country_code: 'NP', text: 'Narayani' },
2310
+ { value: 'NP-RA', country_code: 'NP', text: 'Rapti' },
2311
+ { value: 'NP-SA', country_code: 'NP', text: 'Sagarmatha' },
2312
+ { value: 'NP-SE', country_code: 'NP', text: 'Seti' },
2313
+ { value: 'NR-14', country_code: 'NR', text: 'Yaren' },
2314
+ { value: 'NZ-AUK', country_code: 'NZ', text: 'Auckland' },
2315
+ { value: 'NZ-BOP', country_code: 'NZ', text: 'Bay of Plenty' },
2316
+ { value: 'NZ-CAN', country_code: 'NZ', text: 'Canterbury' },
2317
+ { value: 'NZ-CIT', country_code: 'NZ', text: 'Chatham Islands Territory' },
2318
+ { value: 'NZ-GIS', country_code: 'NZ', text: 'Gisborne' },
2319
+ { value: 'NZ-HKB', country_code: 'NZ', text: "Hawke's Bay" },
2320
+ { value: 'NZ-MWT', country_code: 'NZ', text: 'Manawatu-Wanganui' },
2321
+ { value: 'NZ-MBH', country_code: 'NZ', text: 'Marlborough' },
2322
+ { value: 'NZ-NSN', country_code: 'NZ', text: 'Nelson' },
2323
+ { value: 'NZ-NTL', country_code: 'NZ', text: 'Northland' },
2324
+ { value: 'NZ-OTA', country_code: 'NZ', text: 'Otago' },
2325
+ { value: 'NZ-STL', country_code: 'NZ', text: 'Southland' },
2326
+ { value: 'NZ-TKI', country_code: 'NZ', text: 'Taranaki' },
2327
+ { value: 'NZ-TAS', country_code: 'NZ', text: 'Tasman' },
2328
+ { value: 'NZ-WKO', country_code: 'NZ', text: 'Waikato' },
2329
+ { value: 'NZ-WGN', country_code: 'NZ', text: 'Wellington' },
2330
+ { value: 'NZ-WTC', country_code: 'NZ', text: 'West Coast' },
2331
+ { value: 'OM-DA', country_code: 'OM', text: 'Ad Dakhiliyah' },
2332
+ { value: 'OM-BU', country_code: 'OM', text: 'Al Buraymi' },
2333
+ { value: 'OM-WU', country_code: 'OM', text: 'Al Wusta' },
2334
+ { value: 'OM-ZA', country_code: 'OM', text: 'Az Zahirah' },
2335
+ { value: 'OM-BJ', country_code: 'OM', text: 'Janub al Batinah' },
2336
+ { value: 'OM-SJ', country_code: 'OM', text: 'Janub ash Sharqiyah' },
2337
+ { value: 'OM-MA', country_code: 'OM', text: 'Masqat' },
2338
+ { value: 'OM-MU', country_code: 'OM', text: 'Musandam' },
2339
+ { value: 'OM-BS', country_code: 'OM', text: 'Shamal al Batinah' },
2340
+ { value: 'OM-SS', country_code: 'OM', text: 'Shamal ash Sharqiyah' },
2341
+ { value: 'OM-ZU', country_code: 'OM', text: 'Zufar' },
2342
+ { value: 'PA-1', country_code: 'PA', text: 'Bocas del Toro' },
2343
+ { value: 'PA-4', country_code: 'PA', text: 'Chiriqui' },
2344
+ { value: 'PA-2', country_code: 'PA', text: 'Cocle' },
2345
+ { value: 'PA-3', country_code: 'PA', text: 'Colon' },
2346
+ { value: 'PA-5', country_code: 'PA', text: 'Darien' },
2347
+ { value: 'PA-6', country_code: 'PA', text: 'Herrera' },
2348
+ { value: 'PA-7', country_code: 'PA', text: 'Los Santos' },
2349
+ { value: 'PA-8', country_code: 'PA', text: 'Panama' },
2350
+ { value: 'PA-9', country_code: 'PA', text: 'Veraguas' },
2351
+ { value: 'PE-AMA', country_code: 'PE', text: 'Amazonas' },
2352
+ { value: 'PE-ANC', country_code: 'PE', text: 'Ancash' },
2353
+ { value: 'PE-APU', country_code: 'PE', text: 'Apurimac' },
2354
+ { value: 'PE-ARE', country_code: 'PE', text: 'Arequipa' },
2355
+ { value: 'PE-AYA', country_code: 'PE', text: 'Ayacucho' },
2356
+ { value: 'PE-CAJ', country_code: 'PE', text: 'Cajamarca' },
2357
+ { value: 'PE-CUS', country_code: 'PE', text: 'Cusco' },
2358
+ { value: 'PE-CAL', country_code: 'PE', text: 'El Callao' },
2359
+ { value: 'PE-HUV', country_code: 'PE', text: 'Huancavelica' },
2360
+ { value: 'PE-HUC', country_code: 'PE', text: 'Huanuco' },
2361
+ { value: 'PE-ICA', country_code: 'PE', text: 'Ica' },
2362
+ { value: 'PE-JUN', country_code: 'PE', text: 'Junin' },
2363
+ { value: 'PE-LAL', country_code: 'PE', text: 'La Libertad' },
2364
+ { value: 'PE-LAM', country_code: 'PE', text: 'Lambayeque' },
2365
+ { value: 'PE-LIM', country_code: 'PE', text: 'Lima' },
2366
+ { value: 'PE-LOR', country_code: 'PE', text: 'Loreto' },
2367
+ { value: 'PE-MDD', country_code: 'PE', text: 'Madre de Dios' },
2368
+ { value: 'PE-MOQ', country_code: 'PE', text: 'Moquegua' },
2369
+ { value: 'PE-PAS', country_code: 'PE', text: 'Pasco' },
2370
+ { value: 'PE-PIU', country_code: 'PE', text: 'Piura' },
2371
+ { value: 'PE-PUN', country_code: 'PE', text: 'Puno' },
2372
+ { value: 'PE-SAM', country_code: 'PE', text: 'San Martin' },
2373
+ { value: 'PE-TAC', country_code: 'PE', text: 'Tacna' },
2374
+ { value: 'PE-TUM', country_code: 'PE', text: 'Tumbes' },
2375
+ { value: 'PE-UCA', country_code: 'PE', text: 'Ucayali' },
2376
+ { value: 'PG-NSB', country_code: 'PG', text: 'Bougainville' },
2377
+ { value: 'PG-CPK', country_code: 'PG', text: 'Chimbu' },
2378
+ { value: 'PG-EBR', country_code: 'PG', text: 'East New Britain' },
2379
+ { value: 'PG-ESW', country_code: 'PG', text: 'East Sepik' },
2380
+ { value: 'PG-EHG', country_code: 'PG', text: 'Eastern Highlands' },
2381
+ { value: 'PG-EPW', country_code: 'PG', text: 'Enga' },
2382
+ { value: 'PG-GPK', country_code: 'PG', text: 'Gulf' },
2383
+ { value: 'PG-MPM', country_code: 'PG', text: 'Madang' },
2384
+ { value: 'PG-MRL', country_code: 'PG', text: 'Manus' },
2385
+ { value: 'PG-MBA', country_code: 'PG', text: 'Milne Bay' },
2386
+ { value: 'PG-MPL', country_code: 'PG', text: 'Morobe' },
2387
+ {
2388
+ value: 'PG-NCD',
2389
+ country_code: 'PG',
2390
+ text: 'National Capital District (Port Moresby)'
2391
+ },
2392
+ { value: 'PG-NIK', country_code: 'PG', text: 'New Ireland' },
2393
+ { value: 'PG-NPP', country_code: 'PG', text: 'Northern' },
2394
+ { value: 'PG-SHM', country_code: 'PG', text: 'Southern Highlands' },
2395
+ { value: 'PG-WBK', country_code: 'PG', text: 'West New Britain' },
2396
+ { value: 'PG-SAN', country_code: 'PG', text: 'West Sepik' },
2397
+ { value: 'PG-WPD', country_code: 'PG', text: 'Western' },
2398
+ { value: 'PG-WHM', country_code: 'PG', text: 'Western Highlands' },
2399
+ { value: 'PH-ABR', country_code: 'PH', text: 'Abra' },
2400
+ { value: 'PH-AGN', country_code: 'PH', text: 'Agusan del Norte' },
2401
+ { value: 'PH-AGS', country_code: 'PH', text: 'Agusan del Sur' },
2402
+ { value: 'PH-AKL', country_code: 'PH', text: 'Aklan' },
2403
+ { value: 'PH-ALB', country_code: 'PH', text: 'Albay' },
2404
+ { value: 'PH-ANT', country_code: 'PH', text: 'Antique' },
2405
+ { value: 'PH-APA', country_code: 'PH', text: 'Apayao' },
2406
+ { value: 'PH-AUR', country_code: 'PH', text: 'Aurora' },
2407
+ { value: 'PH-BAS', country_code: 'PH', text: 'Basilan' },
2408
+ { value: 'PH-BAN', country_code: 'PH', text: 'Bataan' },
2409
+ { value: 'PH-BTN', country_code: 'PH', text: 'Batanes' },
2410
+ { value: 'PH-BTG', country_code: 'PH', text: 'Batangas' },
2411
+ { value: 'PH-BEN', country_code: 'PH', text: 'Benguet' },
2412
+ { value: 'PH-BOH', country_code: 'PH', text: 'Bohol' },
2413
+ { value: 'PH-BUK', country_code: 'PH', text: 'Bukidnon' },
2414
+ { value: 'PH-BUL', country_code: 'PH', text: 'Bulacan' },
2415
+ { value: 'PH-CAG', country_code: 'PH', text: 'Cagayan' },
2416
+ { value: 'PH-CAN', country_code: 'PH', text: 'Camarines Norte' },
2417
+ { value: 'PH-CAS', country_code: 'PH', text: 'Camarines Sur' },
2418
+ { value: 'PH-CAM', country_code: 'PH', text: 'Camiguin' },
2419
+ { value: 'PH-CAP', country_code: 'PH', text: 'Capiz' },
2420
+ { value: 'PH-CAT', country_code: 'PH', text: 'Catanduanes' },
2421
+ { value: 'PH-CAV', country_code: 'PH', text: 'Cavite' },
2422
+ { value: 'PH-CEB', country_code: 'PH', text: 'Cebu' },
2423
+ { value: 'PH-NCO', country_code: 'PH', text: 'Cotabato' },
2424
+ { value: 'PH-DAS', country_code: 'PH', text: 'Davao del Sur' },
2425
+ { value: 'PH-DAO', country_code: 'PH', text: 'Davao Oriental' },
2426
+ { value: 'PH-EAS', country_code: 'PH', text: 'Eastern Samar' },
2427
+ { value: 'PH-IFU', country_code: 'PH', text: 'Ifugao' },
2428
+ { value: 'PH-ILN', country_code: 'PH', text: 'Ilocos Norte' },
2429
+ { value: 'PH-ILS', country_code: 'PH', text: 'Ilocos Sur' },
2430
+ { value: 'PH-ILI', country_code: 'PH', text: 'Iloilo' },
2431
+ { value: 'PH-ISA', country_code: 'PH', text: 'Isabela' },
2432
+ { value: 'PH-KAL', country_code: 'PH', text: 'Kalinga' },
2433
+ { value: 'PH-LUN', country_code: 'PH', text: 'La Union' },
2434
+ { value: 'PH-LAG', country_code: 'PH', text: 'Laguna' },
2435
+ { value: 'PH-LAN', country_code: 'PH', text: 'Lanao del Norte' },
2436
+ { value: 'PH-LAS', country_code: 'PH', text: 'Lanao del Sur' },
2437
+ { value: 'PH-LEY', country_code: 'PH', text: 'Leyte' },
2438
+ { value: 'PH-MAG', country_code: 'PH', text: 'Maguindanao' },
2439
+ { value: 'PH-MAD', country_code: 'PH', text: 'Marinduque' },
2440
+ { value: 'PH-MAS', country_code: 'PH', text: 'Masbate' },
2441
+ { value: 'PH-MDC', country_code: 'PH', text: 'Mindoro Occidental' },
2442
+ { value: 'PH-MDR', country_code: 'PH', text: 'Mindoro Oriental' },
2443
+ { value: 'PH-MSC', country_code: 'PH', text: 'Misamis Occidental' },
2444
+ { value: 'PH-MSR', country_code: 'PH', text: 'Misamis Oriental' },
2445
+ { value: 'PH-MOU', country_code: 'PH', text: 'Mountain Province' },
2446
+ { value: 'PH-00', country_code: 'PH', text: 'National Capital Region' },
2447
+ { value: 'PH-NEC', country_code: 'PH', text: 'Negros Occidental' },
2448
+ { value: 'PH-NER', country_code: 'PH', text: 'Negros Oriental' },
2449
+ { value: 'PH-NSA', country_code: 'PH', text: 'Northern Samar' },
2450
+ { value: 'PH-NUE', country_code: 'PH', text: 'Nueva Ecija' },
2451
+ { value: 'PH-NUV', country_code: 'PH', text: 'Nueva Vizcaya' },
2452
+ { value: 'PH-PLW', country_code: 'PH', text: 'Palawan' },
2453
+ { value: 'PH-PAM', country_code: 'PH', text: 'Pampanga' },
2454
+ { value: 'PH-PAN', country_code: 'PH', text: 'Pangasinan' },
2455
+ { value: 'PH-QUE', country_code: 'PH', text: 'Quezon' },
2456
+ { value: 'PH-QUI', country_code: 'PH', text: 'Quirino' },
2457
+ { value: 'PH-RIZ', country_code: 'PH', text: 'Rizal' },
2458
+ { value: 'PH-ROM', country_code: 'PH', text: 'Romblon' },
2459
+ { value: 'PH-WSA', country_code: 'PH', text: 'Samar' },
2460
+ { value: 'PH-SIG', country_code: 'PH', text: 'Siquijor' },
2461
+ { value: 'PH-SOR', country_code: 'PH', text: 'Sorsogon' },
2462
+ { value: 'PH-SCO', country_code: 'PH', text: 'South Cotabato' },
2463
+ { value: 'PH-SLE', country_code: 'PH', text: 'Southern Leyte' },
2464
+ { value: 'PH-SUK', country_code: 'PH', text: 'Sultan Kudarat' },
2465
+ { value: 'PH-SLU', country_code: 'PH', text: 'Sulu' },
2466
+ { value: 'PH-SUN', country_code: 'PH', text: 'Surigao del Norte' },
2467
+ { value: 'PH-SUR', country_code: 'PH', text: 'Surigao del Sur' },
2468
+ { value: 'PH-TAR', country_code: 'PH', text: 'Tarlac' },
2469
+ { value: 'PH-TAW', country_code: 'PH', text: 'Tawi-Tawi' },
2470
+ { value: 'PH-ZMB', country_code: 'PH', text: 'Zambales' },
2471
+ { value: 'PH-ZAN', country_code: 'PH', text: 'Zamboanga del Norte' },
2472
+ { value: 'PH-ZAS', country_code: 'PH', text: 'Zamboanga del Sur' },
2473
+ { value: 'PK-JK', country_code: 'PK', text: 'Azad Kashmir' },
2474
+ { value: 'PK-BA', country_code: 'PK', text: 'Balochistan' },
2475
+ {
2476
+ value: 'PK-TA',
2477
+ country_code: 'PK',
2478
+ text: 'Federally Administered Tribal Areas'
2479
+ },
2480
+ { value: 'PK-GB', country_code: 'PK', text: 'Gilgit-Baltistan' },
2481
+ { value: 'PK-IS', country_code: 'PK', text: 'Islamabad' },
2482
+ { value: 'PK-KP', country_code: 'PK', text: 'Khyber Pakhtunkhwa' },
2483
+ { value: 'PK-PB', country_code: 'PK', text: 'Punjab' },
2484
+ { value: 'PK-SD', country_code: 'PK', text: 'Sindh' },
2485
+ { value: 'PL-DS', country_code: 'PL', text: 'Dolnoslaskie' },
2486
+ { value: 'PL-KP', country_code: 'PL', text: 'Kujawsko-pomorskie' },
2487
+ { value: 'PL-LD', country_code: 'PL', text: 'Lodzkie' },
2488
+ { value: 'PL-LU', country_code: 'PL', text: 'Lubelskie' },
2489
+ { value: 'PL-LB', country_code: 'PL', text: 'Lubuskie' },
2490
+ { value: 'PL-MA', country_code: 'PL', text: 'Malopolskie' },
2491
+ { value: 'PL-MZ', country_code: 'PL', text: 'Mazowieckie' },
2492
+ { value: 'PL-OP', country_code: 'PL', text: 'Opolskie' },
2493
+ { value: 'PL-PK', country_code: 'PL', text: 'Podkarpackie' },
2494
+ { value: 'PL-PD', country_code: 'PL', text: 'Podlaskie' },
2495
+ { value: 'PL-PM', country_code: 'PL', text: 'Pomorskie' },
2496
+ { value: 'PL-SL', country_code: 'PL', text: 'Slaskie' },
2497
+ { value: 'PL-SK', country_code: 'PL', text: 'Swietokrzyskie' },
2498
+ { value: 'PL-WN', country_code: 'PL', text: 'Warminsko-mazurskie' },
2499
+ { value: 'PL-WP', country_code: 'PL', text: 'Wielkopolskie' },
2500
+ { value: 'PL-ZP', country_code: 'PL', text: 'Zachodniopomorskie' },
2501
+ { value: 'PS-BTH', country_code: 'PS', text: 'Bethlehem' },
2502
+ { value: 'PS-GZA', country_code: 'PS', text: 'Gaza' },
2503
+ { value: 'PS-HBN', country_code: 'PS', text: 'Hebron' },
2504
+ { value: 'PS-JEN', country_code: 'PS', text: 'Jenin' },
2505
+ { value: 'PS-JRH', country_code: 'PS', text: 'Jericho and Al Aghwar' },
2506
+ { value: 'PS-JEM', country_code: 'PS', text: 'Jerusalem' },
2507
+ { value: 'PS-NBS', country_code: 'PS', text: 'Nablus' },
2508
+ { value: 'PS-QQA', country_code: 'PS', text: 'Qalqilya' },
2509
+ { value: 'PS-RBH', country_code: 'PS', text: 'Ramallah' },
2510
+ { value: 'PS-SLT', country_code: 'PS', text: 'Salfit' },
2511
+ { value: 'PS-TBS', country_code: 'PS', text: 'Tubas' },
2512
+ { value: 'PS-TKM', country_code: 'PS', text: 'Tulkarm' },
2513
+ { value: 'PT-01', country_code: 'PT', text: 'Aveiro' },
2514
+ { value: 'PT-02', country_code: 'PT', text: 'Beja' },
2515
+ { value: 'PT-03', country_code: 'PT', text: 'Braga' },
2516
+ { value: 'PT-04', country_code: 'PT', text: 'Braganca' },
2517
+ { value: 'PT-05', country_code: 'PT', text: 'Castelo Branco' },
2518
+ { value: 'PT-06', country_code: 'PT', text: 'Coimbra' },
2519
+ { value: 'PT-07', country_code: 'PT', text: 'Evora' },
2520
+ { value: 'PT-08', country_code: 'PT', text: 'Faro' },
2521
+ { value: 'PT-09', country_code: 'PT', text: 'Guarda' },
2522
+ { value: 'PT-10', country_code: 'PT', text: 'Leiria' },
2523
+ { value: 'PT-11', country_code: 'PT', text: 'Lisboa' },
2524
+ { value: 'PT-12', country_code: 'PT', text: 'Portalegre' },
2525
+ { value: 'PT-13', country_code: 'PT', text: 'Porto' },
2526
+ { value: 'PT-30', country_code: 'PT', text: 'Regiao Autonoma da Madeira' },
2527
+ { value: 'PT-20', country_code: 'PT', text: 'Regiao Autonoma dos Acores' },
2528
+ { value: 'PT-14', country_code: 'PT', text: 'Santarem' },
2529
+ { value: 'PT-15', country_code: 'PT', text: 'Setubal' },
2530
+ { value: 'PT-16', country_code: 'PT', text: 'Viana do Castelo' },
2531
+ { value: 'PT-17', country_code: 'PT', text: 'Vila Real' },
2532
+ { value: 'PT-18', country_code: 'PT', text: 'Viseu' },
2533
+ { value: 'PW-002', country_code: 'PW', text: 'Aimeliik' },
2534
+ { value: 'PW-004', country_code: 'PW', text: 'Airai' },
2535
+ { value: 'PW-010', country_code: 'PW', text: 'Angaur' },
2536
+ { value: 'PW-100', country_code: 'PW', text: 'Kayangel' },
2537
+ { value: 'PW-150', country_code: 'PW', text: 'Koror' },
2538
+ { value: 'PW-212', country_code: 'PW', text: 'Melekeok' },
2539
+ { value: 'PW-214', country_code: 'PW', text: 'Ngaraard' },
2540
+ { value: 'PW-218', country_code: 'PW', text: 'Ngarchelong' },
2541
+ { value: 'PW-222', country_code: 'PW', text: 'Ngardmau' },
2542
+ { value: 'PW-224', country_code: 'PW', text: 'Ngatpang' },
2543
+ { value: 'PW-228', country_code: 'PW', text: 'Ngiwal' },
2544
+ { value: 'PW-350', country_code: 'PW', text: 'Peleliu' },
2545
+ { value: 'PY-16', country_code: 'PY', text: 'Alto Paraguay' },
2546
+ { value: 'PY-10', country_code: 'PY', text: 'Alto Parana' },
2547
+ { value: 'PY-13', country_code: 'PY', text: 'Amambay' },
2548
+ { value: 'PY-ASU', country_code: 'PY', text: 'Asuncion' },
2549
+ { value: 'PY-19', country_code: 'PY', text: 'Boqueron' },
2550
+ { value: 'PY-5', country_code: 'PY', text: 'Caaguazu' },
2551
+ { value: 'PY-6', country_code: 'PY', text: 'Caazapa' },
2552
+ { value: 'PY-14', country_code: 'PY', text: 'Canindeyu' },
2553
+ { value: 'PY-11', country_code: 'PY', text: 'Central' },
2554
+ { value: 'PY-1', country_code: 'PY', text: 'Concepcion' },
2555
+ { value: 'PY-3', country_code: 'PY', text: 'Cordillera' },
2556
+ { value: 'PY-4', country_code: 'PY', text: 'Guaira' },
2557
+ { value: 'PY-7', country_code: 'PY', text: 'Itapua' },
2558
+ { value: 'PY-8', country_code: 'PY', text: 'Misiones' },
2559
+ { value: 'PY-12', country_code: 'PY', text: 'Neembucu' },
2560
+ { value: 'PY-9', country_code: 'PY', text: 'Paraguari' },
2561
+ { value: 'PY-15', country_code: 'PY', text: 'Presidente Hayes' },
2562
+ { value: 'PY-2', country_code: 'PY', text: 'San Pedro' },
2563
+ { value: 'QA-DA', country_code: 'QA', text: 'Ad Dawhah' },
2564
+ { value: 'QA-KH', country_code: 'QA', text: 'Al Khawr wa adh Dhakhirah' },
2565
+ { value: 'QA-WA', country_code: 'QA', text: 'Al Wakrah' },
2566
+ { value: 'QA-RA', country_code: 'QA', text: 'Ar Rayyan' },
2567
+ { value: 'QA-MS', country_code: 'QA', text: 'Ash Shamal' },
2568
+ { value: 'QA-ZA', country_code: 'QA', text: "Az Za'ayin" },
2569
+ { value: 'QA-US', country_code: 'QA', text: 'Umm Salal' },
2570
+ { value: 'RO-AB', country_code: 'RO', text: 'Alba' },
2571
+ { value: 'RO-AR', country_code: 'RO', text: 'Arad' },
2572
+ { value: 'RO-AG', country_code: 'RO', text: 'Arges' },
2573
+ { value: 'RO-BC', country_code: 'RO', text: 'Bacau' },
2574
+ { value: 'RO-BH', country_code: 'RO', text: 'Bihor' },
2575
+ { value: 'RO-BN', country_code: 'RO', text: 'Bistrita-Nasaud' },
2576
+ { value: 'RO-BT', country_code: 'RO', text: 'Botosani' },
2577
+ { value: 'RO-BR', country_code: 'RO', text: 'Braila' },
2578
+ { value: 'RO-BV', country_code: 'RO', text: 'Brasov' },
2579
+ { value: 'RO-B', country_code: 'RO', text: 'Bucuresti' },
2580
+ { value: 'RO-BZ', country_code: 'RO', text: 'Buzau' },
2581
+ { value: 'RO-CL', country_code: 'RO', text: 'Calarasi' },
2582
+ { value: 'RO-CS', country_code: 'RO', text: 'Caras-Severin' },
2583
+ { value: 'RO-CJ', country_code: 'RO', text: 'Cluj' },
2584
+ { value: 'RO-CT', country_code: 'RO', text: 'Constanta' },
2585
+ { value: 'RO-CV', country_code: 'RO', text: 'Covasna' },
2586
+ { value: 'RO-DB', country_code: 'RO', text: 'Dambovita' },
2587
+ { value: 'RO-DJ', country_code: 'RO', text: 'Dolj' },
2588
+ { value: 'RO-GL', country_code: 'RO', text: 'Galati' },
2589
+ { value: 'RO-GR', country_code: 'RO', text: 'Giurgiu' },
2590
+ { value: 'RO-GJ', country_code: 'RO', text: 'Gorj' },
2591
+ { value: 'RO-HR', country_code: 'RO', text: 'Harghita' },
2592
+ { value: 'RO-HD', country_code: 'RO', text: 'Hunedoara' },
2593
+ { value: 'RO-IL', country_code: 'RO', text: 'Ialomita' },
2594
+ { value: 'RO-IS', country_code: 'RO', text: 'Iasi' },
2595
+ { value: 'RO-IF', country_code: 'RO', text: 'Ilfov' },
2596
+ { value: 'RO-MM', country_code: 'RO', text: 'Maramures' },
2597
+ { value: 'RO-MH', country_code: 'RO', text: 'Mehedinti' },
2598
+ { value: 'RO-MS', country_code: 'RO', text: 'Mures' },
2599
+ { value: 'RO-NT', country_code: 'RO', text: 'Neamt' },
2600
+ { value: 'RO-OT', country_code: 'RO', text: 'Olt' },
2601
+ { value: 'RO-PH', country_code: 'RO', text: 'Prahova' },
2602
+ { value: 'RO-SJ', country_code: 'RO', text: 'Salaj' },
2603
+ { value: 'RO-SM', country_code: 'RO', text: 'Satu Mare' },
2604
+ { value: 'RO-SB', country_code: 'RO', text: 'Sibiu' },
2605
+ { value: 'RO-SV', country_code: 'RO', text: 'Suceava' },
2606
+ { value: 'RO-TR', country_code: 'RO', text: 'Teleorman' },
2607
+ { value: 'RO-TM', country_code: 'RO', text: 'Timis' },
2608
+ { value: 'RO-TL', country_code: 'RO', text: 'Tulcea' },
2609
+ { value: 'RO-VL', country_code: 'RO', text: 'Valcea' },
2610
+ { value: 'RO-VS', country_code: 'RO', text: 'Vaslui' },
2611
+ { value: 'RO-VN', country_code: 'RO', text: 'Vrancea' },
2612
+ { value: 'RS-00', country_code: 'RS', text: 'Beograd' },
2613
+ { value: 'RS-14', country_code: 'RS', text: 'Borski okrug' },
2614
+ { value: 'RS-11', country_code: 'RS', text: 'Branicevski okrug' },
2615
+ { value: 'RS-23', country_code: 'RS', text: 'Jablanicki okrug' },
2616
+ { value: 'RS-06', country_code: 'RS', text: 'Juznobacki okrug' },
2617
+ { value: 'RS-04', country_code: 'RS', text: 'Juznobanatski okrug' },
2618
+ { value: 'RS-09', country_code: 'RS', text: 'Kolubarski okrug' },
2619
+ { value: 'RS-28', country_code: 'RS', text: 'Kosovsko-Mitrovacki okrug' },
2620
+ { value: 'RS-08', country_code: 'RS', text: 'Macvanski okrug' },
2621
+ { value: 'RS-17', country_code: 'RS', text: 'Moravicki okrug' },
2622
+ { value: 'RS-20', country_code: 'RS', text: 'Nisavski okrug' },
2623
+ { value: 'RS-24', country_code: 'RS', text: 'Pcinjski okrug' },
2624
+ { value: 'RS-26', country_code: 'RS', text: 'Pecki okrug' },
2625
+ { value: 'RS-22', country_code: 'RS', text: 'Pirotski okrug' },
2626
+ { value: 'RS-10', country_code: 'RS', text: 'Podunavski okrug' },
2627
+ { value: 'RS-27', country_code: 'RS', text: 'Prizrenski okrug' },
2628
+ { value: 'RS-19', country_code: 'RS', text: 'Rasinski okrug' },
2629
+ { value: 'RS-18', country_code: 'RS', text: 'Raski okrug' },
2630
+ { value: 'RS-01', country_code: 'RS', text: 'Severnobacki okrug' },
2631
+ { value: 'RS-03', country_code: 'RS', text: 'Severnobanatski okrug' },
2632
+ { value: 'RS-02', country_code: 'RS', text: 'Srednjebanatski okrug' },
2633
+ { value: 'RS-07', country_code: 'RS', text: 'Sremski okrug' },
2634
+ { value: 'RS-12', country_code: 'RS', text: 'Sumadijski okrug' },
2635
+ { value: 'RS-21', country_code: 'RS', text: 'Toplicki okrug' },
2636
+ { value: 'RS-15', country_code: 'RS', text: 'Zajecarski okrug' },
2637
+ { value: 'RS-05', country_code: 'RS', text: 'Zapadnobacki okrug' },
2638
+ { value: 'RS-16', country_code: 'RS', text: 'Zlatiborski okrug' },
2639
+ { value: 'RU-AD', country_code: 'RU', text: 'Adygeya, Respublika' },
2640
+ { value: 'RU-AL', country_code: 'RU', text: 'Altay, Respublika' },
2641
+ { value: 'RU-ALT', country_code: 'RU', text: 'Altayskiy kray' },
2642
+ { value: 'RU-AMU', country_code: 'RU', text: "Amurskaya oblast'" },
2643
+ { value: 'RU-ARK', country_code: 'RU', text: "Arkhangel'skaya oblast'" },
2644
+ { value: 'RU-AST', country_code: 'RU', text: "Astrakhanskaya oblast'" },
2645
+ { value: 'RU-BA', country_code: 'RU', text: 'Bashkortostan, Respublika' },
2646
+ { value: 'RU-BEL', country_code: 'RU', text: "Belgorodskaya oblast'" },
2647
+ { value: 'RU-BRY', country_code: 'RU', text: "Bryanskaya oblast'" },
2648
+ { value: 'RU-BU', country_code: 'RU', text: 'Buryatiya, Respublika' },
2649
+ { value: 'RU-CE', country_code: 'RU', text: 'Chechenskaya Respublika' },
2650
+ { value: 'RU-CHE', country_code: 'RU', text: "Chelyabinskaya oblast'" },
2651
+ {
2652
+ value: 'RU-CHU',
2653
+ country_code: 'RU',
2654
+ text: 'Chukotskiy avtonomnyy okrug'
2655
+ },
2656
+ { value: 'RU-CU', country_code: 'RU', text: 'Chuvashskaya Respublika' },
2657
+ { value: 'RU-DA', country_code: 'RU', text: 'Dagestan, Respublika' },
2658
+ { value: 'RU-IN', country_code: 'RU', text: 'Ingushetiya, Respublika' },
2659
+ { value: 'RU-IRK', country_code: 'RU', text: "Irkutskaya oblast'" },
2660
+ { value: 'RU-IVA', country_code: 'RU', text: "Ivanovskaya oblast'" },
2661
+ {
2662
+ value: 'RU-KB',
2663
+ country_code: 'RU',
2664
+ text: 'Kabardino-Balkarskaya Respublika'
2665
+ },
2666
+ { value: 'RU-KGD', country_code: 'RU', text: "Kaliningradskaya oblast'" },
2667
+ { value: 'RU-KL', country_code: 'RU', text: 'Kalmykiya, Respublika' },
2668
+ { value: 'RU-KLU', country_code: 'RU', text: "Kaluzhskaya oblast'" },
2669
+ { value: 'RU-KAM', country_code: 'RU', text: 'Kamchatskiy kray' },
2670
+ {
2671
+ value: 'RU-KC',
2672
+ country_code: 'RU',
2673
+ text: 'Karachayevo-Cherkesskaya Respublika'
2674
+ },
2675
+ { value: 'RU-KR', country_code: 'RU', text: 'Kareliya, Respublika' },
2676
+ { value: 'RU-KEM', country_code: 'RU', text: "Kemerovskaya oblast'" },
2677
+ { value: 'RU-KHA', country_code: 'RU', text: 'Khabarovskiy kray' },
2678
+ { value: 'RU-KK', country_code: 'RU', text: 'Khakasiya, Respublika' },
2679
+ {
2680
+ value: 'RU-KHM',
2681
+ country_code: 'RU',
2682
+ text: 'Khanty-Mansiyskiy avtonomnyy okrug'
2683
+ },
2684
+ { value: 'RU-KIR', country_code: 'RU', text: "Kirovskaya oblast'" },
2685
+ { value: 'RU-KO', country_code: 'RU', text: 'Komi, Respublika' },
2686
+ { value: 'RU-KOS', country_code: 'RU', text: "Kostromskaya oblast'" },
2687
+ { value: 'RU-KDA', country_code: 'RU', text: 'Krasnodarskiy kray' },
2688
+ { value: 'RU-KYA', country_code: 'RU', text: 'Krasnoyarskiy kray' },
2689
+ { value: 'RU-KGN', country_code: 'RU', text: "Kurganskaya oblast'" },
2690
+ { value: 'RU-KRS', country_code: 'RU', text: "Kurskaya oblast'" },
2691
+ { value: 'RU-LEN', country_code: 'RU', text: "Leningradskaya oblast'" },
2692
+ { value: 'RU-LIP', country_code: 'RU', text: "Lipetskaya oblast'" },
2693
+ { value: 'RU-MAG', country_code: 'RU', text: "Magadanskaya oblast'" },
2694
+ { value: 'RU-ME', country_code: 'RU', text: 'Mariy El, Respublika' },
2695
+ { value: 'RU-MO', country_code: 'RU', text: 'Mordoviya, Respublika' },
2696
+ { value: 'RU-MOS', country_code: 'RU', text: "Moskovskaya oblast'" },
2697
+ { value: 'RU-MOW', country_code: 'RU', text: 'Moskva' },
2698
+ { value: 'RU-MUR', country_code: 'RU', text: "Murmanskaya oblast'" },
2699
+ { value: 'RU-NEN', country_code: 'RU', text: 'Nenetskiy avtonomnyy okrug' },
2700
+ { value: 'RU-NIZ', country_code: 'RU', text: "Nizhegorodskaya oblast'" },
2701
+ { value: 'RU-NGR', country_code: 'RU', text: "Novgorodskaya oblast'" },
2702
+ { value: 'RU-NVS', country_code: 'RU', text: "Novosibirskaya oblast'" },
2703
+ { value: 'RU-OMS', country_code: 'RU', text: "Omskaya oblast'" },
2704
+ { value: 'RU-ORE', country_code: 'RU', text: "Orenburgskaya oblast'" },
2705
+ { value: 'RU-ORL', country_code: 'RU', text: "Orlovskaya oblast'" },
2706
+ { value: 'RU-PNZ', country_code: 'RU', text: "Penzenskaya oblast'" },
2707
+ { value: 'RU-PER', country_code: 'RU', text: 'Permskiy kray' },
2708
+ { value: 'RU-PRI', country_code: 'RU', text: 'Primorskiy kray' },
2709
+ { value: 'RU-PSK', country_code: 'RU', text: "Pskovskaya oblast'" },
2710
+ { value: 'RU-ROS', country_code: 'RU', text: "Rostovskaya oblast'" },
2711
+ { value: 'RU-RYA', country_code: 'RU', text: "Ryazanskaya oblast'" },
2712
+ { value: 'RU-SA', country_code: 'RU', text: 'Saha, Respublika' },
2713
+ { value: 'RU-SAK', country_code: 'RU', text: "Sakhalinskaya oblast'" },
2714
+ { value: 'RU-SAM', country_code: 'RU', text: "Samarskaya oblast'" },
2715
+ { value: 'RU-SPE', country_code: 'RU', text: 'Sankt-Peterburg' },
2716
+ { value: 'RU-SAR', country_code: 'RU', text: "Saratovskaya oblast'" },
2717
+ {
2718
+ value: 'RU-SE',
2719
+ country_code: 'RU',
2720
+ text: 'Severnaya Osetiya, Respublika'
2721
+ },
2722
+ { value: 'RU-SMO', country_code: 'RU', text: "Smolenskaya oblast'" },
2723
+ { value: 'RU-STA', country_code: 'RU', text: "Stavropol'skiy kray" },
2724
+ { value: 'RU-SVE', country_code: 'RU', text: "Sverdlovskaya oblast'" },
2725
+ { value: 'RU-TAM', country_code: 'RU', text: "Tambovskaya oblast'" },
2726
+ { value: 'RU-TA', country_code: 'RU', text: 'Tatarstan, Respublika' },
2727
+ { value: 'RU-TOM', country_code: 'RU', text: "Tomskaya oblast'" },
2728
+ { value: 'RU-TUL', country_code: 'RU', text: "Tul'skaya oblast'" },
2729
+ { value: 'RU-TVE', country_code: 'RU', text: "Tverskaya oblast'" },
2730
+ { value: 'RU-TYU', country_code: 'RU', text: "Tyumenskaya oblast'" },
2731
+ { value: 'RU-TY', country_code: 'RU', text: 'Tyva, Respublika' },
2732
+ { value: 'RU-UD', country_code: 'RU', text: 'Udmurtskaya Respublika' },
2733
+ { value: 'RU-ULY', country_code: 'RU', text: "Ul'yanovskaya oblast'" },
2734
+ { value: 'RU-VLA', country_code: 'RU', text: "Vladimirskaya oblast'" },
2735
+ { value: 'RU-VGG', country_code: 'RU', text: "Volgogradskaya oblast'" },
2736
+ { value: 'RU-VLG', country_code: 'RU', text: "Vologodskaya oblast'" },
2737
+ { value: 'RU-VOR', country_code: 'RU', text: "Voronezhskaya oblast'" },
2738
+ {
2739
+ value: 'RU-YAN',
2740
+ country_code: 'RU',
2741
+ text: 'Yamalo-Nenetskiy avtonomnyy okrug'
2742
+ },
2743
+ { value: 'RU-YAR', country_code: 'RU', text: "Yaroslavskaya oblast'" },
2744
+ {
2745
+ value: 'RU-YEV',
2746
+ country_code: 'RU',
2747
+ text: "Yevreyskaya avtonomnaya oblast'"
2748
+ },
2749
+ { value: 'RU-ZAB', country_code: 'RU', text: "Zabaykal'skiy kray" },
2750
+ { value: 'RW-02', country_code: 'RW', text: 'Est' },
2751
+ { value: 'RW-03', country_code: 'RW', text: 'Nord' },
2752
+ { value: 'RW-04', country_code: 'RW', text: 'Ouest' },
2753
+ { value: 'RW-05', country_code: 'RW', text: 'Sud' },
2754
+ { value: 'RW-01', country_code: 'RW', text: 'Ville de Kigali' },
2755
+ { value: 'SA-14', country_code: 'SA', text: "'Asir" },
2756
+ { value: 'SA-11', country_code: 'SA', text: 'Al Bahah' },
2757
+ { value: 'SA-08', country_code: 'SA', text: 'Al Hudud ash Shamaliyah' },
2758
+ { value: 'SA-12', country_code: 'SA', text: 'Al Jawf' },
2759
+ { value: 'SA-03', country_code: 'SA', text: 'Al Madinah al Munawwarah' },
2760
+ { value: 'SA-05', country_code: 'SA', text: 'Al Qasim' },
2761
+ { value: 'SA-01', country_code: 'SA', text: 'Ar Riyad' },
2762
+ { value: 'SA-04', country_code: 'SA', text: 'Ash Sharqiyah' },
2763
+ { value: 'SA-06', country_code: 'SA', text: "Ha'il" },
2764
+ { value: 'SA-09', country_code: 'SA', text: 'Jazan' },
2765
+ { value: 'SA-02', country_code: 'SA', text: 'Makkah al Mukarramah' },
2766
+ { value: 'SA-10', country_code: 'SA', text: 'Najran' },
2767
+ { value: 'SA-07', country_code: 'SA', text: 'Tabuk' },
2768
+ { value: 'SB-CE', country_code: 'SB', text: 'Central' },
2769
+ { value: 'SB-GU', country_code: 'SB', text: 'Guadalcanal' },
2770
+ { value: 'SB-IS', country_code: 'SB', text: 'Isabel' },
2771
+ { value: 'SB-MK', country_code: 'SB', text: 'Makira-Ulawa' },
2772
+ { value: 'SB-ML', country_code: 'SB', text: 'Malaita' },
2773
+ { value: 'SB-WE', country_code: 'SB', text: 'Western' },
2774
+ { value: 'SC-16', country_code: 'SC', text: 'English River' },
2775
+ { value: 'SD-NB', country_code: 'SD', text: 'Blue Nile' },
2776
+ { value: 'SD-GD', country_code: 'SD', text: 'Gedaref' },
2777
+ { value: 'SD-GZ', country_code: 'SD', text: 'Gezira' },
2778
+ { value: 'SD-KA', country_code: 'SD', text: 'Kassala' },
2779
+ { value: 'SD-KH', country_code: 'SD', text: 'Khartoum' },
2780
+ { value: 'SD-DN', country_code: 'SD', text: 'North Darfur' },
2781
+ { value: 'SD-KN', country_code: 'SD', text: 'North Kordofan' },
2782
+ { value: 'SD-NO', country_code: 'SD', text: 'Northern' },
2783
+ { value: 'SD-RS', country_code: 'SD', text: 'Red Sea' },
2784
+ { value: 'SD-NR', country_code: 'SD', text: 'River Nile' },
2785
+ { value: 'SD-SI', country_code: 'SD', text: 'Sennar' },
2786
+ { value: 'SD-DS', country_code: 'SD', text: 'South Darfur' },
2787
+ { value: 'SD-KS', country_code: 'SD', text: 'South Kordofan' },
2788
+ { value: 'SD-DW', country_code: 'SD', text: 'West Darfur' },
2789
+ { value: 'SD-NW', country_code: 'SD', text: 'White Nile' },
2790
+ { value: 'SE-K', country_code: 'SE', text: 'Blekinge lan' },
2791
+ { value: 'SE-W', country_code: 'SE', text: 'Dalarnas lan' },
2792
+ { value: 'SE-X', country_code: 'SE', text: 'Gavleborgs lan' },
2793
+ { value: 'SE-I', country_code: 'SE', text: 'Gotlands lan' },
2794
+ { value: 'SE-N', country_code: 'SE', text: 'Hallands lan' },
2795
+ { value: 'SE-Z', country_code: 'SE', text: 'Jamtlands lan' },
2796
+ { value: 'SE-F', country_code: 'SE', text: 'Jonkopings lan' },
2797
+ { value: 'SE-H', country_code: 'SE', text: 'Kalmar lan' },
2798
+ { value: 'SE-G', country_code: 'SE', text: 'Kronobergs lan' },
2799
+ { value: 'SE-BD', country_code: 'SE', text: 'Norrbottens lan' },
2800
+ { value: 'SE-T', country_code: 'SE', text: 'Orebro lan' },
2801
+ { value: 'SE-E', country_code: 'SE', text: 'Ostergotlands lan' },
2802
+ { value: 'SE-M', country_code: 'SE', text: 'Skane lan' },
2803
+ { value: 'SE-D', country_code: 'SE', text: 'Sodermanlands lan' },
2804
+ { value: 'SE-AB', country_code: 'SE', text: 'Stockholms lan' },
2805
+ { value: 'SE-C', country_code: 'SE', text: 'Uppsala lan' },
2806
+ { value: 'SE-S', country_code: 'SE', text: 'Varmlands lan' },
2807
+ { value: 'SE-AC', country_code: 'SE', text: 'Vasterbottens lan' },
2808
+ { value: 'SE-Y', country_code: 'SE', text: 'Vasternorrlands lan' },
2809
+ { value: 'SE-U', country_code: 'SE', text: 'Vastmanlands lan' },
2810
+ { value: 'SE-O', country_code: 'SE', text: 'Vastra Gotalands lan' },
2811
+ { value: 'SH-AC', country_code: 'SH', text: 'Ascension' },
2812
+ { value: 'SH-HL', country_code: 'SH', text: 'Saint Helena' },
2813
+ { value: 'SH-TA', country_code: 'SH', text: 'Tristan da Cunha' },
2814
+ { value: 'SI-001', country_code: 'SI', text: 'Ajdovscina' },
2815
+ { value: 'SI-003', country_code: 'SI', text: 'Bled' },
2816
+ { value: 'SI-004', country_code: 'SI', text: 'Bohinj' },
2817
+ { value: 'SI-005', country_code: 'SI', text: 'Borovnica' },
2818
+ { value: 'SI-006', country_code: 'SI', text: 'Bovec' },
2819
+ { value: 'SI-009', country_code: 'SI', text: 'Brezice' },
2820
+ { value: 'SI-008', country_code: 'SI', text: 'Brezovica' },
2821
+ { value: 'SI-011', country_code: 'SI', text: 'Celje' },
2822
+ { value: 'SI-013', country_code: 'SI', text: 'Cerknica' },
2823
+ { value: 'SI-014', country_code: 'SI', text: 'Cerkno' },
2824
+ { value: 'SI-015', country_code: 'SI', text: 'Crensovci' },
2825
+ { value: 'SI-017', country_code: 'SI', text: 'Crnomelj' },
2826
+ { value: 'SI-018', country_code: 'SI', text: 'Destrnik' },
2827
+ { value: 'SI-019', country_code: 'SI', text: 'Divaca' },
2828
+ { value: 'SI-023', country_code: 'SI', text: 'Domzale' },
2829
+ { value: 'SI-025', country_code: 'SI', text: 'Dravograd' },
2830
+ { value: 'SI-029', country_code: 'SI', text: 'Gornja Radgona' },
2831
+ { value: 'SI-032', country_code: 'SI', text: 'Grosuplje' },
2832
+ { value: 'SI-160', country_code: 'SI', text: 'Hoce-Slivnica' },
2833
+ { value: 'SI-162', country_code: 'SI', text: 'Horjul' },
2834
+ { value: 'SI-034', country_code: 'SI', text: 'Hrastnik' },
2835
+ { value: 'SI-036', country_code: 'SI', text: 'Idrija' },
2836
+ { value: 'SI-037', country_code: 'SI', text: 'Ig' },
2837
+ { value: 'SI-038', country_code: 'SI', text: 'Ilirska Bistrica' },
2838
+ { value: 'SI-039', country_code: 'SI', text: 'Ivancna Gorica' },
2839
+ { value: 'SI-040', country_code: 'SI', text: 'Izola' },
2840
+ { value: 'SI-041', country_code: 'SI', text: 'Jesenice' },
2841
+ { value: 'SI-043', country_code: 'SI', text: 'Kamnik' },
2842
+ { value: 'SI-044', country_code: 'SI', text: 'Kanal' },
2843
+ { value: 'SI-045', country_code: 'SI', text: 'Kidricevo' },
2844
+ { value: 'SI-046', country_code: 'SI', text: 'Kobarid' },
2845
+ { value: 'SI-048', country_code: 'SI', text: 'Kocevje' },
2846
+ { value: 'SI-050', country_code: 'SI', text: 'Koper' },
2847
+ { value: 'SI-052', country_code: 'SI', text: 'Kranj' },
2848
+ { value: 'SI-053', country_code: 'SI', text: 'Kranjska Gora' },
2849
+ { value: 'SI-054', country_code: 'SI', text: 'Krsko' },
2850
+ { value: 'SI-057', country_code: 'SI', text: 'Lasko' },
2851
+ { value: 'SI-058', country_code: 'SI', text: 'Lenart' },
2852
+ { value: 'SI-059', country_code: 'SI', text: 'Lendava' },
2853
+ { value: 'SI-060', country_code: 'SI', text: 'Litija' },
2854
+ { value: 'SI-061', country_code: 'SI', text: 'Ljubljana' },
2855
+ { value: 'SI-063', country_code: 'SI', text: 'Ljutomer' },
2856
+ { value: 'SI-208', country_code: 'SI', text: 'Log-Dragomer' },
2857
+ { value: 'SI-064', country_code: 'SI', text: 'Logatec' },
2858
+ { value: 'SI-167', country_code: 'SI', text: 'Lovrenc na Pohorju' },
2859
+ { value: 'SI-070', country_code: 'SI', text: 'Maribor' },
2860
+ { value: 'SI-071', country_code: 'SI', text: 'Medvode' },
2861
+ { value: 'SI-072', country_code: 'SI', text: 'Menges' },
2862
+ { value: 'SI-073', country_code: 'SI', text: 'Metlika' },
2863
+ { value: 'SI-074', country_code: 'SI', text: 'Mezica' },
2864
+ { value: 'SI-169', country_code: 'SI', text: 'Miklavz na Dravskem Polju' },
2865
+ { value: 'SI-075', country_code: 'SI', text: 'Miren-Kostanjevica' },
2866
+ { value: 'SI-076', country_code: 'SI', text: 'Mislinja' },
2867
+ { value: 'SI-079', country_code: 'SI', text: 'Mozirje' },
2868
+ { value: 'SI-080', country_code: 'SI', text: 'Murska Sobota' },
2869
+ { value: 'SI-081', country_code: 'SI', text: 'Muta' },
2870
+ { value: 'SI-084', country_code: 'SI', text: 'Nova Gorica' },
2871
+ { value: 'SI-085', country_code: 'SI', text: 'Novo Mesto' },
2872
+ { value: 'SI-086', country_code: 'SI', text: 'Odranci' },
2873
+ { value: 'SI-171', country_code: 'SI', text: 'Oplotnica' },
2874
+ { value: 'SI-087', country_code: 'SI', text: 'Ormoz' },
2875
+ { value: 'SI-090', country_code: 'SI', text: 'Piran' },
2876
+ { value: 'SI-091', country_code: 'SI', text: 'Pivka' },
2877
+ { value: 'SI-200', country_code: 'SI', text: 'Poljcane' },
2878
+ { value: 'SI-173', country_code: 'SI', text: 'Polzela' },
2879
+ { value: 'SI-094', country_code: 'SI', text: 'Postojna' },
2880
+ { value: 'SI-174', country_code: 'SI', text: 'Prebold' },
2881
+ { value: 'SI-175', country_code: 'SI', text: 'Prevalje' },
2882
+ { value: 'SI-096', country_code: 'SI', text: 'Ptuj' },
2883
+ { value: 'SI-098', country_code: 'SI', text: 'Race-Fram' },
2884
+ { value: 'SI-099', country_code: 'SI', text: 'Radece' },
2885
+ { value: 'SI-100', country_code: 'SI', text: 'Radenci' },
2886
+ { value: 'SI-101', country_code: 'SI', text: 'Radlje ob Dravi' },
2887
+ { value: 'SI-102', country_code: 'SI', text: 'Radovljica' },
2888
+ { value: 'SI-103', country_code: 'SI', text: 'Ravne na Koroskem' },
2889
+ { value: 'SI-104', country_code: 'SI', text: 'Ribnica' },
2890
+ { value: 'SI-106', country_code: 'SI', text: 'Rogaska Slatina' },
2891
+ { value: 'SI-108', country_code: 'SI', text: 'Ruse' },
2892
+ { value: 'SI-183', country_code: 'SI', text: 'Sempeter-Vrtojba' },
2893
+ { value: 'SI-117', country_code: 'SI', text: 'Sencur' },
2894
+ { value: 'SI-118', country_code: 'SI', text: 'Sentilj' },
2895
+ { value: 'SI-120', country_code: 'SI', text: 'Sentjur' },
2896
+ { value: 'SI-110', country_code: 'SI', text: 'Sevnica' },
2897
+ { value: 'SI-111', country_code: 'SI', text: 'Sezana' },
2898
+ { value: 'SI-122', country_code: 'SI', text: 'Skofja Loka' },
2899
+ { value: 'SI-123', country_code: 'SI', text: 'Skofljica' },
2900
+ { value: 'SI-112', country_code: 'SI', text: 'Slovenj Gradec' },
2901
+ { value: 'SI-113', country_code: 'SI', text: 'Slovenska Bistrica' },
2902
+ { value: 'SI-114', country_code: 'SI', text: 'Slovenske Konjice' },
2903
+ { value: 'SI-126', country_code: 'SI', text: 'Sostanj' },
2904
+ { value: 'SI-127', country_code: 'SI', text: 'Store' },
2905
+ { value: 'SI-203', country_code: 'SI', text: 'Straza' },
2906
+ { value: 'SI-128', country_code: 'SI', text: 'Tolmin' },
2907
+ { value: 'SI-129', country_code: 'SI', text: 'Trbovlje' },
2908
+ { value: 'SI-130', country_code: 'SI', text: 'Trebnje' },
2909
+ { value: 'SI-131', country_code: 'SI', text: 'Trzic' },
2910
+ { value: 'SI-186', country_code: 'SI', text: 'Trzin' },
2911
+ { value: 'SI-132', country_code: 'SI', text: 'Turnisce' },
2912
+ { value: 'SI-133', country_code: 'SI', text: 'Velenje' },
2913
+ { value: 'SI-136', country_code: 'SI', text: 'Vipava' },
2914
+ { value: 'SI-138', country_code: 'SI', text: 'Vodice' },
2915
+ { value: 'SI-139', country_code: 'SI', text: 'Vojnik' },
2916
+ { value: 'SI-140', country_code: 'SI', text: 'Vrhnika' },
2917
+ { value: 'SI-141', country_code: 'SI', text: 'Vuzenica' },
2918
+ { value: 'SI-142', country_code: 'SI', text: 'Zagorje ob Savi' },
2919
+ { value: 'SI-190', country_code: 'SI', text: 'Zalec' },
2920
+ { value: 'SI-146', country_code: 'SI', text: 'Zelezniki' },
2921
+ { value: 'SI-147', country_code: 'SI', text: 'Ziri' },
2922
+ { value: 'SI-144', country_code: 'SI', text: 'Zrece' },
2923
+ { value: 'SI-193', country_code: 'SI', text: 'Zuzemberk' },
2924
+ { value: 'SK-BC', country_code: 'SK', text: 'Banskobystricky kraj' },
2925
+ { value: 'SK-BL', country_code: 'SK', text: 'Bratislavsky kraj' },
2926
+ { value: 'SK-KI', country_code: 'SK', text: 'Kosicky kraj' },
2927
+ { value: 'SK-NI', country_code: 'SK', text: 'Nitriansky kraj' },
2928
+ { value: 'SK-PV', country_code: 'SK', text: 'Presovsky kraj' },
2929
+ { value: 'SK-TC', country_code: 'SK', text: 'Trenciansky kraj' },
2930
+ { value: 'SK-TA', country_code: 'SK', text: 'Trnavsky kraj' },
2931
+ { value: 'SK-ZI', country_code: 'SK', text: 'Zilinsky kraj' },
2932
+ { value: 'SL-E', country_code: 'SL', text: 'Eastern' },
2933
+ { value: 'SL-N', country_code: 'SL', text: 'Northern' },
2934
+ { value: 'SL-S', country_code: 'SL', text: 'Southern' },
2935
+ { value: 'SL-W', country_code: 'SL', text: 'Western Area' },
2936
+ { value: 'SM-01', country_code: 'SM', text: 'Acquaviva' },
2937
+ { value: 'SM-02', country_code: 'SM', text: 'Chiesanuova' },
2938
+ { value: 'SM-07', country_code: 'SM', text: 'San Marino' },
2939
+ { value: 'SM-09', country_code: 'SM', text: 'Serravalle' },
2940
+ { value: 'SN-DK', country_code: 'SN', text: 'Dakar' },
2941
+ { value: 'SN-DB', country_code: 'SN', text: 'Diourbel' },
2942
+ { value: 'SN-FK', country_code: 'SN', text: 'Fatick' },
2943
+ { value: 'SN-KA', country_code: 'SN', text: 'Kaffrine' },
2944
+ { value: 'SN-KL', country_code: 'SN', text: 'Kaolack' },
2945
+ { value: 'SN-KE', country_code: 'SN', text: 'Kedougou' },
2946
+ { value: 'SN-KD', country_code: 'SN', text: 'Kolda' },
2947
+ { value: 'SN-LG', country_code: 'SN', text: 'Louga' },
2948
+ { value: 'SN-MT', country_code: 'SN', text: 'Matam' },
2949
+ { value: 'SN-SL', country_code: 'SN', text: 'Saint-Louis' },
2950
+ { value: 'SN-SE', country_code: 'SN', text: 'Sedhiou' },
2951
+ { value: 'SN-TC', country_code: 'SN', text: 'Tambacounda' },
2952
+ { value: 'SN-TH', country_code: 'SN', text: 'Thies' },
2953
+ { value: 'SN-ZG', country_code: 'SN', text: 'Ziguinchor' },
2954
+ { value: 'SO-AW', country_code: 'SO', text: 'Awdal' },
2955
+ { value: 'SO-BK', country_code: 'SO', text: 'Bakool' },
2956
+ { value: 'SO-BN', country_code: 'SO', text: 'Banaadir' },
2957
+ { value: 'SO-BR', country_code: 'SO', text: 'Bari' },
2958
+ { value: 'SO-BY', country_code: 'SO', text: 'Bay' },
2959
+ { value: 'SO-GA', country_code: 'SO', text: 'Galguduud' },
2960
+ { value: 'SO-GE', country_code: 'SO', text: 'Gedo' },
2961
+ { value: 'SO-HI', country_code: 'SO', text: 'Hiiraan' },
2962
+ { value: 'SO-JD', country_code: 'SO', text: 'Jubbada Dhexe' },
2963
+ { value: 'SO-JH', country_code: 'SO', text: 'Jubbada Hoose' },
2964
+ { value: 'SO-MU', country_code: 'SO', text: 'Mudug' },
2965
+ { value: 'SO-NU', country_code: 'SO', text: 'Nugaal' },
2966
+ { value: 'SO-SA', country_code: 'SO', text: 'Sanaag' },
2967
+ { value: 'SO-SD', country_code: 'SO', text: 'Shabeellaha Dhexe' },
2968
+ { value: 'SO-SH', country_code: 'SO', text: 'Shabeellaha Hoose' },
2969
+ { value: 'SO-SO', country_code: 'SO', text: 'Sool' },
2970
+ { value: 'SO-TO', country_code: 'SO', text: 'Togdheer' },
2971
+ { value: 'SO-WO', country_code: 'SO', text: 'Woqooyi Galbeed' },
2972
+ { value: 'SR-BR', country_code: 'SR', text: 'Brokopondo' },
2973
+ { value: 'SR-CM', country_code: 'SR', text: 'Commewijne' },
2974
+ { value: 'SR-CR', country_code: 'SR', text: 'Coronie' },
2975
+ { value: 'SR-MA', country_code: 'SR', text: 'Marowijne' },
2976
+ { value: 'SR-NI', country_code: 'SR', text: 'Nickerie' },
2977
+ { value: 'SR-PR', country_code: 'SR', text: 'Para' },
2978
+ { value: 'SR-PM', country_code: 'SR', text: 'Paramaribo' },
2979
+ { value: 'SR-SA', country_code: 'SR', text: 'Saramacca' },
2980
+ { value: 'SR-WA', country_code: 'SR', text: 'Wanica' },
2981
+ { value: 'SS-EC', country_code: 'SS', text: 'Central Equatoria' },
2982
+ { value: 'SS-EE', country_code: 'SS', text: 'Eastern Equatoria' },
2983
+ { value: 'SS-JG', country_code: 'SS', text: 'Jonglei' },
2984
+ { value: 'SS-LK', country_code: 'SS', text: 'Lakes' },
2985
+ { value: 'SS-BN', country_code: 'SS', text: 'Northern Bahr el Ghazal' },
2986
+ { value: 'SS-UY', country_code: 'SS', text: 'Unity' },
2987
+ { value: 'SS-NU', country_code: 'SS', text: 'Upper Nile' },
2988
+ { value: 'SS-WR', country_code: 'SS', text: 'Warrap' },
2989
+ { value: 'SS-BW', country_code: 'SS', text: 'Western Bahr el Ghazal' },
2990
+ { value: 'SS-EW', country_code: 'SS', text: 'Western Equatoria' },
2991
+ { value: 'ST-P', country_code: 'ST', text: 'Principe' },
2992
+ { value: 'ST-S', country_code: 'ST', text: 'Sao Tome' },
2993
+ { value: 'SV-AH', country_code: 'SV', text: 'Ahuachapan' },
2994
+ { value: 'SV-CA', country_code: 'SV', text: 'Cabanas' },
2995
+ { value: 'SV-CH', country_code: 'SV', text: 'Chalatenango' },
2996
+ { value: 'SV-CU', country_code: 'SV', text: 'Cuscatlan' },
2997
+ { value: 'SV-LI', country_code: 'SV', text: 'La Libertad' },
2998
+ { value: 'SV-PA', country_code: 'SV', text: 'La Paz' },
2999
+ { value: 'SV-UN', country_code: 'SV', text: 'La Union' },
3000
+ { value: 'SV-MO', country_code: 'SV', text: 'Morazan' },
3001
+ { value: 'SV-SM', country_code: 'SV', text: 'San Miguel' },
3002
+ { value: 'SV-SS', country_code: 'SV', text: 'San Salvador' },
3003
+ { value: 'SV-SV', country_code: 'SV', text: 'San Vicente' },
3004
+ { value: 'SV-SA', country_code: 'SV', text: 'Santa Ana' },
3005
+ { value: 'SV-SO', country_code: 'SV', text: 'Sonsonate' },
3006
+ { value: 'SV-US', country_code: 'SV', text: 'Usulutan' },
3007
+ { value: 'SY-HA', country_code: 'SY', text: 'Al Hasakah' },
3008
+ { value: 'SY-LA', country_code: 'SY', text: 'Al Ladhiqiyah' },
3009
+ { value: 'SY-QU', country_code: 'SY', text: 'Al Qunaytirah' },
3010
+ { value: 'SY-RA', country_code: 'SY', text: 'Ar Raqqah' },
3011
+ { value: 'SY-SU', country_code: 'SY', text: "As Suwayda'" },
3012
+ { value: 'SY-DR', country_code: 'SY', text: "Dar'a" },
3013
+ { value: 'SY-DY', country_code: 'SY', text: 'Dayr az Zawr' },
3014
+ { value: 'SY-DI', country_code: 'SY', text: 'Dimashq' },
3015
+ { value: 'SY-HL', country_code: 'SY', text: 'Halab' },
3016
+ { value: 'SY-HM', country_code: 'SY', text: 'Hamah' },
3017
+ { value: 'SY-HI', country_code: 'SY', text: 'Hims' },
3018
+ { value: 'SY-ID', country_code: 'SY', text: 'Idlib' },
3019
+ { value: 'SY-RD', country_code: 'SY', text: 'Rif Dimashq' },
3020
+ { value: 'SY-TA', country_code: 'SY', text: 'Tartus' },
3021
+ { value: 'SZ-HH', country_code: 'SZ', text: 'Hhohho' },
3022
+ { value: 'SZ-LU', country_code: 'SZ', text: 'Lubombo' },
3023
+ { value: 'SZ-MA', country_code: 'SZ', text: 'Manzini' },
3024
+ { value: 'SZ-SH', country_code: 'SZ', text: 'Shiselweni' },
3025
+ { value: 'TD-BG', country_code: 'TD', text: 'Bahr el Gazel' },
3026
+ { value: 'TD-BA', country_code: 'TD', text: 'Batha' },
3027
+ { value: 'TD-BO', country_code: 'TD', text: 'Borkou' },
3028
+ { value: 'TD-CB', country_code: 'TD', text: 'Chari-Baguirmi' },
3029
+ { value: 'TD-GR', country_code: 'TD', text: 'Guera' },
3030
+ { value: 'TD-HL', country_code: 'TD', text: 'Hadjer Lamis' },
3031
+ { value: 'TD-KA', country_code: 'TD', text: 'Kanem' },
3032
+ { value: 'TD-LC', country_code: 'TD', text: 'Lac' },
3033
+ { value: 'TD-LO', country_code: 'TD', text: 'Logone-Occidental' },
3034
+ { value: 'TD-LR', country_code: 'TD', text: 'Logone-Oriental' },
3035
+ { value: 'TD-MA', country_code: 'TD', text: 'Mandoul' },
3036
+ { value: 'TD-ME', country_code: 'TD', text: 'Mayo-Kebbi-Est' },
3037
+ { value: 'TD-MO', country_code: 'TD', text: 'Mayo-Kebbi-Ouest' },
3038
+ { value: 'TD-MC', country_code: 'TD', text: 'Moyen-Chari' },
3039
+ { value: 'TD-OD', country_code: 'TD', text: 'Ouaddai' },
3040
+ { value: 'TD-SA', country_code: 'TD', text: 'Salamat' },
3041
+ { value: 'TD-TA', country_code: 'TD', text: 'Tandjile' },
3042
+ { value: 'TD-TI', country_code: 'TD', text: 'Tibesti' },
3043
+ { value: 'TD-WF', country_code: 'TD', text: 'Wadi Fira' },
3044
+ { value: 'TG-C', country_code: 'TG', text: 'Centrale' },
3045
+ { value: 'TG-K', country_code: 'TG', text: 'Kara' },
3046
+ { value: 'TG-M', country_code: 'TG', text: 'Maritime' },
3047
+ { value: 'TG-P', country_code: 'TG', text: 'Plateaux' },
3048
+ { value: 'TG-S', country_code: 'TG', text: 'Savannes' },
3049
+ { value: 'TH-37', country_code: 'TH', text: 'Amnat Charoen' },
3050
+ { value: 'TH-15', country_code: 'TH', text: 'Ang Thong' },
3051
+ { value: 'TH-31', country_code: 'TH', text: 'Buri Ram' },
3052
+ { value: 'TH-24', country_code: 'TH', text: 'Chachoengsao' },
3053
+ { value: 'TH-18', country_code: 'TH', text: 'Chai Nat' },
3054
+ { value: 'TH-36', country_code: 'TH', text: 'Chaiyaphum' },
3055
+ { value: 'TH-22', country_code: 'TH', text: 'Chanthaburi' },
3056
+ { value: 'TH-50', country_code: 'TH', text: 'Chiang Mai' },
3057
+ { value: 'TH-57', country_code: 'TH', text: 'Chiang Rai' },
3058
+ { value: 'TH-20', country_code: 'TH', text: 'Chon Buri' },
3059
+ { value: 'TH-86', country_code: 'TH', text: 'Chumphon' },
3060
+ { value: 'TH-46', country_code: 'TH', text: 'Kalasin' },
3061
+ { value: 'TH-62', country_code: 'TH', text: 'Kamphaeng Phet' },
3062
+ { value: 'TH-71', country_code: 'TH', text: 'Kanchanaburi' },
3063
+ { value: 'TH-40', country_code: 'TH', text: 'Khon Kaen' },
3064
+ { value: 'TH-81', country_code: 'TH', text: 'Krabi' },
3065
+ { value: 'TH-10', country_code: 'TH', text: 'Krung Thep Maha Nakhon' },
3066
+ { value: 'TH-52', country_code: 'TH', text: 'Lampang' },
3067
+ { value: 'TH-51', country_code: 'TH', text: 'Lamphun' },
3068
+ { value: 'TH-42', country_code: 'TH', text: 'Loei' },
3069
+ { value: 'TH-16', country_code: 'TH', text: 'Lop Buri' },
3070
+ { value: 'TH-58', country_code: 'TH', text: 'Mae Hong Son' },
3071
+ { value: 'TH-44', country_code: 'TH', text: 'Maha Sarakham' },
3072
+ { value: 'TH-49', country_code: 'TH', text: 'Mukdahan' },
3073
+ { value: 'TH-26', country_code: 'TH', text: 'Nakhon Nayok' },
3074
+ { value: 'TH-73', country_code: 'TH', text: 'Nakhon Pathom' },
3075
+ { value: 'TH-48', country_code: 'TH', text: 'Nakhon Phanom' },
3076
+ { value: 'TH-30', country_code: 'TH', text: 'Nakhon Ratchasima' },
3077
+ { value: 'TH-60', country_code: 'TH', text: 'Nakhon Sawan' },
3078
+ { value: 'TH-80', country_code: 'TH', text: 'Nakhon Si Thammarat' },
3079
+ { value: 'TH-55', country_code: 'TH', text: 'Nan' },
3080
+ { value: 'TH-96', country_code: 'TH', text: 'Narathiwat' },
3081
+ { value: 'TH-39', country_code: 'TH', text: 'Nong Bua Lam Phu' },
3082
+ { value: 'TH-43', country_code: 'TH', text: 'Nong Khai' },
3083
+ { value: 'TH-12', country_code: 'TH', text: 'Nonthaburi' },
3084
+ { value: 'TH-13', country_code: 'TH', text: 'Pathum Thani' },
3085
+ { value: 'TH-94', country_code: 'TH', text: 'Pattani' },
3086
+ { value: 'TH-82', country_code: 'TH', text: 'Phangnga' },
3087
+ { value: 'TH-93', country_code: 'TH', text: 'Phatthalung' },
3088
+ { value: 'TH-56', country_code: 'TH', text: 'Phayao' },
3089
+ { value: 'TH-67', country_code: 'TH', text: 'Phetchabun' },
3090
+ { value: 'TH-76', country_code: 'TH', text: 'Phetchaburi' },
3091
+ { value: 'TH-66', country_code: 'TH', text: 'Phichit' },
3092
+ { value: 'TH-65', country_code: 'TH', text: 'Phitsanulok' },
3093
+ { value: 'TH-14', country_code: 'TH', text: 'Phra Nakhon Si Ayutthaya' },
3094
+ { value: 'TH-54', country_code: 'TH', text: 'Phrae' },
3095
+ { value: 'TH-83', country_code: 'TH', text: 'Phuket' },
3096
+ { value: 'TH-25', country_code: 'TH', text: 'Prachin Buri' },
3097
+ { value: 'TH-77', country_code: 'TH', text: 'Prachuap Khiri Khan' },
3098
+ { value: 'TH-85', country_code: 'TH', text: 'Ranong' },
3099
+ { value: 'TH-70', country_code: 'TH', text: 'Ratchaburi' },
3100
+ { value: 'TH-21', country_code: 'TH', text: 'Rayong' },
3101
+ { value: 'TH-45', country_code: 'TH', text: 'Roi Et' },
3102
+ { value: 'TH-27', country_code: 'TH', text: 'Sa Kaeo' },
3103
+ { value: 'TH-47', country_code: 'TH', text: 'Sakon Nakhon' },
3104
+ { value: 'TH-11', country_code: 'TH', text: 'Samut Prakan' },
3105
+ { value: 'TH-74', country_code: 'TH', text: 'Samut Sakhon' },
3106
+ { value: 'TH-75', country_code: 'TH', text: 'Samut Songkhram' },
3107
+ { value: 'TH-19', country_code: 'TH', text: 'Saraburi' },
3108
+ { value: 'TH-91', country_code: 'TH', text: 'Satun' },
3109
+ { value: 'TH-33', country_code: 'TH', text: 'Si Sa Ket' },
3110
+ { value: 'TH-17', country_code: 'TH', text: 'Sing Buri' },
3111
+ { value: 'TH-90', country_code: 'TH', text: 'Songkhla' },
3112
+ { value: 'TH-64', country_code: 'TH', text: 'Sukhothai' },
3113
+ { value: 'TH-72', country_code: 'TH', text: 'Suphan Buri' },
3114
+ { value: 'TH-84', country_code: 'TH', text: 'Surat Thani' },
3115
+ { value: 'TH-32', country_code: 'TH', text: 'Surin' },
3116
+ { value: 'TH-63', country_code: 'TH', text: 'Tak' },
3117
+ { value: 'TH-92', country_code: 'TH', text: 'Trang' },
3118
+ { value: 'TH-23', country_code: 'TH', text: 'Trat' },
3119
+ { value: 'TH-34', country_code: 'TH', text: 'Ubon Ratchathani' },
3120
+ { value: 'TH-41', country_code: 'TH', text: 'Udon Thani' },
3121
+ { value: 'TH-61', country_code: 'TH', text: 'Uthai Thani' },
3122
+ { value: 'TH-53', country_code: 'TH', text: 'Uttaradit' },
3123
+ { value: 'TH-95', country_code: 'TH', text: 'Yala' },
3124
+ { value: 'TH-35', country_code: 'TH', text: 'Yasothon' },
3125
+ { value: 'TJ-DU', country_code: 'TJ', text: 'Dushanbe' },
3126
+ { value: 'TJ-KT', country_code: 'TJ', text: 'Khatlon' },
3127
+ { value: 'TJ-GB', country_code: 'TJ', text: 'Kuhistoni Badakhshon' },
3128
+ { value: 'TJ-RA', country_code: 'TJ', text: 'Nohiyahoi Tobei Jumhuri' },
3129
+ { value: 'TJ-SU', country_code: 'TJ', text: 'Sughd' },
3130
+ { value: 'TL-DI', country_code: 'TL', text: 'Dili' },
3131
+ { value: 'TM-A', country_code: 'TM', text: 'Ahal' },
3132
+ { value: 'TM-B', country_code: 'TM', text: 'Balkan' },
3133
+ { value: 'TM-D', country_code: 'TM', text: 'Dasoguz' },
3134
+ { value: 'TM-L', country_code: 'TM', text: 'Lebap' },
3135
+ { value: 'TM-M', country_code: 'TM', text: 'Mary' },
3136
+ { value: 'TN-31', country_code: 'TN', text: 'Beja' },
3137
+ { value: 'TN-13', country_code: 'TN', text: 'Ben Arous' },
3138
+ { value: 'TN-23', country_code: 'TN', text: 'Bizerte' },
3139
+ { value: 'TN-81', country_code: 'TN', text: 'Gabes' },
3140
+ { value: 'TN-71', country_code: 'TN', text: 'Gafsa' },
3141
+ { value: 'TN-32', country_code: 'TN', text: 'Jendouba' },
3142
+ { value: 'TN-41', country_code: 'TN', text: 'Kairouan' },
3143
+ { value: 'TN-42', country_code: 'TN', text: 'Kasserine' },
3144
+ { value: 'TN-73', country_code: 'TN', text: 'Kebili' },
3145
+ { value: 'TN-12', country_code: 'TN', text: "L'Ariana" },
3146
+ { value: 'TN-14', country_code: 'TN', text: 'La Manouba' },
3147
+ { value: 'TN-33', country_code: 'TN', text: 'Le Kef' },
3148
+ { value: 'TN-53', country_code: 'TN', text: 'Mahdia' },
3149
+ { value: 'TN-82', country_code: 'TN', text: 'Medenine' },
3150
+ { value: 'TN-52', country_code: 'TN', text: 'Monastir' },
3151
+ { value: 'TN-21', country_code: 'TN', text: 'Nabeul' },
3152
+ { value: 'TN-61', country_code: 'TN', text: 'Sfax' },
3153
+ { value: 'TN-43', country_code: 'TN', text: 'Sidi Bouzid' },
3154
+ { value: 'TN-34', country_code: 'TN', text: 'Siliana' },
3155
+ { value: 'TN-51', country_code: 'TN', text: 'Sousse' },
3156
+ { value: 'TN-83', country_code: 'TN', text: 'Tataouine' },
3157
+ { value: 'TN-72', country_code: 'TN', text: 'Tozeur' },
3158
+ { value: 'TN-11', country_code: 'TN', text: 'Tunis' },
3159
+ { value: 'TN-22', country_code: 'TN', text: 'Zaghouan' },
3160
+ { value: 'TO-02', country_code: 'TO', text: "Ha'apai" },
3161
+ { value: 'TO-04', country_code: 'TO', text: 'Tongatapu' },
3162
+ { value: 'TO-05', country_code: 'TO', text: "Vava'u" },
3163
+ { value: 'TR-01', country_code: 'TR', text: 'Adana' },
3164
+ { value: 'TR-02', country_code: 'TR', text: 'Adiyaman' },
3165
+ { value: 'TR-03', country_code: 'TR', text: 'Afyonkarahisar' },
3166
+ { value: 'TR-04', country_code: 'TR', text: 'Agri' },
3167
+ { value: 'TR-68', country_code: 'TR', text: 'Aksaray' },
3168
+ { value: 'TR-05', country_code: 'TR', text: 'Amasya' },
3169
+ { value: 'TR-06', country_code: 'TR', text: 'Ankara' },
3170
+ { value: 'TR-07', country_code: 'TR', text: 'Antalya' },
3171
+ { value: 'TR-75', country_code: 'TR', text: 'Ardahan' },
3172
+ { value: 'TR-08', country_code: 'TR', text: 'Artvin' },
3173
+ { value: 'TR-09', country_code: 'TR', text: 'Aydin' },
3174
+ { value: 'TR-10', country_code: 'TR', text: 'Balikesir' },
3175
+ { value: 'TR-74', country_code: 'TR', text: 'Bartin' },
3176
+ { value: 'TR-72', country_code: 'TR', text: 'Batman' },
3177
+ { value: 'TR-69', country_code: 'TR', text: 'Bayburt' },
3178
+ { value: 'TR-11', country_code: 'TR', text: 'Bilecik' },
3179
+ { value: 'TR-12', country_code: 'TR', text: 'Bingol' },
3180
+ { value: 'TR-13', country_code: 'TR', text: 'Bitlis' },
3181
+ { value: 'TR-14', country_code: 'TR', text: 'Bolu' },
3182
+ { value: 'TR-15', country_code: 'TR', text: 'Burdur' },
3183
+ { value: 'TR-16', country_code: 'TR', text: 'Bursa' },
3184
+ { value: 'TR-17', country_code: 'TR', text: 'Canakkale' },
3185
+ { value: 'TR-18', country_code: 'TR', text: 'Cankiri' },
3186
+ { value: 'TR-19', country_code: 'TR', text: 'Corum' },
3187
+ { value: 'TR-20', country_code: 'TR', text: 'Denizli' },
3188
+ { value: 'TR-21', country_code: 'TR', text: 'Diyarbakir' },
3189
+ { value: 'TR-81', country_code: 'TR', text: 'Duzce' },
3190
+ { value: 'TR-22', country_code: 'TR', text: 'Edirne' },
3191
+ { value: 'TR-23', country_code: 'TR', text: 'Elazig' },
3192
+ { value: 'TR-24', country_code: 'TR', text: 'Erzincan' },
3193
+ { value: 'TR-25', country_code: 'TR', text: 'Erzurum' },
3194
+ { value: 'TR-26', country_code: 'TR', text: 'Eskisehir' },
3195
+ { value: 'TR-27', country_code: 'TR', text: 'Gaziantep' },
3196
+ { value: 'TR-28', country_code: 'TR', text: 'Giresun' },
3197
+ { value: 'TR-29', country_code: 'TR', text: 'Gumushane' },
3198
+ { value: 'TR-30', country_code: 'TR', text: 'Hakkari' },
3199
+ { value: 'TR-31', country_code: 'TR', text: 'Hatay' },
3200
+ { value: 'TR-76', country_code: 'TR', text: 'Igdir' },
3201
+ { value: 'TR-32', country_code: 'TR', text: 'Isparta' },
3202
+ { value: 'TR-34', country_code: 'TR', text: 'Istanbul' },
3203
+ { value: 'TR-35', country_code: 'TR', text: 'Izmir' },
3204
+ { value: 'TR-46', country_code: 'TR', text: 'Kahramanmaras' },
3205
+ { value: 'TR-78', country_code: 'TR', text: 'Karabuk' },
3206
+ { value: 'TR-70', country_code: 'TR', text: 'Karaman' },
3207
+ { value: 'TR-36', country_code: 'TR', text: 'Kars' },
3208
+ { value: 'TR-37', country_code: 'TR', text: 'Kastamonu' },
3209
+ { value: 'TR-38', country_code: 'TR', text: 'Kayseri' },
3210
+ { value: 'TR-79', country_code: 'TR', text: 'Kilis' },
3211
+ { value: 'TR-71', country_code: 'TR', text: 'Kirikkale' },
3212
+ { value: 'TR-39', country_code: 'TR', text: 'Kirklareli' },
3213
+ { value: 'TR-40', country_code: 'TR', text: 'Kirsehir' },
3214
+ { value: 'TR-41', country_code: 'TR', text: 'Kocaeli' },
3215
+ { value: 'TR-42', country_code: 'TR', text: 'Konya' },
3216
+ { value: 'TR-43', country_code: 'TR', text: 'Kutahya' },
3217
+ { value: 'TR-44', country_code: 'TR', text: 'Malatya' },
3218
+ { value: 'TR-45', country_code: 'TR', text: 'Manisa' },
3219
+ { value: 'TR-47', country_code: 'TR', text: 'Mardin' },
3220
+ { value: 'TR-33', country_code: 'TR', text: 'Mersin' },
3221
+ { value: 'TR-48', country_code: 'TR', text: 'Mugla' },
3222
+ { value: 'TR-49', country_code: 'TR', text: 'Mus' },
3223
+ { value: 'TR-50', country_code: 'TR', text: 'Nevsehir' },
3224
+ { value: 'TR-51', country_code: 'TR', text: 'Nigde' },
3225
+ { value: 'TR-52', country_code: 'TR', text: 'Ordu' },
3226
+ { value: 'TR-80', country_code: 'TR', text: 'Osmaniye' },
3227
+ { value: 'TR-53', country_code: 'TR', text: 'Rize' },
3228
+ { value: 'TR-54', country_code: 'TR', text: 'Sakarya' },
3229
+ { value: 'TR-55', country_code: 'TR', text: 'Samsun' },
3230
+ { value: 'TR-63', country_code: 'TR', text: 'Sanliurfa' },
3231
+ { value: 'TR-56', country_code: 'TR', text: 'Siirt' },
3232
+ { value: 'TR-57', country_code: 'TR', text: 'Sinop' },
3233
+ { value: 'TR-73', country_code: 'TR', text: 'Sirnak' },
3234
+ { value: 'TR-58', country_code: 'TR', text: 'Sivas' },
3235
+ { value: 'TR-59', country_code: 'TR', text: 'Tekirdag' },
3236
+ { value: 'TR-60', country_code: 'TR', text: 'Tokat' },
3237
+ { value: 'TR-61', country_code: 'TR', text: 'Trabzon' },
3238
+ { value: 'TR-62', country_code: 'TR', text: 'Tunceli' },
3239
+ { value: 'TR-64', country_code: 'TR', text: 'Usak' },
3240
+ { value: 'TR-65', country_code: 'TR', text: 'Van' },
3241
+ { value: 'TR-77', country_code: 'TR', text: 'Yalova' },
3242
+ { value: 'TR-66', country_code: 'TR', text: 'Yozgat' },
3243
+ { value: 'TR-67', country_code: 'TR', text: 'Zonguldak' },
3244
+ { value: 'TT-ARI', country_code: 'TT', text: 'Arima' },
3245
+ { value: 'TT-CHA', country_code: 'TT', text: 'Chaguanas' },
3246
+ { value: 'TT-CTT', country_code: 'TT', text: 'Couva-Tabaquite-Talparo' },
3247
+ { value: 'TT-DMN', country_code: 'TT', text: 'Diego Martin' },
3248
+ { value: 'TT-MRC', country_code: 'TT', text: 'Mayaro-Rio Claro' },
3249
+ { value: 'TT-PED', country_code: 'TT', text: 'Penal-Debe' },
3250
+ { value: 'TT-PTF', country_code: 'TT', text: 'Point Fortin' },
3251
+ { value: 'TT-POS', country_code: 'TT', text: 'Port of Spain' },
3252
+ { value: 'TT-PRT', country_code: 'TT', text: 'Princes Town' },
3253
+ { value: 'TT-SFO', country_code: 'TT', text: 'San Fernando' },
3254
+ { value: 'TT-SJL', country_code: 'TT', text: 'San Juan-Laventille' },
3255
+ { value: 'TT-SGE', country_code: 'TT', text: 'Sangre Grande' },
3256
+ { value: 'TT-SIP', country_code: 'TT', text: 'Siparia' },
3257
+ { value: 'TT-TOB', country_code: 'TT', text: 'Tobago' },
3258
+ { value: 'TT-TUP', country_code: 'TT', text: 'Tunapuna-Piarco' },
3259
+ { value: 'TV-FUN', country_code: 'TV', text: 'Funafuti' },
3260
+ { value: 'TW-CHA', country_code: 'TW', text: 'Changhua' },
3261
+ { value: 'TW-CYQ', country_code: 'TW', text: 'Chiayi' },
3262
+ { value: 'TW-HSQ', country_code: 'TW', text: 'Hsinchu' },
3263
+ { value: 'TW-HUA', country_code: 'TW', text: 'Hualien' },
3264
+ { value: 'TW-KHH', country_code: 'TW', text: 'Kaohsiung' },
3265
+ { value: 'TW-KEE', country_code: 'TW', text: 'Keelung' },
3266
+ { value: 'TW-KIN', country_code: 'TW', text: 'Kinmen' },
3267
+ { value: 'TW-LIE', country_code: 'TW', text: 'Lienchiang' },
3268
+ { value: 'TW-MIA', country_code: 'TW', text: 'Miaoli' },
3269
+ { value: 'TW-NAN', country_code: 'TW', text: 'Nantou' },
3270
+ { value: 'TW-NWT', country_code: 'TW', text: 'New Taipei' },
3271
+ { value: 'TW-PEN', country_code: 'TW', text: 'Penghu' },
3272
+ { value: 'TW-PIF', country_code: 'TW', text: 'Pingtung' },
3273
+ { value: 'TW-TXG', country_code: 'TW', text: 'Taichung' },
3274
+ { value: 'TW-TNN', country_code: 'TW', text: 'Tainan' },
3275
+ { value: 'TW-TPE', country_code: 'TW', text: 'Taipei' },
3276
+ { value: 'TW-TTT', country_code: 'TW', text: 'Taitung' },
3277
+ { value: 'TW-TAO', country_code: 'TW', text: 'Taoyuan' },
3278
+ { value: 'TW-ILA', country_code: 'TW', text: 'Yilan' },
3279
+ { value: 'TW-YUN', country_code: 'TW', text: 'Yunlin' },
3280
+ { value: 'TZ-01', country_code: 'TZ', text: 'Arusha' },
3281
+ { value: 'TZ-02', country_code: 'TZ', text: 'Dar es Salaam' },
3282
+ { value: 'TZ-03', country_code: 'TZ', text: 'Dodoma' },
3283
+ { value: 'TZ-04', country_code: 'TZ', text: 'Iringa' },
3284
+ { value: 'TZ-05', country_code: 'TZ', text: 'Kagera' },
3285
+ { value: 'TZ-06', country_code: 'TZ', text: 'Kaskazini Pemba' },
3286
+ { value: 'TZ-07', country_code: 'TZ', text: 'Kaskazini Unguja' },
3287
+ { value: 'TZ-08', country_code: 'TZ', text: 'Kigoma' },
3288
+ { value: 'TZ-09', country_code: 'TZ', text: 'Kilimanjaro' },
3289
+ { value: 'TZ-10', country_code: 'TZ', text: 'Kusini Pemba' },
3290
+ { value: 'TZ-11', country_code: 'TZ', text: 'Kusini Unguja' },
3291
+ { value: 'TZ-12', country_code: 'TZ', text: 'Lindi' },
3292
+ { value: 'TZ-26', country_code: 'TZ', text: 'Manyara' },
3293
+ { value: 'TZ-13', country_code: 'TZ', text: 'Mara' },
3294
+ { value: 'TZ-14', country_code: 'TZ', text: 'Mbeya' },
3295
+ { value: 'TZ-15', country_code: 'TZ', text: 'Mjini Magharibi' },
3296
+ { value: 'TZ-16', country_code: 'TZ', text: 'Morogoro' },
3297
+ { value: 'TZ-17', country_code: 'TZ', text: 'Mtwara' },
3298
+ { value: 'TZ-18', country_code: 'TZ', text: 'Mwanza' },
3299
+ { value: 'TZ-19', country_code: 'TZ', text: 'Pwani' },
3300
+ { value: 'TZ-20', country_code: 'TZ', text: 'Rukwa' },
3301
+ { value: 'TZ-21', country_code: 'TZ', text: 'Ruvuma' },
3302
+ { value: 'TZ-22', country_code: 'TZ', text: 'Shinyanga' },
3303
+ { value: 'TZ-23', country_code: 'TZ', text: 'Singida' },
3304
+ { value: 'TZ-24', country_code: 'TZ', text: 'Tabora' },
3305
+ { value: 'TZ-25', country_code: 'TZ', text: 'Tanga' },
3306
+ { value: 'UA-43', country_code: 'UA', text: 'Avtonomna Respublika Krym' },
3307
+ { value: 'UA-71', country_code: 'UA', text: 'Cherkaska oblast' },
3308
+ { value: 'UA-74', country_code: 'UA', text: 'Chernihivska oblast' },
3309
+ { value: 'UA-77', country_code: 'UA', text: 'Chernivetska oblast' },
3310
+ { value: 'UA-12', country_code: 'UA', text: 'Dnipropetrovska oblast' },
3311
+ { value: 'UA-14', country_code: 'UA', text: 'Donetska oblast' },
3312
+ { value: 'UA-26', country_code: 'UA', text: 'Ivano-Frankivska oblast' },
3313
+ { value: 'UA-63', country_code: 'UA', text: 'Kharkivska oblast' },
3314
+ { value: 'UA-65', country_code: 'UA', text: 'Khersonska oblast' },
3315
+ { value: 'UA-68', country_code: 'UA', text: 'Khmelnytska oblast' },
3316
+ { value: 'UA-35', country_code: 'UA', text: 'Kirovohradska oblast' },
3317
+ { value: 'UA-30', country_code: 'UA', text: 'Kyiv' },
3318
+ { value: 'UA-32', country_code: 'UA', text: 'Kyivska oblast' },
3319
+ { value: 'UA-09', country_code: 'UA', text: 'Luhanska oblast' },
3320
+ { value: 'UA-46', country_code: 'UA', text: 'Lvivska oblast' },
3321
+ { value: 'UA-48', country_code: 'UA', text: 'Mykolaivska oblast' },
3322
+ { value: 'UA-51', country_code: 'UA', text: 'Odeska oblast' },
3323
+ { value: 'UA-53', country_code: 'UA', text: 'Poltavska oblast' },
3324
+ { value: 'UA-56', country_code: 'UA', text: 'Rivnenska oblast' },
3325
+ { value: 'UA-40', country_code: 'UA', text: "Sevastopol'" },
3326
+ { value: 'UA-59', country_code: 'UA', text: 'Sumska oblast' },
3327
+ { value: 'UA-61', country_code: 'UA', text: 'Ternopilska oblast' },
3328
+ { value: 'UA-05', country_code: 'UA', text: 'Vinnytska oblast' },
3329
+ { value: 'UA-07', country_code: 'UA', text: 'Volynska oblast' },
3330
+ { value: 'UA-21', country_code: 'UA', text: 'Zakarpatska oblast' },
3331
+ { value: 'UA-23', country_code: 'UA', text: 'Zaporizka oblast' },
3332
+ { value: 'UA-18', country_code: 'UA', text: 'Zhytomyrska oblast' },
3333
+ { value: 'UG-317', country_code: 'UG', text: 'Abim' },
3334
+ { value: 'UG-301', country_code: 'UG', text: 'Adjumani' },
3335
+ { value: 'UG-322', country_code: 'UG', text: 'Agago' },
3336
+ { value: 'UG-323', country_code: 'UG', text: 'Alebtong' },
3337
+ { value: 'UG-314', country_code: 'UG', text: 'Amolatar' },
3338
+ { value: 'UG-324', country_code: 'UG', text: 'Amudat' },
3339
+ { value: 'UG-216', country_code: 'UG', text: 'Amuria' },
3340
+ { value: 'UG-319', country_code: 'UG', text: 'Amuru' },
3341
+ { value: 'UG-302', country_code: 'UG', text: 'Apac' },
3342
+ { value: 'UG-303', country_code: 'UG', text: 'Arua' },
3343
+ { value: 'UG-217', country_code: 'UG', text: 'Budaka' },
3344
+ { value: 'UG-223', country_code: 'UG', text: 'Bududa' },
3345
+ { value: 'UG-201', country_code: 'UG', text: 'Bugiri' },
3346
+ { value: 'UG-117', country_code: 'UG', text: 'Buikwe' },
3347
+ { value: 'UG-224', country_code: 'UG', text: 'Bukedea' },
3348
+ { value: 'UG-118', country_code: 'UG', text: 'Bukomansibi' },
3349
+ { value: 'UG-218', country_code: 'UG', text: 'Bukwa' },
3350
+ { value: 'UG-225', country_code: 'UG', text: 'Bulambuli' },
3351
+ { value: 'UG-419', country_code: 'UG', text: 'Buliisa' },
3352
+ { value: 'UG-401', country_code: 'UG', text: 'Bundibugyo' },
3353
+ { value: 'UG-402', country_code: 'UG', text: 'Bushenyi' },
3354
+ { value: 'UG-202', country_code: 'UG', text: 'Busia' },
3355
+ { value: 'UG-219', country_code: 'UG', text: 'Butaleja' },
3356
+ { value: 'UG-120', country_code: 'UG', text: 'Buvuma' },
3357
+ { value: 'UG-226', country_code: 'UG', text: 'Buyende' },
3358
+ { value: 'UG-318', country_code: 'UG', text: 'Dokolo' },
3359
+ { value: 'UG-121', country_code: 'UG', text: 'Gomba' },
3360
+ { value: 'UG-304', country_code: 'UG', text: 'Gulu' },
3361
+ { value: 'UG-403', country_code: 'UG', text: 'Hoima' },
3362
+ { value: 'UG-203', country_code: 'UG', text: 'Iganga' },
3363
+ { value: 'UG-417', country_code: 'UG', text: 'Isingiro' },
3364
+ { value: 'UG-204', country_code: 'UG', text: 'Jinja' },
3365
+ { value: 'UG-315', country_code: 'UG', text: 'Kaabong' },
3366
+ { value: 'UG-404', country_code: 'UG', text: 'Kabale' },
3367
+ { value: 'UG-405', country_code: 'UG', text: 'Kabarole' },
3368
+ { value: 'UG-213', country_code: 'UG', text: 'Kaberamaido' },
3369
+ { value: 'UG-101', country_code: 'UG', text: 'Kalangala' },
3370
+ { value: 'UG-220', country_code: 'UG', text: 'Kaliro' },
3371
+ { value: 'UG-102', country_code: 'UG', text: 'Kampala' },
3372
+ { value: 'UG-205', country_code: 'UG', text: 'Kamuli' },
3373
+ { value: 'UG-413', country_code: 'UG', text: 'Kamwenge' },
3374
+ { value: 'UG-414', country_code: 'UG', text: 'Kanungu' },
3375
+ { value: 'UG-206', country_code: 'UG', text: 'Kapchorwa' },
3376
+ { value: 'UG-406', country_code: 'UG', text: 'Kasese' },
3377
+ { value: 'UG-207', country_code: 'UG', text: 'Katakwi' },
3378
+ { value: 'UG-112', country_code: 'UG', text: 'Kayunga' },
3379
+ { value: 'UG-407', country_code: 'UG', text: 'Kibaale' },
3380
+ { value: 'UG-103', country_code: 'UG', text: 'Kiboga' },
3381
+ { value: 'UG-227', country_code: 'UG', text: 'Kibuku' },
3382
+ { value: 'UG-420', country_code: 'UG', text: 'Kiryandongo' },
3383
+ { value: 'UG-408', country_code: 'UG', text: 'Kisoro' },
3384
+ { value: 'UG-305', country_code: 'UG', text: 'Kitgum' },
3385
+ { value: 'UG-316', country_code: 'UG', text: 'Koboko' },
3386
+ { value: 'UG-326', country_code: 'UG', text: 'Kole' },
3387
+ { value: 'UG-306', country_code: 'UG', text: 'Kotido' },
3388
+ { value: 'UG-208', country_code: 'UG', text: 'Kumi' },
3389
+ { value: 'UG-228', country_code: 'UG', text: 'Kween' },
3390
+ { value: 'UG-123', country_code: 'UG', text: 'Kyankwanzi' },
3391
+ { value: 'UG-421', country_code: 'UG', text: 'Kyegegwa' },
3392
+ { value: 'UG-415', country_code: 'UG', text: 'Kyenjojo' },
3393
+ { value: 'UG-307', country_code: 'UG', text: 'Lira' },
3394
+ { value: 'UG-229', country_code: 'UG', text: 'Luuka' },
3395
+ { value: 'UG-104', country_code: 'UG', text: 'Luwero' },
3396
+ { value: 'UG-124', country_code: 'UG', text: 'Lwengo' },
3397
+ { value: 'UG-116', country_code: 'UG', text: 'Lyantonde' },
3398
+ { value: 'UG-221', country_code: 'UG', text: 'Manafwa' },
3399
+ { value: 'UG-320', country_code: 'UG', text: 'Maracha' },
3400
+ { value: 'UG-105', country_code: 'UG', text: 'Masaka' },
3401
+ { value: 'UG-409', country_code: 'UG', text: 'Masindi' },
3402
+ { value: 'UG-214', country_code: 'UG', text: 'Mayuge' },
3403
+ { value: 'UG-209', country_code: 'UG', text: 'Mbale' },
3404
+ { value: 'UG-410', country_code: 'UG', text: 'Mbarara' },
3405
+ { value: 'UG-422', country_code: 'UG', text: 'Mitooma' },
3406
+ { value: 'UG-114', country_code: 'UG', text: 'Mityana' },
3407
+ { value: 'UG-308', country_code: 'UG', text: 'Moroto' },
3408
+ { value: 'UG-309', country_code: 'UG', text: 'Moyo' },
3409
+ { value: 'UG-106', country_code: 'UG', text: 'Mpigi' },
3410
+ { value: 'UG-107', country_code: 'UG', text: 'Mubende' },
3411
+ { value: 'UG-108', country_code: 'UG', text: 'Mukono' },
3412
+ { value: 'UG-311', country_code: 'UG', text: 'Nakapiripirit' },
3413
+ { value: 'UG-115', country_code: 'UG', text: 'Nakaseke' },
3414
+ { value: 'UG-109', country_code: 'UG', text: 'Nakasongola' },
3415
+ { value: 'UG-230', country_code: 'UG', text: 'Namayingo' },
3416
+ { value: 'UG-222', country_code: 'UG', text: 'Namutumba' },
3417
+ { value: 'UG-328', country_code: 'UG', text: 'Napak' },
3418
+ { value: 'UG-310', country_code: 'UG', text: 'Nebbi' },
3419
+ { value: 'UG-231', country_code: 'UG', text: 'Ngora' },
3420
+ { value: 'UG-423', country_code: 'UG', text: 'Ntoroko' },
3421
+ { value: 'UG-411', country_code: 'UG', text: 'Ntungamo' },
3422
+ { value: 'UG-330', country_code: 'UG', text: 'Otuke' },
3423
+ { value: 'UG-321', country_code: 'UG', text: 'Oyam' },
3424
+ { value: 'UG-312', country_code: 'UG', text: 'Pader' },
3425
+ { value: 'UG-210', country_code: 'UG', text: 'Pallisa' },
3426
+ { value: 'UG-110', country_code: 'UG', text: 'Rakai' },
3427
+ { value: 'UG-424', country_code: 'UG', text: 'Rubirizi' },
3428
+ { value: 'UG-412', country_code: 'UG', text: 'Rukungiri' },
3429
+ { value: 'UG-111', country_code: 'UG', text: 'Sembabule' },
3430
+ { value: 'UG-232', country_code: 'UG', text: 'Serere' },
3431
+ { value: 'UG-425', country_code: 'UG', text: 'Sheema' },
3432
+ { value: 'UG-215', country_code: 'UG', text: 'Sironko' },
3433
+ { value: 'UG-211', country_code: 'UG', text: 'Soroti' },
3434
+ { value: 'UG-212', country_code: 'UG', text: 'Tororo' },
3435
+ { value: 'UG-113', country_code: 'UG', text: 'Wakiso' },
3436
+ { value: 'UG-313', country_code: 'UG', text: 'Yumbe' },
3437
+ { value: 'UG-331', country_code: 'UG', text: 'Zombo' },
3438
+ { value: 'UM-95', country_code: 'UM', text: 'Palmyra Atoll' },
3439
+ { value: 'US-AL', country_code: 'US', text: 'Alabama' },
3440
+ { value: 'US-AK', country_code: 'US', text: 'Alaska' },
3441
+ { value: 'US-AZ', country_code: 'US', text: 'Arizona' },
3442
+ { value: 'US-AR', country_code: 'US', text: 'Arkansas' },
3443
+ { value: 'US-CA', country_code: 'US', text: 'California' },
3444
+ { value: 'US-CO', country_code: 'US', text: 'Colorado' },
3445
+ { value: 'US-CT', country_code: 'US', text: 'Connecticut' },
3446
+ { value: 'US-DE', country_code: 'US', text: 'Delaware' },
3447
+ { value: 'US-DC', country_code: 'US', text: 'District of Columbia' },
3448
+ { value: 'US-FL', country_code: 'US', text: 'Florida' },
3449
+ { value: 'US-GA', country_code: 'US', text: 'Georgia' },
3450
+ { value: 'US-HI', country_code: 'US', text: 'Hawaii' },
3451
+ { value: 'US-ID', country_code: 'US', text: 'Idaho' },
3452
+ { value: 'US-IL', country_code: 'US', text: 'Illinois' },
3453
+ { value: 'US-IN', country_code: 'US', text: 'Indiana' },
3454
+ { value: 'US-IA', country_code: 'US', text: 'Iowa' },
3455
+ { value: 'US-KS', country_code: 'US', text: 'Kansas' },
3456
+ { value: 'US-KY', country_code: 'US', text: 'Kentucky' },
3457
+ { value: 'US-LA', country_code: 'US', text: 'Louisiana' },
3458
+ { value: 'US-ME', country_code: 'US', text: 'Maine' },
3459
+ { value: 'US-MD', country_code: 'US', text: 'Maryland' },
3460
+ { value: 'US-MA', country_code: 'US', text: 'Massachusetts' },
3461
+ { value: 'US-MI', country_code: 'US', text: 'Michigan' },
3462
+ { value: 'US-MN', country_code: 'US', text: 'Minnesota' },
3463
+ { value: 'US-MS', country_code: 'US', text: 'Mississippi' },
3464
+ { value: 'US-MO', country_code: 'US', text: 'Missouri' },
3465
+ { value: 'US-MT', country_code: 'US', text: 'Montana' },
3466
+ { value: 'US-NE', country_code: 'US', text: 'Nebraska' },
3467
+ { value: 'US-NV', country_code: 'US', text: 'Nevada' },
3468
+ { value: 'US-NH', country_code: 'US', text: 'New Hampshire' },
3469
+ { value: 'US-NJ', country_code: 'US', text: 'New Jersey' },
3470
+ { value: 'US-NM', country_code: 'US', text: 'New Mexico' },
3471
+ { value: 'US-NY', country_code: 'US', text: 'New York' },
3472
+ { value: 'US-NC', country_code: 'US', text: 'North Carolina' },
3473
+ { value: 'US-ND', country_code: 'US', text: 'North Dakota' },
3474
+ { value: 'US-OH', country_code: 'US', text: 'Ohio' },
3475
+ { value: 'US-OK', country_code: 'US', text: 'Oklahoma' },
3476
+ { value: 'US-OR', country_code: 'US', text: 'Oregon' },
3477
+ { value: 'US-PA', country_code: 'US', text: 'Pennsylvania' },
3478
+ { value: 'US-RI', country_code: 'US', text: 'Rhode Island' },
3479
+ { value: 'US-SC', country_code: 'US', text: 'South Carolina' },
3480
+ { value: 'US-SD', country_code: 'US', text: 'South Dakota' },
3481
+ { value: 'US-TN', country_code: 'US', text: 'Tennessee' },
3482
+ { value: 'US-TX', country_code: 'US', text: 'Texas' },
3483
+ { value: 'US-UT', country_code: 'US', text: 'Utah' },
3484
+ { value: 'US-VT', country_code: 'US', text: 'Vermont' },
3485
+ { value: 'US-VA', country_code: 'US', text: 'Virginia' },
3486
+ { value: 'US-WA', country_code: 'US', text: 'Washington' },
3487
+ { value: 'US-WV', country_code: 'US', text: 'West Virginia' },
3488
+ { value: 'US-WI', country_code: 'US', text: 'Wisconsin' },
3489
+ { value: 'US-WY', country_code: 'US', text: 'Wyoming' },
3490
+ { value: 'UY-AR', country_code: 'UY', text: 'Artigas' },
3491
+ { value: 'UY-CA', country_code: 'UY', text: 'Canelones' },
3492
+ { value: 'UY-CL', country_code: 'UY', text: 'Cerro Largo' },
3493
+ { value: 'UY-CO', country_code: 'UY', text: 'Colonia' },
3494
+ { value: 'UY-DU', country_code: 'UY', text: 'Durazno' },
3495
+ { value: 'UY-FS', country_code: 'UY', text: 'Flores' },
3496
+ { value: 'UY-FD', country_code: 'UY', text: 'Florida' },
3497
+ { value: 'UY-LA', country_code: 'UY', text: 'Lavalleja' },
3498
+ { value: 'UY-MA', country_code: 'UY', text: 'Maldonado' },
3499
+ { value: 'UY-MO', country_code: 'UY', text: 'Montevideo' },
3500
+ { value: 'UY-PA', country_code: 'UY', text: 'Paysandu' },
3501
+ { value: 'UY-RN', country_code: 'UY', text: 'Rio Negro' },
3502
+ { value: 'UY-RV', country_code: 'UY', text: 'Rivera' },
3503
+ { value: 'UY-RO', country_code: 'UY', text: 'Rocha' },
3504
+ { value: 'UY-SA', country_code: 'UY', text: 'Salto' },
3505
+ { value: 'UY-SJ', country_code: 'UY', text: 'San Jose' },
3506
+ { value: 'UY-SO', country_code: 'UY', text: 'Soriano' },
3507
+ { value: 'UY-TA', country_code: 'UY', text: 'Tacuarembo' },
3508
+ { value: 'UY-TT', country_code: 'UY', text: 'Treinta y Tres' },
3509
+ { value: 'UZ-AN', country_code: 'UZ', text: 'Andijon' },
3510
+ { value: 'UZ-BU', country_code: 'UZ', text: 'Buxoro' },
3511
+ { value: 'UZ-FA', country_code: 'UZ', text: "Farg'ona" },
3512
+ { value: 'UZ-JI', country_code: 'UZ', text: 'Jizzax' },
3513
+ { value: 'UZ-NG', country_code: 'UZ', text: 'Namangan' },
3514
+ { value: 'UZ-NW', country_code: 'UZ', text: 'Navoiy' },
3515
+ { value: 'UZ-QA', country_code: 'UZ', text: 'Qashqadaryo' },
3516
+ {
3517
+ value: 'UZ-QR',
3518
+ country_code: 'UZ',
3519
+ text: "Qoraqalpog'iston Respublikasi"
3520
+ },
3521
+ { value: 'UZ-SA', country_code: 'UZ', text: 'Samarqand' },
3522
+ { value: 'UZ-SI', country_code: 'UZ', text: 'Sirdaryo' },
3523
+ { value: 'UZ-SU', country_code: 'UZ', text: 'Surxondaryo' },
3524
+ { value: 'UZ-TK', country_code: 'UZ', text: 'Toshkent' },
3525
+ { value: 'UZ-XO', country_code: 'UZ', text: 'Xorazm' },
3526
+ { value: 'VC-01', country_code: 'VC', text: 'Charlotte' },
3527
+ { value: 'VC-04', country_code: 'VC', text: 'Saint George' },
3528
+ { value: 'VE-Z', country_code: 'VE', text: 'Amazonas' },
3529
+ { value: 'VE-B', country_code: 'VE', text: 'Anzoategui' },
3530
+ { value: 'VE-C', country_code: 'VE', text: 'Apure' },
3531
+ { value: 'VE-D', country_code: 'VE', text: 'Aragua' },
3532
+ { value: 'VE-E', country_code: 'VE', text: 'Barinas' },
3533
+ { value: 'VE-F', country_code: 'VE', text: 'Bolivar' },
3534
+ { value: 'VE-G', country_code: 'VE', text: 'Carabobo' },
3535
+ { value: 'VE-H', country_code: 'VE', text: 'Cojedes' },
3536
+ { value: 'VE-Y', country_code: 'VE', text: 'Delta Amacuro' },
3537
+ { value: 'VE-A', country_code: 'VE', text: 'Distrito Capital' },
3538
+ { value: 'VE-I', country_code: 'VE', text: 'Falcon' },
3539
+ { value: 'VE-J', country_code: 'VE', text: 'Guarico' },
3540
+ { value: 'VE-K', country_code: 'VE', text: 'Lara' },
3541
+ { value: 'VE-L', country_code: 'VE', text: 'Merida' },
3542
+ { value: 'VE-M', country_code: 'VE', text: 'Miranda' },
3543
+ { value: 'VE-N', country_code: 'VE', text: 'Monagas' },
3544
+ { value: 'VE-O', country_code: 'VE', text: 'Nueva Esparta' },
3545
+ { value: 'VE-P', country_code: 'VE', text: 'Portuguesa' },
3546
+ { value: 'VE-R', country_code: 'VE', text: 'Sucre' },
3547
+ { value: 'VE-S', country_code: 'VE', text: 'Tachira' },
3548
+ { value: 'VE-T', country_code: 'VE', text: 'Trujillo' },
3549
+ { value: 'VE-X', country_code: 'VE', text: 'Vargas' },
3550
+ { value: 'VE-U', country_code: 'VE', text: 'Yaracuy' },
3551
+ { value: 'VE-V', country_code: 'VE', text: 'Zulia' },
3552
+ { value: 'VN-44', country_code: 'VN', text: 'An Giang' },
3553
+ { value: 'VN-54', country_code: 'VN', text: 'Bac Giang' },
3554
+ { value: 'VN-53', country_code: 'VN', text: 'Bac Kan' },
3555
+ { value: 'VN-55', country_code: 'VN', text: 'Bac Lieu' },
3556
+ { value: 'VN-56', country_code: 'VN', text: 'Bac Ninh' },
3557
+ { value: 'VN-50', country_code: 'VN', text: 'Ben Tre' },
3558
+ { value: 'VN-31', country_code: 'VN', text: 'Binh Dinh' },
3559
+ { value: 'VN-57', country_code: 'VN', text: 'Binh Duong' },
3560
+ { value: 'VN-58', country_code: 'VN', text: 'Binh Phuoc' },
3561
+ { value: 'VN-40', country_code: 'VN', text: 'Binh Thuan' },
3562
+ { value: 'VN-59', country_code: 'VN', text: 'Ca Mau' },
3563
+ { value: 'VN-CT', country_code: 'VN', text: 'Can Tho' },
3564
+ { value: 'VN-04', country_code: 'VN', text: 'Cao Bang' },
3565
+ { value: 'VN-DN', country_code: 'VN', text: 'Da Nang' },
3566
+ { value: 'VN-33', country_code: 'VN', text: 'Dak Lak' },
3567
+ { value: 'VN-71', country_code: 'VN', text: 'Dien Bien' },
3568
+ { value: 'VN-39', country_code: 'VN', text: 'Dong Nai' },
3569
+ { value: 'VN-45', country_code: 'VN', text: 'Dong Thap' },
3570
+ { value: 'VN-30', country_code: 'VN', text: 'Gia Lai' },
3571
+ { value: 'VN-03', country_code: 'VN', text: 'Ha Giang' },
3572
+ { value: 'VN-63', country_code: 'VN', text: 'Ha Nam' },
3573
+ { value: 'VN-HN', country_code: 'VN', text: 'Ha Noi' },
3574
+ { value: 'VN-23', country_code: 'VN', text: 'Ha Tinh' },
3575
+ { value: 'VN-61', country_code: 'VN', text: 'Hai Duong' },
3576
+ { value: 'VN-HP', country_code: 'VN', text: 'Hai Phong' },
3577
+ { value: 'VN-SG', country_code: 'VN', text: 'Ho Chi Minh' },
3578
+ { value: 'VN-14', country_code: 'VN', text: 'Hoa Binh' },
3579
+ { value: 'VN-66', country_code: 'VN', text: 'Hung Yen' },
3580
+ { value: 'VN-34', country_code: 'VN', text: 'Khanh Hoa' },
3581
+ { value: 'VN-47', country_code: 'VN', text: 'Kien Giang' },
3582
+ { value: 'VN-01', country_code: 'VN', text: 'Lai Chau' },
3583
+ { value: 'VN-35', country_code: 'VN', text: 'Lam Dong' },
3584
+ { value: 'VN-09', country_code: 'VN', text: 'Lang Son' },
3585
+ { value: 'VN-02', country_code: 'VN', text: 'Lao Cai' },
3586
+ { value: 'VN-41', country_code: 'VN', text: 'Long An' },
3587
+ { value: 'VN-67', country_code: 'VN', text: 'Nam Dinh' },
3588
+ { value: 'VN-22', country_code: 'VN', text: 'Nghe An' },
3589
+ { value: 'VN-18', country_code: 'VN', text: 'Ninh Binh' },
3590
+ { value: 'VN-36', country_code: 'VN', text: 'Ninh Thuan' },
3591
+ { value: 'VN-68', country_code: 'VN', text: 'Phu Tho' },
3592
+ { value: 'VN-32', country_code: 'VN', text: 'Phu Yen' },
3593
+ { value: 'VN-24', country_code: 'VN', text: 'Quang Binh' },
3594
+ { value: 'VN-27', country_code: 'VN', text: 'Quang Nam' },
3595
+ { value: 'VN-29', country_code: 'VN', text: 'Quang Ngai' },
3596
+ { value: 'VN-13', country_code: 'VN', text: 'Quang Ninh' },
3597
+ { value: 'VN-25', country_code: 'VN', text: 'Quang Tri' },
3598
+ { value: 'VN-52', country_code: 'VN', text: 'Soc Trang' },
3599
+ { value: 'VN-05', country_code: 'VN', text: 'Son La' },
3600
+ { value: 'VN-37', country_code: 'VN', text: 'Tay Ninh' },
3601
+ { value: 'VN-20', country_code: 'VN', text: 'Thai Binh' },
3602
+ { value: 'VN-69', country_code: 'VN', text: 'Thai Nguyen' },
3603
+ { value: 'VN-21', country_code: 'VN', text: 'Thanh Hoa' },
3604
+ { value: 'VN-26', country_code: 'VN', text: 'Thua Thien-Hue' },
3605
+ { value: 'VN-46', country_code: 'VN', text: 'Tien Giang' },
3606
+ { value: 'VN-51', country_code: 'VN', text: 'Tra Vinh' },
3607
+ { value: 'VN-07', country_code: 'VN', text: 'Tuyen Quang' },
3608
+ { value: 'VN-49', country_code: 'VN', text: 'Vinh Long' },
3609
+ { value: 'VN-70', country_code: 'VN', text: 'Vinh Phuc' },
3610
+ { value: 'VN-06', country_code: 'VN', text: 'Yen Bai' },
3611
+ { value: 'VU-MAP', country_code: 'VU', text: 'Malampa' },
3612
+ { value: 'VU-SAM', country_code: 'VU', text: 'Sanma' },
3613
+ { value: 'VU-SEE', country_code: 'VU', text: 'Shefa' },
3614
+ { value: 'VU-TAE', country_code: 'VU', text: 'Tafea' },
3615
+ { value: 'VU-TOB', country_code: 'VU', text: 'Torba' },
3616
+ { value: 'WF-UV', country_code: 'WF', text: 'Uvea' },
3617
+ { value: 'WS-AA', country_code: 'WS', text: "A'ana" },
3618
+ { value: 'WS-AT', country_code: 'WS', text: 'Atua' },
3619
+ { value: 'WS-GI', country_code: 'WS', text: 'Gagaifomauga' },
3620
+ { value: 'WS-PA', country_code: 'WS', text: 'Palauli' },
3621
+ { value: 'WS-TU', country_code: 'WS', text: 'Tuamasaga' },
3622
+ { value: 'YE-AD', country_code: 'YE', text: "'Adan" },
3623
+ { value: 'YE-AM', country_code: 'YE', text: "'Amran" },
3624
+ { value: 'YE-AB', country_code: 'YE', text: 'Abyan' },
3625
+ { value: 'YE-DA', country_code: 'YE', text: "Ad Dali'" },
3626
+ { value: 'YE-BA', country_code: 'YE', text: "Al Bayda'" },
3627
+ { value: 'YE-HU', country_code: 'YE', text: 'Al Hudaydah' },
3628
+ { value: 'YE-JA', country_code: 'YE', text: 'Al Jawf' },
3629
+ { value: 'YE-MR', country_code: 'YE', text: 'Al Mahrah' },
3630
+ { value: 'YE-MW', country_code: 'YE', text: 'Al Mahwit' },
3631
+ { value: 'YE-SA', country_code: 'YE', text: "Amanat al 'Asimah" },
3632
+ { value: 'YE-DH', country_code: 'YE', text: 'Dhamar' },
3633
+ { value: 'YE-HD', country_code: 'YE', text: 'Hadramawt' },
3634
+ { value: 'YE-HJ', country_code: 'YE', text: 'Hajjah' },
3635
+ { value: 'YE-IB', country_code: 'YE', text: 'Ibb' },
3636
+ { value: 'YE-LA', country_code: 'YE', text: 'Lahij' },
3637
+ { value: 'YE-MA', country_code: 'YE', text: "Ma'rib" },
3638
+ { value: 'YE-RA', country_code: 'YE', text: 'Raymah' },
3639
+ { value: 'YE-SD', country_code: 'YE', text: "Sa'dah" },
3640
+ { value: 'YE-SN', country_code: 'YE', text: "San'a'" },
3641
+ { value: 'YE-SH', country_code: 'YE', text: 'Shabwah' },
3642
+ { value: 'YE-TA', country_code: 'YE', text: "Ta'izz" },
3643
+ { value: 'ZA-EC', country_code: 'ZA', text: 'Eastern Cape' },
3644
+ { value: 'ZA-FS', country_code: 'ZA', text: 'Free State' },
3645
+ { value: 'ZA-GT', country_code: 'ZA', text: 'Gauteng' },
3646
+ { value: 'ZA-NL', country_code: 'ZA', text: 'Kwazulu-Natal' },
3647
+ { value: 'ZA-LP', country_code: 'ZA', text: 'Limpopo' },
3648
+ { value: 'ZA-MP', country_code: 'ZA', text: 'Mpumalanga' },
3649
+ { value: 'ZA-NW', country_code: 'ZA', text: 'North-West' },
3650
+ { value: 'ZA-NC', country_code: 'ZA', text: 'Northern Cape' },
3651
+ { value: 'ZA-WC', country_code: 'ZA', text: 'Western Cape' },
3652
+ { value: 'ZM-02', country_code: 'ZM', text: 'Central' },
3653
+ { value: 'ZM-08', country_code: 'ZM', text: 'Copperbelt' },
3654
+ { value: 'ZM-03', country_code: 'ZM', text: 'Eastern' },
3655
+ { value: 'ZM-04', country_code: 'ZM', text: 'Luapula' },
3656
+ { value: 'ZM-09', country_code: 'ZM', text: 'Lusaka' },
3657
+ { value: 'ZM-06', country_code: 'ZM', text: 'North-Western' },
3658
+ { value: 'ZM-05', country_code: 'ZM', text: 'Northern' },
3659
+ { value: 'ZM-07', country_code: 'ZM', text: 'Southern' },
3660
+ { value: 'ZM-01', country_code: 'ZM', text: 'Western' },
3661
+ { value: 'ZW-BU', country_code: 'ZW', text: 'Bulawayo' },
3662
+ { value: 'ZW-HA', country_code: 'ZW', text: 'Harare' },
3663
+ { value: 'ZW-MA', country_code: 'ZW', text: 'Manicaland' },
3664
+ { value: 'ZW-MC', country_code: 'ZW', text: 'Mashonaland Central' },
3665
+ { value: 'ZW-ME', country_code: 'ZW', text: 'Mashonaland East' },
3666
+ { value: 'ZW-MW', country_code: 'ZW', text: 'Mashonaland West' },
3667
+ { value: 'ZW-MV', country_code: 'ZW', text: 'Masvingo' },
3668
+ { value: 'ZW-MN', country_code: 'ZW', text: 'Matabeleland North' },
3669
+ { value: 'ZW-MS', country_code: 'ZW', text: 'Matabeleland South' },
3670
+ { value: 'ZW-MI', country_code: 'ZW', text: 'Midlands' }
3671
+ ].filter((p) => p.country_code === country);
3672
+ const childrenWithProps = React.Children.map(children, (child) => React.cloneElement(child, {
3673
+ options: options.filter((o) => o.country_code === country),
3674
+ ...props
3675
+ }));
3676
+ return React.createElement("div", null, childrenWithProps);
3677
+ }
3678
+ ProvinceOptions.propTypes = {
3679
+ children: PropTypes.node.isRequired,
3680
+ country: PropTypes.string.isRequired
3681
+ };
3682
+ export { ProvinceOptions };
3683
+ //# sourceMappingURL=ProvinceOption.js.map