@ikas/storefront 3.0.0-alpha.50 → 4.0.0-alpha.10

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 (2280) hide show
  1. package/package.json +38 -96
  2. package/src/analytics/analytics.ts +536 -0
  3. package/src/analytics/events.ts +116 -0
  4. package/src/analytics/facebookPixel.ts +226 -0
  5. package/src/analytics/googleAnalytics.ts +227 -0
  6. package/src/analytics/googleTagManager.ts +341 -0
  7. package/src/analytics/googleUniversal.ts +136 -0
  8. package/src/analytics/head/index.tsx +135 -0
  9. package/src/analytics/ikas.ts +558 -0
  10. package/src/analytics/index.ts +2 -0
  11. package/src/analytics/tiktokPixel.ts +223 -0
  12. package/src/components/checkout/components/address-form/index.tsx +406 -0
  13. package/src/components/checkout/components/address-form/model.ts +397 -0
  14. package/src/components/checkout/components/button/index.tsx +44 -0
  15. package/src/components/checkout/components/button/style.module.scss +103 -0
  16. package/src/components/checkout/components/cart-summary/cart-item/index.tsx +180 -0
  17. package/src/components/checkout/components/cart-summary/cart-item/style.module.scss +107 -0
  18. package/src/components/checkout/components/cart-summary/index.tsx +481 -0
  19. package/src/components/checkout/components/cart-summary/style.module.scss +251 -0
  20. package/src/components/checkout/components/checkbox/check.tsx +23 -0
  21. package/src/components/checkout/components/checkbox/index.tsx +50 -0
  22. package/src/components/checkout/components/checkbox/style.module.scss +72 -0
  23. package/src/components/checkout/components/credit-card-form/index.tsx +122 -0
  24. package/src/components/checkout/components/credit-card-form/model.ts +56 -0
  25. package/src/components/checkout/components/credit-card-form/style.module.scss +6 -0
  26. package/src/components/checkout/components/credit-card-form/svg/amex.tsx +30 -0
  27. package/src/components/checkout/components/credit-card-form/svg/master-card.tsx +38 -0
  28. package/src/components/checkout/components/credit-card-form/svg/troy.tsx +54 -0
  29. package/src/components/checkout/components/credit-card-form/svg/visa.tsx +46 -0
  30. package/src/components/checkout/components/customer-addresses/index.tsx +333 -0
  31. package/src/components/checkout/components/customer-addresses/model.ts +126 -0
  32. package/src/components/checkout/components/customer-addresses/style.module.scss +38 -0
  33. package/src/components/checkout/components/delivery-methods/icon-button/index.tsx +29 -0
  34. package/src/components/checkout/components/delivery-methods/icon-button/style.module.scss +41 -0
  35. package/src/components/checkout/components/delivery-methods/icons/box.tsx +22 -0
  36. package/src/components/checkout/components/delivery-methods/icons/store.tsx +22 -0
  37. package/src/components/checkout/components/delivery-methods/index.tsx +39 -0
  38. package/src/components/checkout/components/delivery-methods/style.module.scss +4 -0
  39. package/src/components/checkout/components/error/customer-login-required-error/index.tsx +23 -0
  40. package/src/components/checkout/components/error/index.tsx +54 -0
  41. package/src/components/checkout/components/error/no-shipping-error/index.tsx +14 -0
  42. package/src/components/checkout/components/error/payment-error/index.tsx +21 -0
  43. package/src/components/checkout/components/error/stock-error/index.tsx +72 -0
  44. package/src/components/checkout/components/error/stock-error/style.module.scss +11 -0
  45. package/src/components/checkout/components/error/unknown-error/index.tsx +19 -0
  46. package/src/components/checkout/components/expandable-section/index.tsx +37 -0
  47. package/src/components/checkout/components/expandable-section/style.module.scss +29 -0
  48. package/src/components/checkout/components/form-item/caret-down.tsx +20 -0
  49. package/src/components/checkout/components/form-item/index.tsx +207 -0
  50. package/src/components/checkout/components/form-item/model.ts +145 -0
  51. package/src/components/checkout/components/form-item/style.module.scss +216 -0
  52. package/src/components/checkout/components/fullscreen-loading/index.tsx +10 -0
  53. package/src/components/checkout/components/fullscreen-loading/style.module.scss +56 -0
  54. package/src/components/checkout/components/input-with-button/index.tsx +53 -0
  55. package/src/components/checkout/components/input-with-button/style.module.scss +104 -0
  56. package/src/components/checkout/components/master-pass/credit-card-form/index.tsx +160 -0
  57. package/src/components/checkout/components/master-pass/credit-card-form/style.module.scss +15 -0
  58. package/src/components/checkout/components/master-pass/modal/index.tsx +32 -0
  59. package/src/components/checkout/components/master-pass/modal/style.module.scss +42 -0
  60. package/src/components/checkout/components/master-pass/modal/svg/modal-close.tsx +20 -0
  61. package/src/components/checkout/components/master-pass/modal-link-card-to-client/index.tsx +62 -0
  62. package/src/components/checkout/components/master-pass/modal-link-card-to-client/style.module.scss +27 -0
  63. package/src/components/checkout/components/master-pass/modal-link-card-to-client/svg/info-mark.tsx +19 -0
  64. package/src/components/checkout/components/master-pass/modal-link-card-to-client/svg/master-pass-by-master-card-big.tsx +41 -0
  65. package/src/components/checkout/components/master-pass/modal-otp/index.tsx +202 -0
  66. package/src/components/checkout/components/master-pass/modal-otp/style.module.scss +47 -0
  67. package/src/components/checkout/components/master-pass/modal-otp/svg/master-pass.tsx +28 -0
  68. package/src/components/checkout/components/master-pass/modal-response/index.tsx +24 -0
  69. package/src/components/checkout/components/master-pass/modal-response/style.module.scss +7 -0
  70. package/src/components/checkout/components/master-pass/modal-success/index.tsx +54 -0
  71. package/src/components/checkout/components/master-pass/modal-success/style.module.scss +25 -0
  72. package/src/components/checkout/components/master-pass/modal-success/svg/master-pass-by-master-card-small.tsx +41 -0
  73. package/src/components/checkout/components/master-pass/modal-success/svg/success.tsx +21 -0
  74. package/src/components/checkout/components/master-pass/payment-gateway/svg/master-card.tsx +14 -0
  75. package/src/components/checkout/components/master-pass/svg/master-pass-by-master-card.tsx +34 -0
  76. package/src/components/checkout/components/modal/index.tsx +41 -0
  77. package/src/components/checkout/components/modal/style.module.scss +68 -0
  78. package/src/components/checkout/components/modal/useEscape.tsx +20 -0
  79. package/src/components/checkout/components/notification-box/index.tsx +70 -0
  80. package/src/components/checkout/components/notification-box/style.module.scss +69 -0
  81. package/src/components/checkout/components/offer-product/index.tsx +180 -0
  82. package/src/components/checkout/components/offer-product/select/arrows.tsx +22 -0
  83. package/src/components/checkout/components/offer-product/select/index.tsx +40 -0
  84. package/src/components/checkout/components/offer-product/select/style.module.scss +28 -0
  85. package/src/components/checkout/components/offer-product/style.module.scss +117 -0
  86. package/src/components/checkout/components/phone-number-input/compare-strings.ts +5 -0
  87. package/src/components/checkout/components/phone-number-input/get-countries.ts +52 -0
  88. package/src/components/checkout/components/phone-number-input/index.tsx +125 -0
  89. package/src/components/checkout/components/phone-number-input/style.module.scss +83 -0
  90. package/src/components/checkout/components/select-box/index.tsx +60 -0
  91. package/src/components/checkout/components/select-box/style.module.scss +55 -0
  92. package/src/components/checkout/components/step-container/index.tsx +107 -0
  93. package/src/components/checkout/components/step-container/style.module.scss +86 -0
  94. package/src/components/checkout/components/stripe/checkout-form.tsx +55 -0
  95. package/src/components/checkout/components/stripe/index.tsx +91 -0
  96. package/src/components/checkout/components/stripe/style.module.scss +75 -0
  97. package/src/components/checkout/components/svg/arrow-down.tsx +23 -0
  98. package/src/components/checkout/components/svg/arrow-left.tsx +23 -0
  99. package/src/components/checkout/components/svg/arrow-right.tsx +23 -0
  100. package/src/components/checkout/components/svg/cross.tsx +23 -0
  101. package/src/components/checkout/components/svg/discount.tsx +34 -0
  102. package/src/components/checkout/components/svg/external.tsx +101 -0
  103. package/src/components/checkout/components/svg/gift.tsx +40 -0
  104. package/src/components/checkout/components/svg/ikas.tsx +39 -0
  105. package/src/components/checkout/components/svg/lock.tsx +23 -0
  106. package/src/components/checkout/components/svg/shopping-cart.tsx +23 -0
  107. package/src/components/checkout/components/svg/success-circle.tsx +26 -0
  108. package/src/components/checkout/components/svg/tag.tsx +23 -0
  109. package/src/components/checkout/components/svg/warning.tsx +30 -0
  110. package/src/components/checkout/components/toggle/index.tsx +51 -0
  111. package/src/components/checkout/components/toggle/style.module.scss +75 -0
  112. package/src/components/checkout/components/tooltip/index.tsx +27 -0
  113. package/src/components/checkout/components/tooltip/style.module.scss +86 -0
  114. package/src/components/checkout/index.tsx +641 -0
  115. package/src/components/checkout/model.ts +1466 -0
  116. package/src/components/checkout/modelMasterPass.ts +1001 -0
  117. package/src/components/checkout/steps/step-info/index.tsx +85 -0
  118. package/src/components/checkout/steps/step-payment/billing-address/index.tsx +48 -0
  119. package/src/components/checkout/steps/step-payment/index.tsx +104 -0
  120. package/src/components/checkout/steps/step-payment/payment-gateways/index.tsx +218 -0
  121. package/src/components/checkout/steps/step-payment/payment-gateways/installments/index.tsx +54 -0
  122. package/src/components/checkout/steps/step-payment/payment-gateways/installments/style.module.scss +50 -0
  123. package/src/components/checkout/steps/step-payment/payment-gateways/style.module.scss +32 -0
  124. package/src/components/checkout/steps/step-payment/style.module.scss +32 -0
  125. package/src/components/checkout/steps/step-shipping/index.tsx +126 -0
  126. package/src/components/checkout/steps/step-shipping/style.module.scss +44 -0
  127. package/src/components/checkout/steps/step-success/index.tsx +366 -0
  128. package/src/components/checkout/steps/step-success/style.module.scss +161 -0
  129. package/src/components/checkout/style.module.scss +366 -0
  130. package/src/components/checkout/styles/common.module.scss +59 -0
  131. package/src/components/checkout/styles/variables.scss +40 -0
  132. package/src/components/image/index.tsx +43 -0
  133. package/src/components/index.ts +5 -0
  134. package/src/components/link/index.tsx +26 -0
  135. package/src/components/page/ThemeComponent.tsx +108 -0
  136. package/src/components/page/head.tsx +358 -0
  137. package/src/components/page/index.tsx +219 -0
  138. package/src/components/page-editor/ThemeComponentEditor.tsx +270 -0
  139. package/src/components/page-editor/error/index.tsx +18 -0
  140. package/src/components/page-editor/index.tsx +194 -0
  141. package/src/components/page-editor/loader/index.tsx +18 -0
  142. package/src/components/page-editor/loader/style.module.scss +59 -0
  143. package/src/components/page-editor/model.ts +847 -0
  144. package/src/index.ts +6 -0
  145. package/src/models/data/base/index.ts +15 -0
  146. package/src/models/data/blog/category/index.ts +36 -0
  147. package/src/models/data/blog/content/index.ts +16 -0
  148. package/src/models/data/blog/index.ts +75 -0
  149. package/src/models/data/blog/meta-data/index.ts +39 -0
  150. package/src/models/data/blog/tag/index.ts +16 -0
  151. package/src/models/data/blog/writer/index.ts +17 -0
  152. package/src/models/data/brand/index.ts +58 -0
  153. package/src/models/data/brand/translation/index.ts +16 -0
  154. package/src/models/data/campaign-offer/index.ts +79 -0
  155. package/src/models/data/campaign-offer/product/index.ts +69 -0
  156. package/src/models/data/cart/available-shipping-method/index.ts +25 -0
  157. package/src/models/data/cart/campaign-offer/index.ts +43 -0
  158. package/src/models/data/cart/index.ts +38 -0
  159. package/src/models/data/category/index.ts +69 -0
  160. package/src/models/data/category/init.ts +33 -0
  161. package/src/models/data/category/path-item/index.ts +42 -0
  162. package/src/models/data/category/translations/index.ts +16 -0
  163. package/src/models/data/checkout/index.ts +55 -0
  164. package/src/models/data/checkout-settings/index.ts +63 -0
  165. package/src/models/data/checkout-settings/option/index.ts +14 -0
  166. package/src/models/data/checkout-settings/price/index.ts +14 -0
  167. package/src/models/data/city/index.ts +34 -0
  168. package/src/models/data/contact-form/index.ts +20 -0
  169. package/src/models/data/country/index.ts +46 -0
  170. package/src/models/data/customer/address/city/index.ts +16 -0
  171. package/src/models/data/customer/address/country/index.ts +20 -0
  172. package/src/models/data/customer/address/district/index.ts +16 -0
  173. package/src/models/data/customer/address/index.tsx +136 -0
  174. package/src/models/data/customer/address/state/index.ts +16 -0
  175. package/src/models/data/customer/attribute/index.ts +61 -0
  176. package/src/models/data/customer/attribute/option/index.ts +20 -0
  177. package/src/models/data/customer/attribute/sales-channel/index.ts +24 -0
  178. package/src/models/data/customer/attribute/translation/index.ts +23 -0
  179. package/src/models/data/customer/attribute/translation/option/index.ts +16 -0
  180. package/src/models/data/customer/attribute/value/index.ts +29 -0
  181. package/src/models/data/customer/index.ts +122 -0
  182. package/src/models/data/customer/review/index.ts +70 -0
  183. package/src/models/data/customer/review/settings/index.ts +14 -0
  184. package/src/models/data/customer/review/summary/index.ts +29 -0
  185. package/src/models/data/customer/review/summary/star/index.ts +16 -0
  186. package/src/models/data/district/index.ts +36 -0
  187. package/src/models/data/favorite-product/index.ts +23 -0
  188. package/src/models/data/filter-category/index.ts +30 -0
  189. package/src/models/data/html-meta-data/index.ts +69 -0
  190. package/src/models/data/html-meta-data/translations/index.ts +16 -0
  191. package/src/models/data/image/index.ts +33 -0
  192. package/src/models/data/index.ts +192 -0
  193. package/src/models/data/last-viewed-product/index.ts +14 -0
  194. package/src/models/data/merchant-settings/index.ts +26 -0
  195. package/src/models/data/order/address/city/index.ts +16 -0
  196. package/src/models/data/order/address/country/index.ts +20 -0
  197. package/src/models/data/order/address/district/index.ts +16 -0
  198. package/src/models/data/order/address/index.ts +96 -0
  199. package/src/models/data/order/address/state/index.ts +16 -0
  200. package/src/models/data/order/adjustment/applied-order-line/index.ts +20 -0
  201. package/src/models/data/order/adjustment/index.ts +39 -0
  202. package/src/models/data/order/customer/index.ts +24 -0
  203. package/src/models/data/order/gift-line/index.ts +14 -0
  204. package/src/models/data/order/index.ts +241 -0
  205. package/src/models/data/order/invoice/index.ts +29 -0
  206. package/src/models/data/order/line-item/discount/index.ts +23 -0
  207. package/src/models/data/order/line-item/index.ts +153 -0
  208. package/src/models/data/order/line-item/option/index.ts +24 -0
  209. package/src/models/data/order/line-item/option/value/index.ts +16 -0
  210. package/src/models/data/order/line-item/variant/brand/index.ts +14 -0
  211. package/src/models/data/order/line-item/variant/category/index.ts +36 -0
  212. package/src/models/data/order/line-item/variant/index.ts +62 -0
  213. package/src/models/data/order/line-item/variant/price/index.ts +20 -0
  214. package/src/models/data/order/line-item/variant/value/index.ts +31 -0
  215. package/src/models/data/order/package/index.ts +41 -0
  216. package/src/models/data/order/package/tracking-info/index.ts +20 -0
  217. package/src/models/data/order/payment-method/index.ts +23 -0
  218. package/src/models/data/order/refund/index.ts +17 -0
  219. package/src/models/data/order/refund/line-item/index.ts +16 -0
  220. package/src/models/data/order/refund/settings/index.ts +16 -0
  221. package/src/models/data/order/shipping-line/index.ts +29 -0
  222. package/src/models/data/order/tax-line/index.ts +14 -0
  223. package/src/models/data/order/transaction/error/index.ts +16 -0
  224. package/src/models/data/order/transaction/index.ts +58 -0
  225. package/src/models/data/order/transaction/payment-method-detail/index.ts +33 -0
  226. package/src/models/data/order/transaction/payment-method-detail/installment-price/index.ts +22 -0
  227. package/src/models/data/payment-gateway/additional-price/index.ts +29 -0
  228. package/src/models/data/payment-gateway/index.ts +90 -0
  229. package/src/models/data/payment-gateway/settings/index.ts +21 -0
  230. package/src/models/data/payment-gateway/translation/index.ts +18 -0
  231. package/src/models/data/product/attribute/index.ts +37 -0
  232. package/src/models/data/product/attribute/option/index.ts +14 -0
  233. package/src/models/data/product/attribute/table-cell/index.ts +16 -0
  234. package/src/models/data/product/attribute/table-template/index.ts +19 -0
  235. package/src/models/data/product/attribute/translation/index.ts +39 -0
  236. package/src/models/data/product/attribute-value/index.ts +69 -0
  237. package/src/models/data/product/back-in-stock-settings/index.ts +14 -0
  238. package/src/models/data/product/campaign/data/index.ts +70 -0
  239. package/src/models/data/product/campaign/filter/index.ts +19 -0
  240. package/src/models/data/product/campaign/index.ts +15 -0
  241. package/src/models/data/product/campaign/product-buyx-then-gety/index.ts +57 -0
  242. package/src/models/data/product/campaign/product-campaign-date-range-field/index.ts +16 -0
  243. package/src/models/data/product/campaign/product-fixed-discount/index.ts +40 -0
  244. package/src/models/data/product/filter/index.ts +285 -0
  245. package/src/models/data/product/image/index.ts +22 -0
  246. package/src/models/data/product/index.ts +298 -0
  247. package/src/models/data/product/option-set/index.ts +94 -0
  248. package/src/models/data/product/option-set/option/index.ts +245 -0
  249. package/src/models/data/product/tag/index.ts +14 -0
  250. package/src/models/data/product/variant/index.ts +104 -0
  251. package/src/models/data/product/variant/price/index.ts +58 -0
  252. package/src/models/data/product/variant-type/index.ts +17 -0
  253. package/src/models/data/product/variant-type/init.ts +15 -0
  254. package/src/models/data/raffle/index.ts +155 -0
  255. package/src/models/data/sales-channel/index.ts +56 -0
  256. package/src/models/data/state/index.ts +18 -0
  257. package/src/models/data/stock-location/address/city/index.ts +16 -0
  258. package/src/models/data/stock-location/address/country/index.ts +18 -0
  259. package/src/models/data/stock-location/address/district/index.ts +18 -0
  260. package/src/models/data/stock-location/address/index.ts +34 -0
  261. package/src/models/data/stock-location/address/state/index.ts +18 -0
  262. package/src/models/data/stock-location/available/index.ts +22 -0
  263. package/src/models/data/stock-location/index.ts +35 -0
  264. package/src/models/data/storefront/domain/index.ts +20 -0
  265. package/src/models/data/storefront/index.ts +65 -0
  266. package/src/models/data/storefront/localization/index.tsx +18 -0
  267. package/src/models/data/storefront/routing/dynamic-currency/index.ts +16 -0
  268. package/src/models/data/storefront/routing/index.tsx +25 -0
  269. package/src/models/data/storefront/theme/index.tsx +25 -0
  270. package/src/models/data/storefront/theme-localization/index.tsx +31 -0
  271. package/src/models/data/theme-json/component/index.ts +41 -0
  272. package/src/models/data/theme-json/component/prop/index.ts +55 -0
  273. package/src/models/data/theme-json/custom-data/index.ts +132 -0
  274. package/src/models/data/theme-json/index.ts +210 -0
  275. package/src/models/data/theme-json/page/component/index.ts +22 -0
  276. package/src/models/data/theme-json/page/index.ts +54 -0
  277. package/src/models/data/theme-json/settings/color/index.ts +35 -0
  278. package/src/models/data/theme-json/settings/favicon/index.ts +12 -0
  279. package/src/models/data/theme-json/settings/font-family/index.ts +14 -0
  280. package/src/models/data/theme-json/settings/index.ts +30 -0
  281. package/src/models/data/variant-type/index.ts +44 -0
  282. package/src/models/data/variant-type/variant-value/index.ts +32 -0
  283. package/src/models/index.ts +2 -0
  284. package/src/models/ui/blog-category-list/index.ts +169 -0
  285. package/src/models/ui/blog-list/index.ts +175 -0
  286. package/src/models/ui/brand-list/index.ts +237 -0
  287. package/src/models/ui/category-list/index.ts +237 -0
  288. package/src/models/ui/component-renderer/index.ts +9 -0
  289. package/src/models/ui/customer-review-list/index.ts +173 -0
  290. package/src/models/ui/customer-review-summary-list/index.ts +175 -0
  291. package/src/models/ui/index.ts +40 -0
  292. package/src/models/ui/navigation-link/index.ts +23 -0
  293. package/src/models/ui/product-attribute-detail/index.ts +29 -0
  294. package/src/models/ui/product-attribute-list/index.ts +52 -0
  295. package/src/models/ui/product-list/index.ts +998 -0
  296. package/src/models/ui/raffle-list/index.ts +178 -0
  297. package/src/models/ui/validator/form/account-info.ts +167 -0
  298. package/src/models/ui/validator/form/address.ts +490 -0
  299. package/src/models/ui/validator/form/contact-form.ts +177 -0
  300. package/src/models/ui/validator/form/customer-review.ts +132 -0
  301. package/src/models/ui/validator/form/forgot-password.ts +96 -0
  302. package/src/models/ui/validator/form/login.ts +128 -0
  303. package/src/models/ui/validator/form/raffle-form.ts +276 -0
  304. package/src/models/ui/validator/form/recover-password.ts +148 -0
  305. package/src/models/ui/validator/form/register.ts +206 -0
  306. package/src/models/ui/validator/index.ts +121 -0
  307. package/src/models/ui/validator/rules/index.ts +310 -0
  308. package/src/page-data-init/index.ts +904 -0
  309. package/src/pages/404.tsx +10 -0
  310. package/src/pages/[slug]/index.tsx +9 -0
  311. package/src/pages/account/addresses.tsx +10 -0
  312. package/src/pages/account/favorite-products.tsx +9 -0
  313. package/src/pages/account/forgot-password.tsx +9 -0
  314. package/src/pages/account/index.tsx +9 -0
  315. package/src/pages/account/login.tsx +9 -0
  316. package/src/pages/account/orders/[id].tsx +9 -0
  317. package/src/pages/account/orders/index.tsx +9 -0
  318. package/src/pages/account/raffles.tsx +9 -0
  319. package/src/pages/account/recover-password.tsx +9 -0
  320. package/src/pages/account/register.tsx +9 -0
  321. package/src/pages/blog/[slug].tsx +9 -0
  322. package/src/pages/blog/index.tsx +9 -0
  323. package/src/pages/cart.tsx +9 -0
  324. package/src/pages/checkout.tsx +163 -0
  325. package/src/pages/editor.tsx +30 -0
  326. package/src/pages/home.tsx +10 -0
  327. package/src/pages/index.ts +22 -0
  328. package/src/pages/pages/[slug].tsx +9 -0
  329. package/src/pages/raffle/[slug].tsx +9 -0
  330. package/src/pages/raffle/index.tsx +9 -0
  331. package/src/pages/search.tsx +9 -0
  332. package/src/store/base.ts +238 -0
  333. package/src/store/blog/index.ts +49 -0
  334. package/src/store/brand/index.ts +16 -0
  335. package/src/store/cart/api.ts +58 -0
  336. package/src/store/cart/index.ts +311 -0
  337. package/src/store/category/index.ts +16 -0
  338. package/src/store/checkout/index.ts +92 -0
  339. package/src/store/customer/api.ts +273 -0
  340. package/src/store/customer/index.ts +658 -0
  341. package/src/store/html-meta-data/index.ts +16 -0
  342. package/src/store/index.ts +1 -0
  343. package/src/store/location/index.ts +56 -0
  344. package/src/store/merchant/index.ts +16 -0
  345. package/src/store/product/index.ts +113 -0
  346. package/src/store/raffle/index.ts +58 -0
  347. package/src/store/storefront/index.ts +18 -0
  348. package/src/typings/global.d.ts +7 -0
  349. package/src/utils/constants.ts +2 -0
  350. package/src/utils/currency.ts +250 -0
  351. package/src/utils/google-fonts.ts +52 -0
  352. package/src/utils/helper.ts +77 -0
  353. package/src/utils/i18n.ts +126 -0
  354. package/src/utils/index.ts +3 -0
  355. package/build/__api/models/AbandonedCartFlow.d.ts +0 -19
  356. package/build/__api/models/AbandonedCartFlowCustomerFilter.d.ts +0 -10
  357. package/build/__api/models/AddItemToCartInput.d.ts +0 -16
  358. package/build/__api/models/AdditionalPrice.d.ts +0 -13
  359. package/build/__api/models/AdditionalPrice.js +0 -1
  360. package/build/__api/models/ApplicableProductFilterValue.d.ts +0 -13
  361. package/build/__api/models/AppliedProduct.d.ts +0 -10
  362. package/build/__api/models/AppliedProductInput.d.ts +0 -10
  363. package/build/__api/models/AvailableShippingMethod.d.ts +0 -14
  364. package/build/__api/models/AvailableShippingMethod.js +0 -1
  365. package/build/__api/models/Blog.d.ts +0 -28
  366. package/build/__api/models/Blog.js +0 -1
  367. package/build/__api/models/BlogCategory.d.ts +0 -13
  368. package/build/__api/models/BlogCategory.js +0 -1
  369. package/build/__api/models/BlogCategoryPaginationResponse.d.ts +0 -14
  370. package/build/__api/models/BlogContent.d.ts +0 -12
  371. package/build/__api/models/BlogContent.js +0 -1
  372. package/build/__api/models/BlogMetadata.d.ts +0 -17
  373. package/build/__api/models/BlogMetadata.js +0 -1
  374. package/build/__api/models/BlogMetadataPaginationResponse.d.ts +0 -14
  375. package/build/__api/models/BlogMetadataTargetTypeEnumFilter.d.ts +0 -13
  376. package/build/__api/models/BlogPaginationResponse.d.ts +0 -14
  377. package/build/__api/models/BlogTag.d.ts +0 -10
  378. package/build/__api/models/BlogTag.js +0 -1
  379. package/build/__api/models/BlogWriter.d.ts +0 -10
  380. package/build/__api/models/BlogWriter.js +0 -1
  381. package/build/__api/models/BooleanFilterInput.d.ts +0 -9
  382. package/build/__api/models/BuyX.d.ts +0 -12
  383. package/build/__api/models/BuyXThenGetY.d.ts +0 -13
  384. package/build/__api/models/Campaign.d.ts +0 -30
  385. package/build/__api/models/CampaignDateRangeField.d.ts +0 -10
  386. package/build/__api/models/CampaignFilter.d.ts +0 -11
  387. package/build/__api/models/CampaignMinMaxRangeField.d.ts +0 -10
  388. package/build/__api/models/CampaignOffer.d.ts +0 -22
  389. package/build/__api/models/CampaignOffer.js +0 -1
  390. package/build/__api/models/CampaignOfferProduct.d.ts +0 -22
  391. package/build/__api/models/CampaignOfferProduct.js +0 -1
  392. package/build/__api/models/CampaignOfferProductTranslation.d.ts +0 -11
  393. package/build/__api/models/CampaignOfferProductTranslation.js +0 -1
  394. package/build/__api/models/CampaignOfferTriggerSettings.d.ts +0 -11
  395. package/build/__api/models/CampaignOfferTriggerSettings.js +0 -1
  396. package/build/__api/models/Cart.d.ts +0 -31
  397. package/build/__api/models/CartCampaignOffer.d.ts +0 -17
  398. package/build/__api/models/CartLineItemInput.d.ts +0 -12
  399. package/build/__api/models/CartLineOptionInput.d.ts +0 -11
  400. package/build/__api/models/CartLineVariantInput.d.ts +0 -10
  401. package/build/__api/models/CartStorefrontRouting.d.ts +0 -15
  402. package/build/__api/models/CartStorefrontRoutingDynamicCurrencySettings.d.ts +0 -10
  403. package/build/__api/models/CartV2.d.ts +0 -68
  404. package/build/__api/models/CartV2CampaignOffer.d.ts +0 -19
  405. package/build/__api/models/CartV2CampaignOffer.js +0 -1
  406. package/build/__api/models/Category.d.ts +0 -27
  407. package/build/__api/models/Category.js +0 -1
  408. package/build/__api/models/CategoryCondition.d.ts +0 -11
  409. package/build/__api/models/CategoryCondition.js +0 -1
  410. package/build/__api/models/CategoryFilterInput.d.ts +0 -10
  411. package/build/__api/models/CategoryPaginationResponse.d.ts +0 -14
  412. package/build/__api/models/CategoryPathFilterInput.d.ts +0 -9
  413. package/build/__api/models/CategoryPathItem.d.ts +0 -17
  414. package/build/__api/models/CategoryPathItem.js +0 -1
  415. package/build/__api/models/CategoryTranslation.d.ts +0 -11
  416. package/build/__api/models/CategoryTranslation.js +0 -1
  417. package/build/__api/models/CheckStocksLineInput.d.ts +0 -11
  418. package/build/__api/models/CheckStocksLineInput.js +0 -1
  419. package/build/__api/models/CheckStocksLineResponse.d.ts +0 -11
  420. package/build/__api/models/CheckStocksResponse.d.ts +0 -10
  421. package/build/__api/models/Checkout.d.ts +0 -44
  422. package/build/__api/models/CheckoutCustomer.d.ts +0 -19
  423. package/build/__api/models/CheckoutCustomerInput.d.ts +0 -13
  424. package/build/__api/models/CheckoutCustomerInput.js +0 -1
  425. package/build/__api/models/CheckoutOption.d.ts +0 -10
  426. package/build/__api/models/CheckoutOption.js +0 -1
  427. package/build/__api/models/CheckoutSettings.d.ts +0 -24
  428. package/build/__api/models/CheckoutSettings.js +0 -1
  429. package/build/__api/models/CheckoutSettingsPrice.d.ts +0 -10
  430. package/build/__api/models/CheckoutSettingsPrice.js +0 -1
  431. package/build/__api/models/City.d.ts +0 -16
  432. package/build/__api/models/City.js +0 -1
  433. package/build/__api/models/Country.d.ts +0 -22
  434. package/build/__api/models/Country.js +0 -1
  435. package/build/__api/models/CreateCustomerEmailSubscriptionInput.d.ts +0 -12
  436. package/build/__api/models/CreateCustomerReviewInput.d.ts +0 -20
  437. package/build/__api/models/CreateSaleTransactionMasterPassPaymentMethodDetail.d.ts +0 -10
  438. package/build/__api/models/CreateSaleTransactionWithCartInput.d.ts +0 -14
  439. package/build/__api/models/CreateSaleTransactionWithCheckoutInput.d.ts +0 -14
  440. package/build/__api/models/CreateStripePaymentIntentResponse.d.ts +0 -12
  441. package/build/__api/models/CreateStripePaymentIntentResponse.js +0 -1
  442. package/build/__api/models/CurrencyRate.d.ts +0 -13
  443. package/build/__api/models/CurrencyRateData.d.ts +0 -10
  444. package/build/__api/models/Customer.d.ts +0 -34
  445. package/build/__api/models/CustomerAddress.d.ts +0 -31
  446. package/build/__api/models/CustomerAddressCity.d.ts +0 -11
  447. package/build/__api/models/CustomerAddressCity.js +0 -1
  448. package/build/__api/models/CustomerAddressCityInput.d.ts +0 -11
  449. package/build/__api/models/CustomerAddressCityInput.js +0 -1
  450. package/build/__api/models/CustomerAddressCountry.d.ts +0 -13
  451. package/build/__api/models/CustomerAddressCountry.js +0 -1
  452. package/build/__api/models/CustomerAddressCountryInput.d.ts +0 -13
  453. package/build/__api/models/CustomerAddressCountryInput.js +0 -1
  454. package/build/__api/models/CustomerAddressDistrict.d.ts +0 -11
  455. package/build/__api/models/CustomerAddressDistrict.js +0 -1
  456. package/build/__api/models/CustomerAddressDistrictInput.d.ts +0 -11
  457. package/build/__api/models/CustomerAddressDistrictInput.js +0 -1
  458. package/build/__api/models/CustomerAddressState.d.ts +0 -11
  459. package/build/__api/models/CustomerAddressState.js +0 -1
  460. package/build/__api/models/CustomerAddressStateInput.d.ts +0 -11
  461. package/build/__api/models/CustomerAddressStateInput.js +0 -1
  462. package/build/__api/models/CustomerAttribute.d.ts +0 -19
  463. package/build/__api/models/CustomerAttribute.js +0 -1
  464. package/build/__api/models/CustomerAttributeOption.d.ts +0 -10
  465. package/build/__api/models/CustomerAttributeOption.js +0 -1
  466. package/build/__api/models/CustomerAttributeOptionTranslation.d.ts +0 -10
  467. package/build/__api/models/CustomerAttributeOptionTranslation.js +0 -1
  468. package/build/__api/models/CustomerAttributeSalesChannel.d.ts +0 -13
  469. package/build/__api/models/CustomerAttributeSalesChannel.js +0 -1
  470. package/build/__api/models/CustomerAttributeTranslation.d.ts +0 -13
  471. package/build/__api/models/CustomerAttributeTranslation.js +0 -1
  472. package/build/__api/models/CustomerAttributeValue.d.ts +0 -11
  473. package/build/__api/models/CustomerAttributeValue.js +0 -1
  474. package/build/__api/models/CustomerAttributeValueInput.d.ts +0 -11
  475. package/build/__api/models/CustomerAttributeValueInput.js +0 -1
  476. package/build/__api/models/CustomerCheckResponse.d.ts +0 -9
  477. package/build/__api/models/CustomerFavoriteProduct.d.ts +0 -11
  478. package/build/__api/models/CustomerFavoriteProduct.js +0 -1
  479. package/build/__api/models/CustomerLoginResponse.d.ts +0 -12
  480. package/build/__api/models/CustomerRefreshTokenResponse.d.ts +0 -10
  481. package/build/__api/models/CustomerReview.d.ts +0 -24
  482. package/build/__api/models/CustomerReview.js +0 -1
  483. package/build/__api/models/CustomerReviewSFPaginationResponse.d.ts +0 -14
  484. package/build/__api/models/CustomerReviewSummary.d.ts +0 -14
  485. package/build/__api/models/CustomerReviewSummary.js +0 -1
  486. package/build/__api/models/CustomerReviewSummaryPaginationResponse.d.ts +0 -14
  487. package/build/__api/models/CustomerReviewSummaryStar.d.ts +0 -10
  488. package/build/__api/models/CustomerReviewSummaryStar.js +0 -1
  489. package/build/__api/models/DateFilterInput.d.ts +0 -16
  490. package/build/__api/models/District.d.ts +0 -16
  491. package/build/__api/models/District.js +0 -1
  492. package/build/__api/models/FixedDiscount.d.ts +0 -14
  493. package/build/__api/models/GetAvailableStockLocation.d.ts +0 -14
  494. package/build/__api/models/GetAvailableStockLocation.js +0 -1
  495. package/build/__api/models/GetAvailableStockLocationAddress.d.ts +0 -16
  496. package/build/__api/models/GetAvailableStockLocationAddress.js +0 -1
  497. package/build/__api/models/GetAvailableStockLocationAddressCity.d.ts +0 -11
  498. package/build/__api/models/GetAvailableStockLocationAddressCity.js +0 -1
  499. package/build/__api/models/GetAvailableStockLocationsResponse.d.ts +0 -10
  500. package/build/__api/models/GetOrderLineFile.d.ts +0 -9
  501. package/build/__api/models/GetProductCampaignsInput.d.ts +0 -11
  502. package/build/__api/models/GetProductCampaignsResponse.d.ts +0 -11
  503. package/build/__api/models/GetProductOptionFileUrl.d.ts +0 -11
  504. package/build/__api/models/GetVariantStockLocation.d.ts +0 -12
  505. package/build/__api/models/GetVariantStockLocationListResponse.d.ts +0 -10
  506. package/build/__api/models/GetY.d.ts +0 -13
  507. package/build/__api/models/HTMLMetaData.d.ts +0 -22
  508. package/build/__api/models/HTMLMetaData.js +0 -1
  509. package/build/__api/models/HTMLMetaDataOverride.d.ts +0 -13
  510. package/build/__api/models/HTMLMetaDataOverride.js +0 -1
  511. package/build/__api/models/HTMLMetaDataTargetTypeEnumFilter.d.ts +0 -13
  512. package/build/__api/models/HTMLMetaDataTranslation.d.ts +0 -11
  513. package/build/__api/models/HTMLMetaDataTranslation.js +0 -1
  514. package/build/__api/models/Invoice.d.ts +0 -16
  515. package/build/__api/models/Invoice.js +0 -1
  516. package/build/__api/models/ListCustomerReviewInput.d.ts +0 -9
  517. package/build/__api/models/LocationTranslations.d.ts +0 -10
  518. package/build/__api/models/LocationTranslations.js +0 -1
  519. package/build/__api/models/MasterpassTokenResponse.d.ts +0 -11
  520. package/build/__api/models/MerchantAddress.d.ts +0 -27
  521. package/build/__api/models/MerchantAddress.js +0 -1
  522. package/build/__api/models/MerchantAddressCity.d.ts +0 -11
  523. package/build/__api/models/MerchantAddressCity.js +0 -1
  524. package/build/__api/models/MerchantAddressCountry.d.ts +0 -11
  525. package/build/__api/models/MerchantAddressCountry.js +0 -1
  526. package/build/__api/models/MerchantAddressDistrict.d.ts +0 -11
  527. package/build/__api/models/MerchantAddressDistrict.js +0 -1
  528. package/build/__api/models/MerchantAddressState.d.ts +0 -11
  529. package/build/__api/models/MerchantAddressState.js +0 -1
  530. package/build/__api/models/MerchantSettings.d.ts +0 -17
  531. package/build/__api/models/MerchantSettings.js +0 -1
  532. package/build/__api/models/MerchantSettingsCurrencyFormat.d.ts +0 -15
  533. package/build/__api/models/MerchantSettingsCurrencyFormat.js +0 -1
  534. package/build/__api/models/OrderAddress.d.ts +0 -28
  535. package/build/__api/models/OrderAddressCity.d.ts +0 -11
  536. package/build/__api/models/OrderAddressCity.js +0 -1
  537. package/build/__api/models/OrderAddressCityInput.d.ts +0 -11
  538. package/build/__api/models/OrderAddressCityInput.js +0 -1
  539. package/build/__api/models/OrderAddressCountry.d.ts +0 -13
  540. package/build/__api/models/OrderAddressCountry.js +0 -1
  541. package/build/__api/models/OrderAddressCountryInput.d.ts +0 -13
  542. package/build/__api/models/OrderAddressCountryInput.js +0 -1
  543. package/build/__api/models/OrderAddressDistrict.d.ts +0 -11
  544. package/build/__api/models/OrderAddressDistrict.js +0 -1
  545. package/build/__api/models/OrderAddressDistrictInput.d.ts +0 -11
  546. package/build/__api/models/OrderAddressDistrictInput.js +0 -1
  547. package/build/__api/models/OrderAddressInput.d.ts +0 -28
  548. package/build/__api/models/OrderAddressInput.js +0 -1
  549. package/build/__api/models/OrderAddressState.d.ts +0 -11
  550. package/build/__api/models/OrderAddressState.js +0 -1
  551. package/build/__api/models/OrderAddressStateInput.d.ts +0 -11
  552. package/build/__api/models/OrderAddressStateInput.js +0 -1
  553. package/build/__api/models/OrderAdjustment.d.ts +0 -19
  554. package/build/__api/models/OrderAdjustment.js +0 -1
  555. package/build/__api/models/OrderAdjustmentAppliedOrderLine.d.ts +0 -12
  556. package/build/__api/models/OrderAdjustmentAppliedOrderLine.js +0 -1
  557. package/build/__api/models/OrderAdjustmentInput.d.ts +0 -16
  558. package/build/__api/models/OrderAdjustmentInput.js +0 -1
  559. package/build/__api/models/OrderCurrencyRate.d.ts +0 -11
  560. package/build/__api/models/OrderCustomer.d.ts +0 -16
  561. package/build/__api/models/OrderGiftPackageLine.d.ts +0 -10
  562. package/build/__api/models/OrderGiftPackageLine.js +0 -1
  563. package/build/__api/models/OrderLineDiscount.d.ts +0 -15
  564. package/build/__api/models/OrderLineDiscount.js +0 -1
  565. package/build/__api/models/OrderLineItem.d.ts +0 -26
  566. package/build/__api/models/OrderLineItem.js +0 -1
  567. package/build/__api/models/OrderLineOption.d.ts +0 -15
  568. package/build/__api/models/OrderLineOption.js +0 -1
  569. package/build/__api/models/OrderLineOptionValue.d.ts +0 -11
  570. package/build/__api/models/OrderLineOptionValue.js +0 -1
  571. package/build/__api/models/OrderLineVariant.d.ts +0 -27
  572. package/build/__api/models/OrderLineVariant.js +0 -1
  573. package/build/__api/models/OrderLineVariantBrand.d.ts +0 -10
  574. package/build/__api/models/OrderLineVariantBrand.js +0 -1
  575. package/build/__api/models/OrderLineVariantCategory.d.ts +0 -12
  576. package/build/__api/models/OrderLineVariantCategory.js +0 -1
  577. package/build/__api/models/OrderLineVariantCategoryPath.d.ts +0 -10
  578. package/build/__api/models/OrderLineVariantCategoryPath.js +0 -1
  579. package/build/__api/models/OrderLineVariantPrice.d.ts +0 -13
  580. package/build/__api/models/OrderLineVariantPrice.js +0 -1
  581. package/build/__api/models/OrderLineVariantVariantValues.d.ts +0 -13
  582. package/build/__api/models/OrderLineVariantVariantValues.js +0 -1
  583. package/build/__api/models/OrderPackage.d.ts +0 -18
  584. package/build/__api/models/OrderPackage.js +0 -1
  585. package/build/__api/models/OrderPaymentMethod.d.ts +0 -14
  586. package/build/__api/models/OrderPaymentMethod.js +0 -1
  587. package/build/__api/models/OrderRefundOrderLineInput.d.ts +0 -10
  588. package/build/__api/models/OrderRefundOrderLineInput.js +0 -1
  589. package/build/__api/models/OrderRefundRequestInput.d.ts +0 -12
  590. package/build/__api/models/OrderRefundSettings.d.ts +0 -14
  591. package/build/__api/models/OrderShippingLine.d.ts +0 -17
  592. package/build/__api/models/OrderShippingLine.js +0 -1
  593. package/build/__api/models/OrderStorefrontRouting.d.ts +0 -15
  594. package/build/__api/models/OrderStorefrontRoutingDynamicCurrencySettings.d.ts +0 -10
  595. package/build/__api/models/OrderTaxLine.d.ts +0 -10
  596. package/build/__api/models/OrderTaxLine.js +0 -1
  597. package/build/__api/models/PaginationInput.d.ts +0 -10
  598. package/build/__api/models/PaymentGateway.d.ts +0 -29
  599. package/build/__api/models/PaymentGateway.js +0 -1
  600. package/build/__api/models/PaymentGatewayPaymentMethod.d.ts +0 -10
  601. package/build/__api/models/PaymentGatewayPaymentMethod.js +0 -1
  602. package/build/__api/models/PaymentGatewaySettings.d.ts +0 -13
  603. package/build/__api/models/PaymentGatewaySettings.js +0 -1
  604. package/build/__api/models/PaymentGatewayTranslation.d.ts +0 -11
  605. package/build/__api/models/PaymentGatewayTranslation.js +0 -1
  606. package/build/__api/models/PaymentMethodDetailInput.d.ts +0 -15
  607. package/build/__api/models/Product.d.ts +0 -33
  608. package/build/__api/models/ProductAttribute.d.ts +0 -19
  609. package/build/__api/models/ProductAttributeOption.d.ts +0 -10
  610. package/build/__api/models/ProductAttributeOptionTranslation.d.ts +0 -10
  611. package/build/__api/models/ProductAttributeTableCellData.d.ts +0 -10
  612. package/build/__api/models/ProductAttributeTableTemplate.d.ts +0 -11
  613. package/build/__api/models/ProductAttributeTranslation.d.ts +0 -13
  614. package/build/__api/models/ProductAttributeValue.d.ts +0 -12
  615. package/build/__api/models/ProductAttributeValue.js +0 -1
  616. package/build/__api/models/ProductBackInStockRemind.d.ts +0 -14
  617. package/build/__api/models/ProductBackInStockRemindInput.d.ts +0 -11
  618. package/build/__api/models/ProductBrand.d.ts +0 -19
  619. package/build/__api/models/ProductBrand.js +0 -1
  620. package/build/__api/models/ProductBrandPaginationResponse.d.ts +0 -14
  621. package/build/__api/models/ProductBrandTranslation.d.ts +0 -11
  622. package/build/__api/models/ProductBrandTranslation.js +0 -1
  623. package/build/__api/models/ProductFacetCount.d.ts +0 -11
  624. package/build/__api/models/ProductFacetCountValue.d.ts +0 -10
  625. package/build/__api/models/ProductFilterData.d.ts +0 -12
  626. package/build/__api/models/ProductFilterDataFilter.d.ts +0 -24
  627. package/build/__api/models/ProductFilterSettings.d.ts +0 -14
  628. package/build/__api/models/ProductImage.d.ts +0 -12
  629. package/build/__api/models/ProductItem.d.ts +0 -11
  630. package/build/__api/models/ProductItemInput.d.ts +0 -11
  631. package/build/__api/models/ProductLastViewed.d.ts +0 -12
  632. package/build/__api/models/ProductLastViewedInput.d.ts +0 -12
  633. package/build/__api/models/ProductOption.d.ts +0 -28
  634. package/build/__api/models/ProductOptionDateSettings.d.ts +0 -12
  635. package/build/__api/models/ProductOptionFileSettings.d.ts +0 -11
  636. package/build/__api/models/ProductOptionSelectSettings.d.ts +0 -14
  637. package/build/__api/models/ProductOptionSelectValue.d.ts +0 -16
  638. package/build/__api/models/ProductOptionSelectValueOtherPrice.d.ts +0 -10
  639. package/build/__api/models/ProductOptionSelectValueTranslations.d.ts +0 -10
  640. package/build/__api/models/ProductOptionSet.d.ts +0 -14
  641. package/build/__api/models/ProductOptionSetTranslations.d.ts +0 -11
  642. package/build/__api/models/ProductOptionTextSettings.d.ts +0 -10
  643. package/build/__api/models/ProductOptionTranslations.d.ts +0 -13
  644. package/build/__api/models/ProductPaginationResponse.d.ts +0 -14
  645. package/build/__api/models/ProductPrice.d.ts +0 -13
  646. package/build/__api/models/ProductPrice.js +0 -1
  647. package/build/__api/models/ProductSearchResponse.d.ts +0 -17
  648. package/build/__api/models/ProductStockLocation.d.ts +0 -13
  649. package/build/__api/models/ProductTagTranslation.d.ts +0 -11
  650. package/build/__api/models/ProductTranslation.d.ts +0 -11
  651. package/build/__api/models/ProductVariantType.d.ts +0 -11
  652. package/build/__api/models/Raffle.d.ts +0 -23
  653. package/build/__api/models/RaffleDateRangeField.d.ts +0 -10
  654. package/build/__api/models/RaffleMetadata.d.ts +0 -17
  655. package/build/__api/models/RaffleMetadataTargetTypeEnumFilter.d.ts +0 -13
  656. package/build/__api/models/RafflePaginationResponse.d.ts +0 -14
  657. package/build/__api/models/RaffleParticipants.d.ts +0 -23
  658. package/build/__api/models/RaffleParticipantsInput.d.ts +0 -17
  659. package/build/__api/models/RaffleParticipantsUpdateInput.d.ts +0 -13
  660. package/build/__api/models/RaffleVariantInformation.d.ts +0 -10
  661. package/build/__api/models/RetrieveInstallmentInfoInput.d.ts +0 -11
  662. package/build/__api/models/RetrieveInstallmentInfoResponse.d.ts +0 -17
  663. package/build/__api/models/SaveCartInput.d.ts +0 -23
  664. package/build/__api/models/SaveCartInput.js +0 -1
  665. package/build/__api/models/SaveCheckoutInput.d.ts +0 -26
  666. package/build/__api/models/SaveItemToCartInput.d.ts +0 -19
  667. package/build/__api/models/SaveMyCustomerAddressInput.d.ts +0 -29
  668. package/build/__api/models/SaveMyCustomerAddressInput.js +0 -1
  669. package/build/__api/models/SaveMyCustomerInput.d.ts +0 -17
  670. package/build/__api/models/SaveMyCustomerInput.js +0 -1
  671. package/build/__api/models/SearchCategory.d.ts +0 -15
  672. package/build/__api/models/SearchCategoryPath.d.ts +0 -13
  673. package/build/__api/models/SearchDynamicCurrencySettings.d.ts +0 -10
  674. package/build/__api/models/SearchHTMLMetaData.d.ts +0 -18
  675. package/build/__api/models/SearchHTMLMetaDataOverride.d.ts +0 -13
  676. package/build/__api/models/SearchInput.d.ts +0 -32
  677. package/build/__api/models/SearchInputFacetListInput.d.ts +0 -12
  678. package/build/__api/models/SearchInputFilterListInput.d.ts +0 -14
  679. package/build/__api/models/SearchInputFilterListInput.js +0 -1
  680. package/build/__api/models/SearchInputOrderByInput.d.ts +0 -11
  681. package/build/__api/models/SearchProduct.d.ts +0 -34
  682. package/build/__api/models/SearchProductAttribute.d.ts +0 -15
  683. package/build/__api/models/SearchProductAttributeOption.d.ts +0 -10
  684. package/build/__api/models/SearchProductAttributeTableCellData.d.ts +0 -10
  685. package/build/__api/models/SearchProductAttributeTableTemplate.d.ts +0 -11
  686. package/build/__api/models/SearchProductAttributeValue.d.ts +0 -14
  687. package/build/__api/models/SearchProductBrand.d.ts +0 -13
  688. package/build/__api/models/SearchProductImage.d.ts +0 -12
  689. package/build/__api/models/SearchProductPrice.d.ts +0 -13
  690. package/build/__api/models/SearchProductStockLocation.d.ts +0 -10
  691. package/build/__api/models/SearchProductTag.d.ts +0 -12
  692. package/build/__api/models/SearchProductVariantType.d.ts +0 -12
  693. package/build/__api/models/SearchVariant.d.ts +0 -25
  694. package/build/__api/models/SearchVariantType.d.ts +0 -15
  695. package/build/__api/models/SearchVariantValue.d.ts +0 -12
  696. package/build/__api/models/SearchVariationValueRelation.d.ts +0 -10
  697. package/build/__api/models/SocialLoginSettings.d.ts +0 -12
  698. package/build/__api/models/State.d.ts +0 -12
  699. package/build/__api/models/State.js +0 -1
  700. package/build/__api/models/StockLocation.d.ts +0 -18
  701. package/build/__api/models/StockLocation.js +0 -1
  702. package/build/__api/models/StockLocationAddress.d.ts +0 -19
  703. package/build/__api/models/StockLocationAddress.js +0 -1
  704. package/build/__api/models/StockLocationAddressCity.d.ts +0 -11
  705. package/build/__api/models/StockLocationAddressCity.js +0 -1
  706. package/build/__api/models/StockLocationAddressCountry.d.ts +0 -11
  707. package/build/__api/models/StockLocationAddressCountry.js +0 -1
  708. package/build/__api/models/StockLocationAddressDistrict.d.ts +0 -11
  709. package/build/__api/models/StockLocationAddressDistrict.js +0 -1
  710. package/build/__api/models/StockLocationAddressState.d.ts +0 -11
  711. package/build/__api/models/StockLocationAddressState.js +0 -1
  712. package/build/__api/models/Storefront.d.ts +0 -33
  713. package/build/__api/models/StorefrontDomain.d.ts +0 -13
  714. package/build/__api/models/StorefrontDynamicCurrencySettings.d.ts +0 -10
  715. package/build/__api/models/StorefrontLocalization.d.ts +0 -12
  716. package/build/__api/models/StorefrontOrder.d.ts +0 -50
  717. package/build/__api/models/StorefrontRouting.d.ts +0 -16
  718. package/build/__api/models/StorefrontTheme.d.ts +0 -15
  719. package/build/__api/models/StorefrontTransaction.d.ts +0 -27
  720. package/build/__api/models/StringFilterInput.d.ts +0 -13
  721. package/build/__api/models/Town.d.ts +0 -12
  722. package/build/__api/models/TrackingInfo.d.ts +0 -13
  723. package/build/__api/models/TrackingInfo.js +0 -1
  724. package/build/__api/models/TransactionError.d.ts +0 -11
  725. package/build/__api/models/TransactionError.js +0 -1
  726. package/build/__api/models/TransactionInstallmentPrice.d.ts +0 -13
  727. package/build/__api/models/TransactionInstallmentPrice.js +0 -1
  728. package/build/__api/models/TransactionPaymentMethodDetail.d.ts +0 -18
  729. package/build/__api/models/TransactionPaymentMethodDetail.js +0 -1
  730. package/build/__api/models/TransactionResponse.d.ts +0 -16
  731. package/build/__api/models/UpdateCartCampaignOfferInput.d.ts +0 -14
  732. package/build/__api/models/Variant.d.ts +0 -25
  733. package/build/__api/models/VariantStock.d.ts +0 -10
  734. package/build/__api/models/VariantType.d.ts +0 -16
  735. package/build/__api/models/VariantTypeTranslation.d.ts +0 -12
  736. package/build/__api/models/VariantValue.d.ts +0 -12
  737. package/build/__api/models/VariantValueRelation.d.ts +0 -10
  738. package/build/__api/models/VariantValueTranslation.d.ts +0 -10
  739. package/build/__api/models/_base.d.ts +0 -18
  740. package/build/__api/models/_base.js +0 -1
  741. package/build/__api/mutations/activateCustomer.d.ts +0 -6
  742. package/build/__api/mutations/addCouponCodeToCheckout.d.ts +0 -218
  743. package/build/__api/mutations/addItemToCart.d.ts +0 -245
  744. package/build/__api/mutations/addItemToCart.js +0 -1
  745. package/build/__api/mutations/createCustomerEmailSubscription.d.ts +0 -69
  746. package/build/__api/mutations/createCustomerEmailSubscription.js +0 -1
  747. package/build/__api/mutations/createCustomerReview.d.ts +0 -27
  748. package/build/__api/mutations/createCustomerReview.js +0 -1
  749. package/build/__api/mutations/createOrderRefundRequest.d.ts +0 -198
  750. package/build/__api/mutations/createOrderRefundRequest.js +0 -1
  751. package/build/__api/mutations/createSaleTransactionWithCart.d.ts +0 -17
  752. package/build/__api/mutations/createSaleTransactionWithCart.js +0 -1
  753. package/build/__api/mutations/createSaleTransactionWithCheckout.d.ts +0 -17
  754. package/build/__api/mutations/createStripePaymentIntent.d.ts +0 -13
  755. package/build/__api/mutations/createStripePaymentIntent.js +0 -1
  756. package/build/__api/mutations/customerForgotPassword.d.ts +0 -7
  757. package/build/__api/mutations/customerForgotPassword.js +0 -1
  758. package/build/__api/mutations/customerLogin.d.ts +0 -72
  759. package/build/__api/mutations/customerLogin.js +0 -1
  760. package/build/__api/mutations/customerRecoverPassword.d.ts +0 -8
  761. package/build/__api/mutations/customerRecoverPassword.js +0 -1
  762. package/build/__api/mutations/customerRefreshToken.d.ts +0 -11
  763. package/build/__api/mutations/customerRefreshToken.js +0 -1
  764. package/build/__api/mutations/deleteRaffleParticipantsList.d.ts +0 -6
  765. package/build/__api/mutations/getOrderLineFile.d.ts +0 -7
  766. package/build/__api/mutations/getOrderLineFile.js +0 -1
  767. package/build/__api/mutations/registerCustomer.d.ts +0 -77
  768. package/build/__api/mutations/registerCustomer.js +0 -1
  769. package/build/__api/mutations/retrieveInstallmentInfo.d.ts +0 -20
  770. package/build/__api/mutations/retrieveInstallmentInfo.js +0 -1
  771. package/build/__api/mutations/saveCart.d.ts +0 -245
  772. package/build/__api/mutations/saveCart.js +0 -1
  773. package/build/__api/mutations/saveCartCouponCode.d.ts +0 -246
  774. package/build/__api/mutations/saveCartCouponCode.js +0 -1
  775. package/build/__api/mutations/saveCheckout.d.ts +0 -217
  776. package/build/__api/mutations/saveFavoriteProduct.d.ts +0 -7
  777. package/build/__api/mutations/saveFavoriteProduct.js +0 -1
  778. package/build/__api/mutations/saveItemToCart.d.ts +0 -97
  779. package/build/__api/mutations/saveLastViewedProducts.d.ts +0 -20
  780. package/build/__api/mutations/saveLastViewedProducts.js +0 -1
  781. package/build/__api/mutations/saveMyCustomer.d.ts +0 -69
  782. package/build/__api/mutations/saveMyCustomer.js +0 -1
  783. package/build/__api/mutations/saveProductBackInStockRemind.d.ts +0 -18
  784. package/build/__api/mutations/saveProductBackInStockRemind.js +0 -1
  785. package/build/__api/mutations/saveRaffleParticipant.d.ts +0 -27
  786. package/build/__api/mutations/saveRaffleParticipant.js +0 -1
  787. package/build/__api/mutations/sendContactFormToMerchant.d.ts +0 -11
  788. package/build/__api/mutations/sendContactFormToMerchant.js +0 -1
  789. package/build/__api/mutations/updateCartCampaignOffer.d.ts +0 -245
  790. package/build/__api/mutations/updateCartCampaignOffer.js +0 -1
  791. package/build/__api/mutations/updateRaffleParticipant.d.ts +0 -28
  792. package/build/__api/queries/checkCustomerEmail.d.ts +0 -11
  793. package/build/__api/queries/checkCustomerEmail.js +0 -1
  794. package/build/__api/queries/checkStocks.d.ts +0 -13
  795. package/build/__api/queries/checkStocks.js +0 -1
  796. package/build/__api/queries/customerSocialLogin.d.ts +0 -71
  797. package/build/__api/queries/customerSocialLogin.js +0 -1
  798. package/build/__api/queries/getAvailableShippingCountries.d.ts +0 -6
  799. package/build/__api/queries/getAvailableShippingCountries.js +0 -1
  800. package/build/__api/queries/getAvailableStockLocations.d.ts +0 -28
  801. package/build/__api/queries/getAvailableStockLocations.js +0 -1
  802. package/build/__api/queries/getCart.d.ts +0 -99
  803. package/build/__api/queries/getCartById.d.ts +0 -246
  804. package/build/__api/queries/getCartById.js +0 -1
  805. package/build/__api/queries/getCheckoutByCartId.d.ts +0 -217
  806. package/build/__api/queries/getCheckoutById.d.ts +0 -217
  807. package/build/__api/queries/getCurrencyRate.d.ts +0 -17
  808. package/build/__api/queries/getCustomerOrders.d.ts +0 -198
  809. package/build/__api/queries/getCustomerOrders.js +0 -1
  810. package/build/__api/queries/getLastViewedProducts.d.ts +0 -20
  811. package/build/__api/queries/getLastViewedProducts.js +0 -1
  812. package/build/__api/queries/getMasterpassRequestToken.d.ts +0 -15
  813. package/build/__api/queries/getMasterpassRequestToken.js +0 -1
  814. package/build/__api/queries/getMyCountry.d.ts +0 -3
  815. package/build/__api/queries/getMyCountry.js +0 -1
  816. package/build/__api/queries/getMyCustomer.d.ts +0 -66
  817. package/build/__api/queries/getMyCustomer.js +0 -1
  818. package/build/__api/queries/getOrder.d.ts +0 -198
  819. package/build/__api/queries/getOrderByEmail.d.ts +0 -199
  820. package/build/__api/queries/getOrderByEmail.js +0 -1
  821. package/build/__api/queries/getProductCampaigns.d.ts +0 -47
  822. package/build/__api/queries/getProductCampaigns.js +0 -1
  823. package/build/__api/queries/getProductFilterData.d.ts +0 -167
  824. package/build/__api/queries/getProductFilterData.js +0 -1
  825. package/build/__api/queries/getProductOptionFileUrl.d.ts +0 -14
  826. package/build/__api/queries/getRaffleParticipants.d.ts +0 -24
  827. package/build/__api/queries/getRafflesByCustomerId.d.ts +0 -35
  828. package/build/__api/queries/getRafflesByCustomerId.js +0 -1
  829. package/build/__api/queries/getRelatedProducts.d.ts +0 -14
  830. package/build/__api/queries/getRelatedProducts.js +0 -1
  831. package/build/__api/queries/getStorefront.d.ts +0 -64
  832. package/build/__api/queries/getStorefront.js +0 -1
  833. package/build/__api/queries/getVariantStockLocations.d.ts +0 -30
  834. package/build/__api/queries/isFavoriteProduct.d.ts +0 -6
  835. package/build/__api/queries/isFavoriteProduct.js +0 -1
  836. package/build/__api/queries/listBlog.d.ts +0 -76
  837. package/build/__api/queries/listBlog.js +0 -1
  838. package/build/__api/queries/listBlogCategory.d.ts +0 -35
  839. package/build/__api/queries/listBlogCategory.js +0 -1
  840. package/build/__api/queries/listBlogMetadata.d.ts +0 -30
  841. package/build/__api/queries/listBlogMetadata.js +0 -1
  842. package/build/__api/queries/listCampaignOffer.d.ts +0 -37
  843. package/build/__api/queries/listCategory.d.ts +0 -89
  844. package/build/__api/queries/listCategory.js +0 -1
  845. package/build/__api/queries/listCheckoutSettings.d.ts +0 -29
  846. package/build/__api/queries/listCheckoutSettings.js +0 -1
  847. package/build/__api/queries/listCity.d.ts +0 -25
  848. package/build/__api/queries/listCity.js +0 -1
  849. package/build/__api/queries/listCountry.d.ts +0 -31
  850. package/build/__api/queries/listCountry.js +0 -1
  851. package/build/__api/queries/listCustomerAttribute.d.ts +0 -27
  852. package/build/__api/queries/listCustomerAttribute.js +0 -1
  853. package/build/__api/queries/listCustomerReviewSummary.d.ts +0 -23
  854. package/build/__api/queries/listCustomerReviewSummary.js +0 -1
  855. package/build/__api/queries/listCustomerReviews.d.ts +0 -35
  856. package/build/__api/queries/listCustomerReviews.js +0 -1
  857. package/build/__api/queries/listDistrict.d.ts +0 -26
  858. package/build/__api/queries/listDistrict.js +0 -1
  859. package/build/__api/queries/listFavoriteProducts.d.ts +0 -12
  860. package/build/__api/queries/listFavoriteProducts.js +0 -1
  861. package/build/__api/queries/listHTMLMetaData.d.ts +0 -34
  862. package/build/__api/queries/listHTMLMetaData.js +0 -1
  863. package/build/__api/queries/listMerchantSettings.d.ts +0 -46
  864. package/build/__api/queries/listMerchantSettings.js +0 -1
  865. package/build/__api/queries/listOrderRefundSettings.d.ts +0 -21
  866. package/build/__api/queries/listOrderRefundSettings.js +0 -1
  867. package/build/__api/queries/listOrderTransactions.d.ts +0 -43
  868. package/build/__api/queries/listOrderTransactions.js +0 -1
  869. package/build/__api/queries/listPaymentGateway.d.ts +0 -40
  870. package/build/__api/queries/listPaymentGateway.js +0 -1
  871. package/build/__api/queries/listProduct.d.ts +0 -94
  872. package/build/__api/queries/listProductAttribute.d.ts +0 -33
  873. package/build/__api/queries/listProductAttribute.js +0 -1
  874. package/build/__api/queries/listProductBackInStockRemind.d.ts +0 -23
  875. package/build/__api/queries/listProductBackInStockRemind.js +0 -1
  876. package/build/__api/queries/listProductBrand.d.ts +0 -51
  877. package/build/__api/queries/listProductBrand.js +0 -1
  878. package/build/__api/queries/listProductOptionSet.d.ts +0 -59
  879. package/build/__api/queries/listProductOptionSet.js +0 -1
  880. package/build/__api/queries/listProductStockLocation.d.ts +0 -18
  881. package/build/__api/queries/listRaffle.d.ts +0 -47
  882. package/build/__api/queries/listRaffle.js +0 -1
  883. package/build/__api/queries/listRaffleMetadata.d.ts +0 -26
  884. package/build/__api/queries/listRaffleMetadata.js +0 -1
  885. package/build/__api/queries/listState.d.ts +0 -20
  886. package/build/__api/queries/listState.js +0 -1
  887. package/build/__api/queries/listStockLocation.d.ts +0 -35
  888. package/build/__api/queries/listStockLocation.js +0 -1
  889. package/build/__api/queries/listTown.d.ts +0 -20
  890. package/build/__api/queries/listVariantType.d.ts +0 -29
  891. package/build/__api/queries/searchProducts.d.ts +0 -132
  892. package/build/__api/queries/searchProducts.js +0 -1
  893. package/build/__api/types/index.d.ts +0 -2705
  894. package/build/__api/types/index.js +0 -1
  895. package/build/_virtual/Axios.js_commonjs-proxy2.js +0 -1
  896. package/build/_virtual/Cancel.js_commonjs-proxy.js +0 -1
  897. package/build/_virtual/CancelToken.js_commonjs-proxy.js +0 -1
  898. package/build/_virtual/InterceptorManager.js_commonjs-proxy.js +0 -1
  899. package/build/_virtual/Parser.js_commonjs-proxy.js +0 -1
  900. package/build/_virtual/ReactPropTypesSecret.js_commonjs-proxy.js +0 -1
  901. package/build/_virtual/Tokenizer.js_commonjs-proxy.js +0 -1
  902. package/build/_virtual/_DataView.js_commonjs-proxy.js +0 -1
  903. package/build/_virtual/_Hash.js_commonjs-proxy.js +0 -1
  904. package/build/_virtual/_ListCache.js_commonjs-proxy.js +0 -1
  905. package/build/_virtual/_Map.js_commonjs-proxy.js +0 -1
  906. package/build/_virtual/_MapCache.js_commonjs-proxy.js +0 -1
  907. package/build/_virtual/_Promise.js_commonjs-proxy.js +0 -1
  908. package/build/_virtual/_Set.js_commonjs-proxy.js +0 -1
  909. package/build/_virtual/_SetCache.js_commonjs-proxy.js +0 -1
  910. package/build/_virtual/_Stack.js_commonjs-proxy.js +0 -1
  911. package/build/_virtual/_Symbol.js_commonjs-proxy.js +0 -1
  912. package/build/_virtual/_Uint8Array.js_commonjs-proxy.js +0 -1
  913. package/build/_virtual/_WeakMap.js_commonjs-proxy.js +0 -1
  914. package/build/_virtual/_apply.js_commonjs-proxy.js +0 -1
  915. package/build/_virtual/_arrayAggregator.js_commonjs-proxy.js +0 -1
  916. package/build/_virtual/_arrayEach.js_commonjs-proxy.js +0 -1
  917. package/build/_virtual/_arrayFilter.js_commonjs-proxy.js +0 -1
  918. package/build/_virtual/_arrayIncludes.js_commonjs-proxy.js +0 -1
  919. package/build/_virtual/_arrayIncludesWith.js_commonjs-proxy.js +0 -1
  920. package/build/_virtual/_arrayLikeKeys.js_commonjs-proxy.js +0 -1
  921. package/build/_virtual/_arrayMap.js_commonjs-proxy.js +0 -1
  922. package/build/_virtual/_arrayPush.js_commonjs-proxy.js +0 -1
  923. package/build/_virtual/_arraySome.js_commonjs-proxy.js +0 -1
  924. package/build/_virtual/_assignValue.js_commonjs-proxy.js +0 -1
  925. package/build/_virtual/_assocIndexOf.js_commonjs-proxy.js +0 -1
  926. package/build/_virtual/_baseAggregator.js_commonjs-proxy.js +0 -1
  927. package/build/_virtual/_baseAssign.js_commonjs-proxy.js +0 -1
  928. package/build/_virtual/_baseAssignIn.js_commonjs-proxy.js +0 -1
  929. package/build/_virtual/_baseAssignValue.js_commonjs-proxy.js +0 -1
  930. package/build/_virtual/_baseClone.js_commonjs-proxy.js +0 -1
  931. package/build/_virtual/_baseCreate.js_commonjs-proxy.js +0 -1
  932. package/build/_virtual/_baseEach.js_commonjs-proxy.js +0 -1
  933. package/build/_virtual/_baseFindIndex.js_commonjs-proxy.js +0 -1
  934. package/build/_virtual/_baseFlatten.js_commonjs-proxy.js +0 -1
  935. package/build/_virtual/_baseFor.js_commonjs-proxy.js +0 -1
  936. package/build/_virtual/_baseForOwn.js_commonjs-proxy.js +0 -1
  937. package/build/_virtual/_baseGet.js_commonjs-proxy.js +0 -1
  938. package/build/_virtual/_baseGetAllKeys.js_commonjs-proxy.js +0 -1
  939. package/build/_virtual/_baseGetTag.js_commonjs-proxy.js +0 -1
  940. package/build/_virtual/_baseHasIn.js_commonjs-proxy.js +0 -1
  941. package/build/_virtual/_baseIndexOf.js_commonjs-proxy.js +0 -1
  942. package/build/_virtual/_baseIsArguments.js_commonjs-proxy.js +0 -1
  943. package/build/_virtual/_baseIsEqual.js_commonjs-proxy.js +0 -1
  944. package/build/_virtual/_baseIsEqualDeep.js_commonjs-proxy.js +0 -1
  945. package/build/_virtual/_baseIsMap.js_commonjs-proxy.js +0 -1
  946. package/build/_virtual/_baseIsMatch.js_commonjs-proxy.js +0 -1
  947. package/build/_virtual/_baseIsNaN.js_commonjs-proxy.js +0 -1
  948. package/build/_virtual/_baseIsNative.js_commonjs-proxy.js +0 -1
  949. package/build/_virtual/_baseIsSet.js_commonjs-proxy.js +0 -1
  950. package/build/_virtual/_baseIsTypedArray.js_commonjs-proxy.js +0 -1
  951. package/build/_virtual/_baseIteratee.js_commonjs-proxy.js +0 -1
  952. package/build/_virtual/_baseKeys.js_commonjs-proxy.js +0 -1
  953. package/build/_virtual/_baseKeysIn.js_commonjs-proxy.js +0 -1
  954. package/build/_virtual/_baseMap.js_commonjs-proxy.js +0 -1
  955. package/build/_virtual/_baseMatches.js_commonjs-proxy.js +0 -1
  956. package/build/_virtual/_baseMatchesProperty.js_commonjs-proxy.js +0 -1
  957. package/build/_virtual/_baseOrderBy.js_commonjs-proxy.js +0 -1
  958. package/build/_virtual/_baseProperty.js_commonjs-proxy.js +0 -1
  959. package/build/_virtual/_basePropertyDeep.js_commonjs-proxy.js +0 -1
  960. package/build/_virtual/_baseRest.js_commonjs-proxy.js +0 -1
  961. package/build/_virtual/_baseSetToString.js_commonjs-proxy.js +0 -1
  962. package/build/_virtual/_baseSortBy.js_commonjs-proxy.js +0 -1
  963. package/build/_virtual/_baseTimes.js_commonjs-proxy.js +0 -1
  964. package/build/_virtual/_baseToString.js_commonjs-proxy.js +0 -1
  965. package/build/_virtual/_baseUnary.js_commonjs-proxy.js +0 -1
  966. package/build/_virtual/_baseUniq.js_commonjs-proxy.js +0 -1
  967. package/build/_virtual/_cacheHas.js_commonjs-proxy.js +0 -1
  968. package/build/_virtual/_castFunction.js_commonjs-proxy.js +0 -1
  969. package/build/_virtual/_castPath.js_commonjs-proxy.js +0 -1
  970. package/build/_virtual/_cloneArrayBuffer.js_commonjs-proxy.js +0 -1
  971. package/build/_virtual/_cloneBuffer.js_commonjs-proxy.js +0 -1
  972. package/build/_virtual/_cloneDataView.js_commonjs-proxy.js +0 -1
  973. package/build/_virtual/_cloneRegExp.js_commonjs-proxy.js +0 -1
  974. package/build/_virtual/_cloneSymbol.js_commonjs-proxy.js +0 -1
  975. package/build/_virtual/_cloneTypedArray.js_commonjs-proxy.js +0 -1
  976. package/build/_virtual/_commonjsHelpers.js +0 -1
  977. package/build/_virtual/_compareAscending.js_commonjs-proxy.js +0 -1
  978. package/build/_virtual/_compareMultiple.js_commonjs-proxy.js +0 -1
  979. package/build/_virtual/_copyArray.js_commonjs-proxy.js +0 -1
  980. package/build/_virtual/_copyObject.js_commonjs-proxy.js +0 -1
  981. package/build/_virtual/_copySymbols.js_commonjs-proxy.js +0 -1
  982. package/build/_virtual/_copySymbolsIn.js_commonjs-proxy.js +0 -1
  983. package/build/_virtual/_coreJsData.js_commonjs-proxy.js +0 -1
  984. package/build/_virtual/_createAggregator.js_commonjs-proxy.js +0 -1
  985. package/build/_virtual/_createBaseEach.js_commonjs-proxy.js +0 -1
  986. package/build/_virtual/_createBaseFor.js_commonjs-proxy.js +0 -1
  987. package/build/_virtual/_createSet.js_commonjs-proxy.js +0 -1
  988. package/build/_virtual/_defineProperty.js_commonjs-proxy.js +0 -1
  989. package/build/_virtual/_equalArrays.js_commonjs-proxy.js +0 -1
  990. package/build/_virtual/_equalByTag.js_commonjs-proxy.js +0 -1
  991. package/build/_virtual/_equalObjects.js_commonjs-proxy.js +0 -1
  992. package/build/_virtual/_freeGlobal.js_commonjs-proxy.js +0 -1
  993. package/build/_virtual/_getAllKeys.js_commonjs-proxy.js +0 -1
  994. package/build/_virtual/_getAllKeysIn.js_commonjs-proxy.js +0 -1
  995. package/build/_virtual/_getMapData.js_commonjs-proxy.js +0 -1
  996. package/build/_virtual/_getMatchData.js_commonjs-proxy.js +0 -1
  997. package/build/_virtual/_getNative.js_commonjs-proxy.js +0 -1
  998. package/build/_virtual/_getPrototype.js_commonjs-proxy.js +0 -1
  999. package/build/_virtual/_getRawTag.js_commonjs-proxy.js +0 -1
  1000. package/build/_virtual/_getSymbols.js_commonjs-proxy.js +0 -1
  1001. package/build/_virtual/_getSymbolsIn.js_commonjs-proxy.js +0 -1
  1002. package/build/_virtual/_getTag.js_commonjs-proxy.js +0 -1
  1003. package/build/_virtual/_getValue.js_commonjs-proxy.js +0 -1
  1004. package/build/_virtual/_hasPath.js_commonjs-proxy.js +0 -1
  1005. package/build/_virtual/_hashClear.js_commonjs-proxy.js +0 -1
  1006. package/build/_virtual/_hashDelete.js_commonjs-proxy.js +0 -1
  1007. package/build/_virtual/_hashGet.js_commonjs-proxy.js +0 -1
  1008. package/build/_virtual/_hashHas.js_commonjs-proxy.js +0 -1
  1009. package/build/_virtual/_hashSet.js_commonjs-proxy.js +0 -1
  1010. package/build/_virtual/_initCloneArray.js_commonjs-proxy.js +0 -1
  1011. package/build/_virtual/_initCloneByTag.js_commonjs-proxy.js +0 -1
  1012. package/build/_virtual/_initCloneObject.js_commonjs-proxy.js +0 -1
  1013. package/build/_virtual/_isFlattenable.js_commonjs-proxy.js +0 -1
  1014. package/build/_virtual/_isIndex.js_commonjs-proxy.js +0 -1
  1015. package/build/_virtual/_isIterateeCall.js_commonjs-proxy.js +0 -1
  1016. package/build/_virtual/_isKey.js_commonjs-proxy.js +0 -1
  1017. package/build/_virtual/_isKeyable.js_commonjs-proxy.js +0 -1
  1018. package/build/_virtual/_isMasked.js_commonjs-proxy.js +0 -1
  1019. package/build/_virtual/_isPrototype.js_commonjs-proxy.js +0 -1
  1020. package/build/_virtual/_isStrictComparable.js_commonjs-proxy.js +0 -1
  1021. package/build/_virtual/_listCacheClear.js_commonjs-proxy.js +0 -1
  1022. package/build/_virtual/_listCacheDelete.js_commonjs-proxy.js +0 -1
  1023. package/build/_virtual/_listCacheGet.js_commonjs-proxy.js +0 -1
  1024. package/build/_virtual/_listCacheHas.js_commonjs-proxy.js +0 -1
  1025. package/build/_virtual/_listCacheSet.js_commonjs-proxy.js +0 -1
  1026. package/build/_virtual/_mapCacheClear.js_commonjs-proxy.js +0 -1
  1027. package/build/_virtual/_mapCacheDelete.js_commonjs-proxy.js +0 -1
  1028. package/build/_virtual/_mapCacheGet.js_commonjs-proxy.js +0 -1
  1029. package/build/_virtual/_mapCacheHas.js_commonjs-proxy.js +0 -1
  1030. package/build/_virtual/_mapCacheSet.js_commonjs-proxy.js +0 -1
  1031. package/build/_virtual/_mapToArray.js_commonjs-proxy.js +0 -1
  1032. package/build/_virtual/_matchesStrictComparable.js_commonjs-proxy.js +0 -1
  1033. package/build/_virtual/_memoizeCapped.js_commonjs-proxy.js +0 -1
  1034. package/build/_virtual/_nativeCreate.js_commonjs-proxy.js +0 -1
  1035. package/build/_virtual/_nativeKeys.js_commonjs-proxy.js +0 -1
  1036. package/build/_virtual/_nativeKeysIn.js_commonjs-proxy.js +0 -1
  1037. package/build/_virtual/_nodeUtil.js_commonjs-proxy.js +0 -1
  1038. package/build/_virtual/_objectToString.js_commonjs-proxy.js +0 -1
  1039. package/build/_virtual/_overArg.js_commonjs-proxy.js +0 -1
  1040. package/build/_virtual/_overRest.js_commonjs-proxy.js +0 -1
  1041. package/build/_virtual/_registry.js_commonjs-proxy.js +0 -1
  1042. package/build/_virtual/_root.js_commonjs-proxy.js +0 -1
  1043. package/build/_virtual/_setCacheAdd.js_commonjs-proxy.js +0 -1
  1044. package/build/_virtual/_setCacheHas.js_commonjs-proxy.js +0 -1
  1045. package/build/_virtual/_setToArray.js_commonjs-proxy.js +0 -1
  1046. package/build/_virtual/_setToString.js_commonjs-proxy.js +0 -1
  1047. package/build/_virtual/_shortOut.js_commonjs-proxy.js +0 -1
  1048. package/build/_virtual/_stackClear.js_commonjs-proxy.js +0 -1
  1049. package/build/_virtual/_stackDelete.js_commonjs-proxy.js +0 -1
  1050. package/build/_virtual/_stackGet.js_commonjs-proxy.js +0 -1
  1051. package/build/_virtual/_stackHas.js_commonjs-proxy.js +0 -1
  1052. package/build/_virtual/_stackSet.js_commonjs-proxy.js +0 -1
  1053. package/build/_virtual/_stream_duplex.js_commonjs-proxy.js +0 -1
  1054. package/build/_virtual/_stream_passthrough.js_commonjs-proxy.js +0 -1
  1055. package/build/_virtual/_stream_readable.js_commonjs-proxy.js +0 -1
  1056. package/build/_virtual/_stream_transform.js_commonjs-proxy.js +0 -1
  1057. package/build/_virtual/_stream_writable.js_commonjs-proxy.js +0 -1
  1058. package/build/_virtual/_strictIndexOf.js_commonjs-proxy.js +0 -1
  1059. package/build/_virtual/_stringToPath.js_commonjs-proxy.js +0 -1
  1060. package/build/_virtual/_toKey.js_commonjs-proxy.js +0 -1
  1061. package/build/_virtual/_toSource.js_commonjs-proxy.js +0 -1
  1062. package/build/_virtual/async_iterator.js_commonjs-proxy.js +0 -1
  1063. package/build/_virtual/attributes-to-props.js_commonjs-proxy.js +0 -1
  1064. package/build/_virtual/axios.js_commonjs-proxy.js +0 -1
  1065. package/build/_virtual/bind.js_commonjs-proxy.js +0 -1
  1066. package/build/_virtual/browser.js_commonjs-proxy.js +0 -1
  1067. package/build/_virtual/buffer_list.js_commonjs-proxy.js +0 -1
  1068. package/build/_virtual/buildFullPath.js_commonjs-proxy.js +0 -1
  1069. package/build/_virtual/buildURL.js_commonjs-proxy.js +0 -1
  1070. package/build/_virtual/checkPropTypes.js_commonjs-proxy.js +0 -1
  1071. package/build/_virtual/combineURLs.js_commonjs-proxy.js +0 -1
  1072. package/build/_virtual/common.js_commonjs-proxy.js +0 -1
  1073. package/build/_virtual/constant.js_commonjs-proxy.js +0 -1
  1074. package/build/_virtual/cookies.js_commonjs-proxy.js +0 -1
  1075. package/build/_virtual/createError.js_commonjs-proxy.js +0 -1
  1076. package/build/_virtual/debug.js_commonjs-proxy.js +0 -1
  1077. package/build/_virtual/decode_codepoint.js_commonjs-proxy.js +0 -1
  1078. package/build/_virtual/defaults.js_commonjs-proxy.js +0 -1
  1079. package/build/_virtual/destroy.js_commonjs-proxy.js +0 -1
  1080. package/build/_virtual/dispatchRequest.js_commonjs-proxy.js +0 -1
  1081. package/build/_virtual/dom-to-react.js_commonjs-proxy.js +0 -1
  1082. package/build/_virtual/end-of-stream.js_commonjs-proxy.js +0 -1
  1083. package/build/_virtual/enhanceError.js_commonjs-proxy.js +0 -1
  1084. package/build/_virtual/eq.js_commonjs-proxy.js +0 -1
  1085. package/build/_virtual/errors.js_commonjs-proxy.js +0 -1
  1086. package/build/_virtual/factoryWithThrowingShims.js_commonjs-proxy.js +0 -1
  1087. package/build/_virtual/factoryWithTypeCheckers.js_commonjs-proxy.js +0 -1
  1088. package/build/_virtual/from.js_commonjs-proxy.js +0 -1
  1089. package/build/_virtual/get.js_commonjs-proxy.js +0 -1
  1090. package/build/_virtual/hasIn.js_commonjs-proxy.js +0 -1
  1091. package/build/_virtual/html-to-dom.js_commonjs-proxy.js +0 -1
  1092. package/build/_virtual/http.js_commonjs-proxy.js +0 -1
  1093. package/build/_virtual/identity.js_commonjs-proxy.js +0 -1
  1094. package/build/_virtual/index.js_commonjs-proxy.js +0 -1
  1095. package/build/_virtual/index.js_commonjs-proxy10.js +0 -1
  1096. package/build/_virtual/index.js_commonjs-proxy11.js +0 -1
  1097. package/build/_virtual/index.js_commonjs-proxy12.js +0 -1
  1098. package/build/_virtual/index.js_commonjs-proxy13.js +0 -1
  1099. package/build/_virtual/index.js_commonjs-proxy14.js +0 -1
  1100. package/build/_virtual/index.js_commonjs-proxy15.js +0 -1
  1101. package/build/_virtual/index.js_commonjs-proxy16.js +0 -1
  1102. package/build/_virtual/index.js_commonjs-proxy17.js +0 -1
  1103. package/build/_virtual/index.js_commonjs-proxy18.js +0 -1
  1104. package/build/_virtual/index.js_commonjs-proxy2.js +0 -1
  1105. package/build/_virtual/index.js_commonjs-proxy3.js +0 -1
  1106. package/build/_virtual/index.js_commonjs-proxy4.js +0 -1
  1107. package/build/_virtual/index.js_commonjs-proxy5.js +0 -1
  1108. package/build/_virtual/index.js_commonjs-proxy6.js +0 -1
  1109. package/build/_virtual/index.js_commonjs-proxy7.js +0 -1
  1110. package/build/_virtual/index.js_commonjs-proxy8.js +0 -1
  1111. package/build/_virtual/index.js_commonjs-proxy9.js +0 -1
  1112. package/build/_virtual/inherits.js_commonjs-proxy.js +0 -1
  1113. package/build/_virtual/inherits_browser.js_commonjs-proxy.js +0 -1
  1114. package/build/_virtual/isAbsoluteURL.js_commonjs-proxy.js +0 -1
  1115. package/build/_virtual/isArguments.js_commonjs-proxy.js +0 -1
  1116. package/build/_virtual/isArray.js_commonjs-proxy.js +0 -1
  1117. package/build/_virtual/isArrayLike.js_commonjs-proxy.js +0 -1
  1118. package/build/_virtual/isAxiosError.js_commonjs-proxy.js +0 -1
  1119. package/build/_virtual/isBuffer.js_commonjs-proxy.js +0 -1
  1120. package/build/_virtual/isCancel.js_commonjs-proxy.js +0 -1
  1121. package/build/_virtual/isFunction.js_commonjs-proxy.js +0 -1
  1122. package/build/_virtual/isLength.js_commonjs-proxy.js +0 -1
  1123. package/build/_virtual/isMap.js_commonjs-proxy.js +0 -1
  1124. package/build/_virtual/isObject.js_commonjs-proxy.js +0 -1
  1125. package/build/_virtual/isObjectLike.js_commonjs-proxy.js +0 -1
  1126. package/build/_virtual/isSet.js_commonjs-proxy.js +0 -1
  1127. package/build/_virtual/isSymbol.js_commonjs-proxy.js +0 -1
  1128. package/build/_virtual/isTypedArray.js_commonjs-proxy.js +0 -1
  1129. package/build/_virtual/isURLSameOrigin.js_commonjs-proxy.js +0 -1
  1130. package/build/_virtual/keys.js_commonjs-proxy.js +0 -1
  1131. package/build/_virtual/keysIn.js_commonjs-proxy.js +0 -1
  1132. package/build/_virtual/memoize.js_commonjs-proxy.js +0 -1
  1133. package/build/_virtual/mergeConfig.js_commonjs-proxy.js +0 -1
  1134. package/build/_virtual/node.js_commonjs-proxy.js +0 -1
  1135. package/build/_virtual/node.js_commonjs-proxy2.js +0 -1
  1136. package/build/_virtual/node.js_commonjs-proxy3.js +0 -1
  1137. package/build/_virtual/noop.js_commonjs-proxy.js +0 -1
  1138. package/build/_virtual/normalizeHeaderName.js_commonjs-proxy.js +0 -1
  1139. package/build/_virtual/now.js_commonjs-proxy.js +0 -1
  1140. package/build/_virtual/parseHeaders.js_commonjs-proxy.js +0 -1
  1141. package/build/_virtual/pipeline.js_commonjs-proxy.js +0 -1
  1142. package/build/_virtual/possibleStandardNamesOptimized.js_commonjs-proxy.js +0 -1
  1143. package/build/_virtual/property.js_commonjs-proxy.js +0 -1
  1144. package/build/_virtual/react-is.development.js_commonjs-proxy.js +0 -1
  1145. package/build/_virtual/react-is.production.min.js_commonjs-proxy.js +0 -1
  1146. package/build/_virtual/readable.js_commonjs-proxy.js +0 -1
  1147. package/build/_virtual/settle.js_commonjs-proxy.js +0 -1
  1148. package/build/_virtual/spread.js_commonjs-proxy.js +0 -1
  1149. package/build/_virtual/state.js_commonjs-proxy.js +0 -1
  1150. package/build/_virtual/stream.js_commonjs-proxy.js +0 -1
  1151. package/build/_virtual/string_decoder.js_commonjs-proxy.js +0 -1
  1152. package/build/_virtual/stubArray.js_commonjs-proxy.js +0 -1
  1153. package/build/_virtual/stubFalse.js_commonjs-proxy.js +0 -1
  1154. package/build/_virtual/toNumber.js_commonjs-proxy.js +0 -1
  1155. package/build/_virtual/toString.js_commonjs-proxy.js +0 -1
  1156. package/build/_virtual/transformData.js_commonjs-proxy.js +0 -1
  1157. package/build/_virtual/utilities.js_commonjs-proxy.js +0 -1
  1158. package/build/_virtual/utilities.js_commonjs-proxy2.js +0 -1
  1159. package/build/_virtual/utilities.js_commonjs-proxy3.js +0 -1
  1160. package/build/_virtual/utils.js_commonjs-proxy.js +0 -1
  1161. package/build/_virtual/validator.js_commonjs-proxy.js +0 -1
  1162. package/build/_virtual/xhr.js_commonjs-proxy.js +0 -1
  1163. package/build/analytics/analytics.d.ts +0 -39
  1164. package/build/analytics/analytics.js +0 -1
  1165. package/build/analytics/events.d.ts +0 -37
  1166. package/build/analytics/events.js +0 -1
  1167. package/build/analytics/facebookPixel.d.ts +0 -16
  1168. package/build/analytics/facebookPixel.js +0 -1
  1169. package/build/analytics/googleAnalytics.d.ts +0 -14
  1170. package/build/analytics/googleAnalytics.js +0 -1
  1171. package/build/analytics/googleTagManager.d.ts +0 -204
  1172. package/build/analytics/googleTagManager.js +0 -1
  1173. package/build/analytics/googleUniversal.d.ts +0 -9
  1174. package/build/analytics/googleUniversal.js +0 -1
  1175. package/build/analytics/head/index.d.ts +0 -7
  1176. package/build/analytics/head/index.js +0 -1
  1177. package/build/analytics/ikas.d.ts +0 -134
  1178. package/build/analytics/ikas.js +0 -1
  1179. package/build/analytics/index.d.ts +0 -2
  1180. package/build/analytics/tiktokPixel.d.ts +0 -14
  1181. package/build/analytics/tiktokPixel.js +0 -1
  1182. package/build/assets/translations/checkout/en.js +0 -1
  1183. package/build/assets/translations/checkout/tr.js +0 -1
  1184. package/build/components/checkout/components/address-form/index.d.ts +0 -3
  1185. package/build/components/checkout/components/address-form/index.js +0 -1
  1186. package/build/components/checkout/components/address-form/model.d.ts +0 -87
  1187. package/build/components/checkout/components/address-form/model.js +0 -1
  1188. package/build/components/checkout/components/button/index.d.ts +0 -13
  1189. package/build/components/checkout/components/button/index.js +0 -1
  1190. package/build/components/checkout/components/button/style.module.scss.js +0 -1
  1191. package/build/components/checkout/components/cart-summary/cart-item/index.d.ts +0 -10
  1192. package/build/components/checkout/components/cart-summary/cart-item/index.js +0 -1
  1193. package/build/components/checkout/components/cart-summary/cart-item/style.module.scss.js +0 -1
  1194. package/build/components/checkout/components/cart-summary/index.d.ts +0 -8
  1195. package/build/components/checkout/components/cart-summary/index.js +0 -1
  1196. package/build/components/checkout/components/cart-summary/style.module.scss.js +0 -1
  1197. package/build/components/checkout/components/checkbox/check.d.ts +0 -6
  1198. package/build/components/checkout/components/checkbox/check.js +0 -1
  1199. package/build/components/checkout/components/checkbox/index.d.ts +0 -10
  1200. package/build/components/checkout/components/checkbox/index.js +0 -1
  1201. package/build/components/checkout/components/checkbox/style.module.scss.js +0 -1
  1202. package/build/components/checkout/components/credit-card-form/index.d.ts +0 -7
  1203. package/build/components/checkout/components/credit-card-form/index.js +0 -1
  1204. package/build/components/checkout/components/credit-card-form/model.d.ts +0 -26
  1205. package/build/components/checkout/components/credit-card-form/model.js +0 -1
  1206. package/build/components/checkout/components/credit-card-form/style.module.scss.js +0 -1
  1207. package/build/components/checkout/components/credit-card-form/svg/amex.d.ts +0 -6
  1208. package/build/components/checkout/components/credit-card-form/svg/amex.js +0 -1
  1209. package/build/components/checkout/components/credit-card-form/svg/master-card.d.ts +0 -6
  1210. package/build/components/checkout/components/credit-card-form/svg/master-card.js +0 -1
  1211. package/build/components/checkout/components/credit-card-form/svg/troy.d.ts +0 -6
  1212. package/build/components/checkout/components/credit-card-form/svg/troy.js +0 -1
  1213. package/build/components/checkout/components/credit-card-form/svg/visa.d.ts +0 -6
  1214. package/build/components/checkout/components/credit-card-form/svg/visa.js +0 -1
  1215. package/build/components/checkout/components/customer-addresses/index.d.ts +0 -19
  1216. package/build/components/checkout/components/customer-addresses/index.js +0 -1
  1217. package/build/components/checkout/components/customer-addresses/model.d.ts +0 -21
  1218. package/build/components/checkout/components/customer-addresses/model.js +0 -1
  1219. package/build/components/checkout/components/customer-addresses/style.module.scss.js +0 -1
  1220. package/build/components/checkout/components/delivery-methods/icon-button/index.d.ts +0 -10
  1221. package/build/components/checkout/components/delivery-methods/icon-button/index.js +0 -1
  1222. package/build/components/checkout/components/delivery-methods/icon-button/style.module.scss.js +0 -1
  1223. package/build/components/checkout/components/delivery-methods/icons/box.d.ts +0 -6
  1224. package/build/components/checkout/components/delivery-methods/icons/box.js +0 -1
  1225. package/build/components/checkout/components/delivery-methods/icons/store.d.ts +0 -6
  1226. package/build/components/checkout/components/delivery-methods/icons/store.js +0 -1
  1227. package/build/components/checkout/components/delivery-methods/index.d.ts +0 -7
  1228. package/build/components/checkout/components/delivery-methods/index.js +0 -1
  1229. package/build/components/checkout/components/delivery-methods/style.module.scss.js +0 -1
  1230. package/build/components/checkout/components/error/customer-login-required-error/index.d.ts +0 -8
  1231. package/build/components/checkout/components/error/customer-login-required-error/index.js +0 -1
  1232. package/build/components/checkout/components/error/index.d.ts +0 -7
  1233. package/build/components/checkout/components/error/index.js +0 -1
  1234. package/build/components/checkout/components/error/no-shipping-error/index.d.ts +0 -4
  1235. package/build/components/checkout/components/error/no-shipping-error/index.js +0 -1
  1236. package/build/components/checkout/components/error/payment-error/index.d.ts +0 -8
  1237. package/build/components/checkout/components/error/payment-error/index.js +0 -1
  1238. package/build/components/checkout/components/error/stock-error/index.d.ts +0 -8
  1239. package/build/components/checkout/components/error/stock-error/index.js +0 -1
  1240. package/build/components/checkout/components/error/stock-error/style.module.scss.js +0 -1
  1241. package/build/components/checkout/components/error/unknown-error/index.d.ts +0 -6
  1242. package/build/components/checkout/components/error/unknown-error/index.js +0 -1
  1243. package/build/components/checkout/components/expandable-section/index.d.ts +0 -6
  1244. package/build/components/checkout/components/expandable-section/index.js +0 -1
  1245. package/build/components/checkout/components/expandable-section/style.module.scss.js +0 -1
  1246. package/build/components/checkout/components/form-item/caret-down.d.ts +0 -6
  1247. package/build/components/checkout/components/form-item/caret-down.js +0 -1
  1248. package/build/components/checkout/components/form-item/index.d.ts +0 -3
  1249. package/build/components/checkout/components/form-item/index.js +0 -1
  1250. package/build/components/checkout/components/form-item/model.d.ts +0 -61
  1251. package/build/components/checkout/components/form-item/model.js +0 -1
  1252. package/build/components/checkout/components/form-item/style.module.scss.js +0 -1
  1253. package/build/components/checkout/components/fullscreen-loading/index.d.ts +0 -2
  1254. package/build/components/checkout/components/fullscreen-loading/index.js +0 -1
  1255. package/build/components/checkout/components/fullscreen-loading/style.module.scss.js +0 -1
  1256. package/build/components/checkout/components/input-with-button/index.d.ts +0 -11
  1257. package/build/components/checkout/components/input-with-button/index.js +0 -1
  1258. package/build/components/checkout/components/input-with-button/style.module.scss.js +0 -1
  1259. package/build/components/checkout/components/master-pass/credit-card-form/index.d.ts +0 -9
  1260. package/build/components/checkout/components/master-pass/credit-card-form/index.js +0 -1
  1261. package/build/components/checkout/components/master-pass/credit-card-form/style.module.scss.js +0 -1
  1262. package/build/components/checkout/components/master-pass/modal/index.d.ts +0 -11
  1263. package/build/components/checkout/components/master-pass/modal/index.js +0 -1
  1264. package/build/components/checkout/components/master-pass/modal/style.module.scss.js +0 -1
  1265. package/build/components/checkout/components/master-pass/modal/svg/modal-close.d.ts +0 -3
  1266. package/build/components/checkout/components/master-pass/modal/svg/modal-close.js +0 -1
  1267. package/build/components/checkout/components/master-pass/modal-link-card-to-client/index.d.ts +0 -11
  1268. package/build/components/checkout/components/master-pass/modal-link-card-to-client/index.js +0 -1
  1269. package/build/components/checkout/components/master-pass/modal-link-card-to-client/style.module.scss.js +0 -1
  1270. package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/info-mark.d.ts +0 -3
  1271. package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/info-mark.js +0 -1
  1272. package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/master-pass-by-master-card-big.d.ts +0 -3
  1273. package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/master-pass-by-master-card-big.js +0 -1
  1274. package/build/components/checkout/components/master-pass/modal-otp/index.d.ts +0 -10
  1275. package/build/components/checkout/components/master-pass/modal-otp/index.js +0 -1
  1276. package/build/components/checkout/components/master-pass/modal-otp/style.module.scss.js +0 -1
  1277. package/build/components/checkout/components/master-pass/modal-otp/svg/master-pass.d.ts +0 -3
  1278. package/build/components/checkout/components/master-pass/modal-otp/svg/master-pass.js +0 -1
  1279. package/build/components/checkout/components/master-pass/modal-response/index.d.ts +0 -10
  1280. package/build/components/checkout/components/master-pass/modal-response/index.js +0 -1
  1281. package/build/components/checkout/components/master-pass/modal-response/style.module.scss.js +0 -1
  1282. package/build/components/checkout/components/master-pass/modal-success/index.d.ts +0 -11
  1283. package/build/components/checkout/components/master-pass/modal-success/index.js +0 -1
  1284. package/build/components/checkout/components/master-pass/modal-success/style.module.scss.js +0 -1
  1285. package/build/components/checkout/components/master-pass/modal-success/svg/master-pass-by-master-card-small.d.ts +0 -3
  1286. package/build/components/checkout/components/master-pass/modal-success/svg/master-pass-by-master-card-small.js +0 -1
  1287. package/build/components/checkout/components/master-pass/modal-success/svg/success.d.ts +0 -3
  1288. package/build/components/checkout/components/master-pass/modal-success/svg/success.js +0 -1
  1289. package/build/components/checkout/components/master-pass/payment-gateway/svg/master-card.d.ts +0 -3
  1290. package/build/components/checkout/components/master-pass/payment-gateway/svg/master-card.js +0 -1
  1291. package/build/components/checkout/components/master-pass/svg/master-pass-by-master-card.d.ts +0 -3
  1292. package/build/components/checkout/components/master-pass/svg/master-pass-by-master-card.js +0 -1
  1293. package/build/components/checkout/components/modal/index.d.ts +0 -8
  1294. package/build/components/checkout/components/modal/index.js +0 -1
  1295. package/build/components/checkout/components/modal/style.module.scss.js +0 -1
  1296. package/build/components/checkout/components/modal/useEscape.d.ts +0 -5
  1297. package/build/components/checkout/components/modal/useEscape.js +0 -1
  1298. package/build/components/checkout/components/notification-box/index.d.ts +0 -9
  1299. package/build/components/checkout/components/notification-box/index.js +0 -1
  1300. package/build/components/checkout/components/notification-box/style.module.scss.js +0 -1
  1301. package/build/components/checkout/components/offer-product/index.d.ts +0 -8
  1302. package/build/components/checkout/components/offer-product/index.js +0 -1
  1303. package/build/components/checkout/components/offer-product/select/arrows.d.ts +0 -6
  1304. package/build/components/checkout/components/offer-product/select/arrows.js +0 -1
  1305. package/build/components/checkout/components/offer-product/select/index.d.ts +0 -11
  1306. package/build/components/checkout/components/offer-product/select/index.js +0 -1
  1307. package/build/components/checkout/components/offer-product/select/style.module.scss.js +0 -1
  1308. package/build/components/checkout/components/offer-product/style.module.scss.js +0 -1
  1309. package/build/components/checkout/components/select-box/index.d.ts +0 -13
  1310. package/build/components/checkout/components/select-box/index.js +0 -1
  1311. package/build/components/checkout/components/select-box/style.module.scss.js +0 -1
  1312. package/build/components/checkout/components/step-container/index.d.ts +0 -15
  1313. package/build/components/checkout/components/step-container/index.js +0 -1
  1314. package/build/components/checkout/components/step-container/style.module.scss.js +0 -1
  1315. package/build/components/checkout/components/stripe/checkout-form.d.ts +0 -8
  1316. package/build/components/checkout/components/stripe/checkout-form.js +0 -1
  1317. package/build/components/checkout/components/stripe/index.d.ts +0 -9
  1318. package/build/components/checkout/components/stripe/index.js +0 -1
  1319. package/build/components/checkout/components/stripe/style.module.scss.js +0 -1
  1320. package/build/components/checkout/components/svg/arrow-down.d.ts +0 -6
  1321. package/build/components/checkout/components/svg/arrow-down.js +0 -1
  1322. package/build/components/checkout/components/svg/arrow-left.d.ts +0 -6
  1323. package/build/components/checkout/components/svg/arrow-right.d.ts +0 -6
  1324. package/build/components/checkout/components/svg/cross.d.ts +0 -6
  1325. package/build/components/checkout/components/svg/cross.js +0 -1
  1326. package/build/components/checkout/components/svg/discount.d.ts +0 -6
  1327. package/build/components/checkout/components/svg/external.d.ts +0 -6
  1328. package/build/components/checkout/components/svg/external.js +0 -1
  1329. package/build/components/checkout/components/svg/gift.d.ts +0 -7
  1330. package/build/components/checkout/components/svg/gift.js +0 -1
  1331. package/build/components/checkout/components/svg/ikas.d.ts +0 -6
  1332. package/build/components/checkout/components/svg/ikas.js +0 -1
  1333. package/build/components/checkout/components/svg/lock.d.ts +0 -6
  1334. package/build/components/checkout/components/svg/lock.js +0 -1
  1335. package/build/components/checkout/components/svg/shopping-cart.d.ts +0 -6
  1336. package/build/components/checkout/components/svg/success-circle.d.ts +0 -6
  1337. package/build/components/checkout/components/svg/success-circle.js +0 -1
  1338. package/build/components/checkout/components/svg/tag.d.ts +0 -6
  1339. package/build/components/checkout/components/svg/warning.d.ts +0 -6
  1340. package/build/components/checkout/components/svg/warning.js +0 -1
  1341. package/build/components/checkout/components/toggle/index.d.ts +0 -10
  1342. package/build/components/checkout/components/toggle/index.js +0 -1
  1343. package/build/components/checkout/components/toggle/style.module.scss.js +0 -1
  1344. package/build/components/checkout/components/tooltip/index.d.ts +0 -8
  1345. package/build/components/checkout/components/tooltip/index.js +0 -1
  1346. package/build/components/checkout/components/tooltip/style.module.scss.js +0 -1
  1347. package/build/components/checkout/index.d.ts +0 -34
  1348. package/build/components/checkout/index.js +0 -1
  1349. package/build/components/checkout/model.d.ts +0 -164
  1350. package/build/components/checkout/model.js +0 -1
  1351. package/build/components/checkout/modelMasterPass.d.ts +0 -202
  1352. package/build/components/checkout/modelMasterPass.js +0 -1
  1353. package/build/components/checkout/steps/step-info/index.d.ts +0 -7
  1354. package/build/components/checkout/steps/step-info/index.js +0 -1
  1355. package/build/components/checkout/steps/step-payment/billing-address/index.d.ts +0 -7
  1356. package/build/components/checkout/steps/step-payment/billing-address/index.js +0 -1
  1357. package/build/components/checkout/steps/step-payment/index.d.ts +0 -7
  1358. package/build/components/checkout/steps/step-payment/index.js +0 -1
  1359. package/build/components/checkout/steps/step-payment/payment-gateways/index.d.ts +0 -7
  1360. package/build/components/checkout/steps/step-payment/payment-gateways/index.js +0 -1
  1361. package/build/components/checkout/steps/step-payment/payment-gateways/installments/index.d.ts +0 -7
  1362. package/build/components/checkout/steps/step-payment/payment-gateways/installments/index.js +0 -1
  1363. package/build/components/checkout/steps/step-payment/payment-gateways/installments/style.module.scss.js +0 -1
  1364. package/build/components/checkout/steps/step-payment/payment-gateways/style.module.scss.js +0 -1
  1365. package/build/components/checkout/steps/step-payment/style.module.scss.js +0 -1
  1366. package/build/components/checkout/steps/step-shipping/index.d.ts +0 -7
  1367. package/build/components/checkout/steps/step-shipping/index.js +0 -1
  1368. package/build/components/checkout/steps/step-shipping/style.module.scss.js +0 -1
  1369. package/build/components/checkout/steps/step-success/index.d.ts +0 -7
  1370. package/build/components/checkout/steps/step-success/index.js +0 -1
  1371. package/build/components/checkout/steps/step-success/style.module.scss.js +0 -1
  1372. package/build/components/checkout/style.module.scss.js +0 -1
  1373. package/build/components/checkout/styles/common.module.scss.js +0 -1
  1374. package/build/components/image/index.d.ts +0 -10
  1375. package/build/components/image/index.js +0 -1
  1376. package/build/components/index.d.ts +0 -4
  1377. package/build/components/link/index.d.ts +0 -4
  1378. package/build/components/link/index.js +0 -1
  1379. package/build/components/page/ThemeComponent.d.ts +0 -21
  1380. package/build/components/page/ThemeComponent.js +0 -1
  1381. package/build/components/page/head.d.ts +0 -15
  1382. package/build/components/page/head.js +0 -1
  1383. package/build/components/page/index.d.ts +0 -21
  1384. package/build/components/page/index.js +0 -1
  1385. package/build/components/page-editor/ThemeComponentEditor.d.ts +0 -32
  1386. package/build/components/page-editor/ThemeComponentEditor.js +0 -1
  1387. package/build/components/page-editor/error/index.d.ts +0 -5
  1388. package/build/components/page-editor/error/index.js +0 -1
  1389. package/build/components/page-editor/index.d.ts +0 -4
  1390. package/build/components/page-editor/index.js +0 -1
  1391. package/build/components/page-editor/loader/index.d.ts +0 -6
  1392. package/build/components/page-editor/loader/index.js +0 -1
  1393. package/build/components/page-editor/loader/style.module.scss.js +0 -1
  1394. package/build/components/page-editor/model.d.ts +0 -75
  1395. package/build/components/page-editor/model.js +0 -1
  1396. package/build/ext/@ikas/fe-api-client/build/_virtual/_commonjsHelpers.js +0 -1
  1397. package/build/ext/@ikas/fe-api-client/build/_virtual/axios-error-format.js_commonjs-exports.js +0 -1
  1398. package/build/ext/@ikas/fe-api-client/build/_virtual/core.js_commonjs-exports.js +0 -1
  1399. package/build/ext/@ikas/fe-api-client/build/_virtual/index.js_commonjs-exports.js +0 -1
  1400. package/build/ext/@ikas/fe-api-client/build/config/index.js +0 -1
  1401. package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/axios-error-format.js +0 -1
  1402. package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/core.js +0 -1
  1403. package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/index.js +0 -1
  1404. package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/index.mjs.js +0 -1
  1405. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_Hash.js +0 -1
  1406. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_ListCache.js +0 -1
  1407. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_Map.js +0 -1
  1408. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_MapCache.js +0 -1
  1409. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_Symbol.js +0 -1
  1410. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_arrayMap.js +0 -1
  1411. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_assignValue.js +0 -1
  1412. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_assocIndexOf.js +0 -1
  1413. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseAssignValue.js +0 -1
  1414. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseGetTag.js +0 -1
  1415. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseIsNative.js +0 -1
  1416. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseSet.js +0 -1
  1417. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseToString.js +0 -1
  1418. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_castPath.js +0 -1
  1419. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_coreJsData.js +0 -1
  1420. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_defineProperty.js +0 -1
  1421. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_freeGlobal.js +0 -1
  1422. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getMapData.js +0 -1
  1423. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getNative.js +0 -1
  1424. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getRawTag.js +0 -1
  1425. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getValue.js +0 -1
  1426. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashClear.js +0 -1
  1427. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashDelete.js +0 -1
  1428. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashGet.js +0 -1
  1429. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashHas.js +0 -1
  1430. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashSet.js +0 -1
  1431. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_isIndex.js +0 -1
  1432. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_isKey.js +0 -1
  1433. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_isKeyable.js +0 -1
  1434. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_isMasked.js +0 -1
  1435. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheClear.js +0 -1
  1436. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheDelete.js +0 -1
  1437. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheGet.js +0 -1
  1438. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheHas.js +0 -1
  1439. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheSet.js +0 -1
  1440. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheClear.js +0 -1
  1441. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheDelete.js +0 -1
  1442. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheGet.js +0 -1
  1443. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheHas.js +0 -1
  1444. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheSet.js +0 -1
  1445. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_memoizeCapped.js +0 -1
  1446. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_nativeCreate.js +0 -1
  1447. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_objectToString.js +0 -1
  1448. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_root.js +0 -1
  1449. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_stringToPath.js +0 -1
  1450. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_toKey.js +0 -1
  1451. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_toSource.js +0 -1
  1452. package/build/ext/@ikas/fe-api-client/build/ext/lodash/eq.js +0 -1
  1453. package/build/ext/@ikas/fe-api-client/build/ext/lodash/isArray.js +0 -1
  1454. package/build/ext/@ikas/fe-api-client/build/ext/lodash/isFunction.js +0 -1
  1455. package/build/ext/@ikas/fe-api-client/build/ext/lodash/isObject.js +0 -1
  1456. package/build/ext/@ikas/fe-api-client/build/ext/lodash/isObjectLike.js +0 -1
  1457. package/build/ext/@ikas/fe-api-client/build/ext/lodash/isSymbol.js +0 -1
  1458. package/build/ext/@ikas/fe-api-client/build/ext/lodash/memoize.js +0 -1
  1459. package/build/ext/@ikas/fe-api-client/build/ext/lodash/set.js +0 -1
  1460. package/build/ext/@ikas/fe-api-client/build/ext/lodash/toString.js +0 -1
  1461. package/build/ext/@ikas/fe-api-client/build/ext/tslib/tslib.es6.js +0 -15
  1462. package/build/ext/@ikas/fe-api-client/build/helpers/generate-return-fields.js +0 -1
  1463. package/build/ext/@ikas/fe-api-client/build/utils/api.js +0 -1
  1464. package/build/ext/@ikas/fe-api-client/build/utils/fetch-query.js +0 -1
  1465. package/build/ext/@ikas/react-phone-number-input/locale/en.json.js +0 -1
  1466. package/build/ext/@ikas/react-phone-number-input/min/index.js +0 -1
  1467. package/build/ext/@ikas/react-phone-number-input/modules/CountryIcon.js +0 -1
  1468. package/build/ext/@ikas/react-phone-number-input/modules/CountrySelect.js +0 -1
  1469. package/build/ext/@ikas/react-phone-number-input/modules/Flag.js +0 -1
  1470. package/build/ext/@ikas/react-phone-number-input/modules/InputBasic.js +0 -1
  1471. package/build/ext/@ikas/react-phone-number-input/modules/InputSmart.js +0 -1
  1472. package/build/ext/@ikas/react-phone-number-input/modules/InternationalIcon.js +0 -1
  1473. package/build/ext/@ikas/react-phone-number-input/modules/PhoneInputWithCountry.js +0 -1
  1474. package/build/ext/@ikas/react-phone-number-input/modules/PhoneInputWithCountryDefault.js +0 -1
  1475. package/build/ext/@ikas/react-phone-number-input/modules/PropTypes.js +0 -1
  1476. package/build/ext/@ikas/react-phone-number-input/modules/helpers/countries.js +0 -1
  1477. package/build/ext/@ikas/react-phone-number-input/modules/helpers/getInternationalPhoneNumberPrefix.js +0 -1
  1478. package/build/ext/@ikas/react-phone-number-input/modules/helpers/getPhoneInputWithCountryStateUpdateFromNewProps.js +0 -1
  1479. package/build/ext/@ikas/react-phone-number-input/modules/helpers/inputValuePrefix.js +0 -1
  1480. package/build/ext/@ikas/react-phone-number-input/modules/helpers/phoneInputHelpers.js +0 -1
  1481. package/build/ext/@stripe/react-stripe-js/dist/react-stripe.esm.js +0 -1
  1482. package/build/ext/@stripe/stripe-js/dist/stripe.esm.js +0 -1
  1483. package/build/ext/axios/index.js +0 -1
  1484. package/build/ext/axios/lib/adapters/http.js +0 -1
  1485. package/build/ext/axios/lib/adapters/xhr.js +0 -1
  1486. package/build/ext/axios/lib/axios.js +0 -1
  1487. package/build/ext/axios/lib/cancel/Cancel.js +0 -1
  1488. package/build/ext/axios/lib/cancel/CancelToken.js +0 -1
  1489. package/build/ext/axios/lib/cancel/isCancel.js +0 -1
  1490. package/build/ext/axios/lib/core/Axios.js +0 -1
  1491. package/build/ext/axios/lib/core/InterceptorManager.js +0 -1
  1492. package/build/ext/axios/lib/core/buildFullPath.js +0 -1
  1493. package/build/ext/axios/lib/core/createError.js +0 -1
  1494. package/build/ext/axios/lib/core/dispatchRequest.js +0 -1
  1495. package/build/ext/axios/lib/core/enhanceError.js +0 -1
  1496. package/build/ext/axios/lib/core/mergeConfig.js +0 -1
  1497. package/build/ext/axios/lib/core/settle.js +0 -1
  1498. package/build/ext/axios/lib/core/transformData.js +0 -1
  1499. package/build/ext/axios/lib/defaults.js +0 -1
  1500. package/build/ext/axios/lib/helpers/bind.js +0 -1
  1501. package/build/ext/axios/lib/helpers/buildURL.js +0 -1
  1502. package/build/ext/axios/lib/helpers/combineURLs.js +0 -1
  1503. package/build/ext/axios/lib/helpers/cookies.js +0 -1
  1504. package/build/ext/axios/lib/helpers/isAbsoluteURL.js +0 -1
  1505. package/build/ext/axios/lib/helpers/isAxiosError.js +0 -1
  1506. package/build/ext/axios/lib/helpers/isURLSameOrigin.js +0 -1
  1507. package/build/ext/axios/lib/helpers/normalizeHeaderName.js +0 -1
  1508. package/build/ext/axios/lib/helpers/parseHeaders.js +0 -1
  1509. package/build/ext/axios/lib/helpers/spread.js +0 -1
  1510. package/build/ext/axios/lib/helpers/validator.js +0 -1
  1511. package/build/ext/axios/lib/utils.js +0 -1
  1512. package/build/ext/axios/package.json.js +0 -1
  1513. package/build/ext/classnames/index.js +0 -6
  1514. package/build/ext/country-flag-icons/modules/unicode.js +0 -1
  1515. package/build/ext/debug/src/browser.js +0 -1
  1516. package/build/ext/debug/src/common.js +0 -1
  1517. package/build/ext/debug/src/index.js +0 -1
  1518. package/build/ext/debug/src/node.js +0 -1
  1519. package/build/ext/decode-uri-component/index.js +0 -1
  1520. package/build/ext/domhandler/ext/domelementtype/lib/index.js +0 -1
  1521. package/build/ext/domhandler/lib/index.js +0 -1
  1522. package/build/ext/domhandler/lib/node.js +0 -1
  1523. package/build/ext/entities/lib/decode_codepoint.js +0 -1
  1524. package/build/ext/entities/lib/maps/decode.json.js +0 -1
  1525. package/build/ext/entities/lib/maps/entities.json.js +0 -1
  1526. package/build/ext/entities/lib/maps/legacy.json.js +0 -1
  1527. package/build/ext/entities/lib/maps/xml.json.js +0 -1
  1528. package/build/ext/follow-redirects/debug.js +0 -1
  1529. package/build/ext/follow-redirects/index.js +0 -1
  1530. package/build/ext/has-flag/index.js +0 -1
  1531. package/build/ext/html-dom-parser/index.js +0 -1
  1532. package/build/ext/html-dom-parser/lib/server/html-to-dom.js +0 -1
  1533. package/build/ext/html-dom-parser/lib/server/utilities.js +0 -1
  1534. package/build/ext/html-react-parser/index.js +0 -1
  1535. package/build/ext/html-react-parser/index.mjs.js +0 -1
  1536. package/build/ext/html-react-parser/lib/attributes-to-props.js +0 -1
  1537. package/build/ext/html-react-parser/lib/dom-to-react.js +0 -1
  1538. package/build/ext/html-react-parser/lib/utilities.js +0 -1
  1539. package/build/ext/htmlparser2/lib/Parser.js +0 -1
  1540. package/build/ext/htmlparser2/lib/Tokenizer.js +0 -1
  1541. package/build/ext/inherits/inherits.js +0 -1
  1542. package/build/ext/inherits/inherits_browser.js +0 -1
  1543. package/build/ext/inline-style-parser/index.js +0 -1
  1544. package/build/ext/input-format/modules/closeBraces.js +0 -1
  1545. package/build/ext/input-format/modules/dom.js +0 -1
  1546. package/build/ext/input-format/modules/edit.js +0 -1
  1547. package/build/ext/input-format/modules/format.js +0 -1
  1548. package/build/ext/input-format/modules/helpers.js +0 -1
  1549. package/build/ext/input-format/modules/inputControl.js +0 -1
  1550. package/build/ext/input-format/modules/parse.js +0 -1
  1551. package/build/ext/input-format/modules/react/Input.js +0 -1
  1552. package/build/ext/input-format/modules/templateFormatter.js +0 -1
  1553. package/build/ext/libphonenumber-js/es6/AsYouType.js +0 -1
  1554. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.PatternMatcher.js +0 -1
  1555. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.complete.js +0 -1
  1556. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.js +0 -1
  1557. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.util.js +0 -1
  1558. package/build/ext/libphonenumber-js/es6/AsYouTypeParser.js +0 -1
  1559. package/build/ext/libphonenumber-js/es6/AsYouTypeState.js +0 -1
  1560. package/build/ext/libphonenumber-js/es6/ParseError.js +0 -1
  1561. package/build/ext/libphonenumber-js/es6/PhoneNumber.js +0 -1
  1562. package/build/ext/libphonenumber-js/es6/constants.js +0 -1
  1563. package/build/ext/libphonenumber-js/es6/formatIncompletePhoneNumber.js +0 -1
  1564. package/build/ext/libphonenumber-js/es6/format_.js +0 -1
  1565. package/build/ext/libphonenumber-js/es6/getCountries.js +0 -1
  1566. package/build/ext/libphonenumber-js/es6/helpers/RFC3966.js +0 -1
  1567. package/build/ext/libphonenumber-js/es6/helpers/applyInternationalSeparatorStyle.js +0 -1
  1568. package/build/ext/libphonenumber-js/es6/helpers/checkNumberLength.js +0 -1
  1569. package/build/ext/libphonenumber-js/es6/helpers/extension/createExtensionPattern.js +0 -1
  1570. package/build/ext/libphonenumber-js/es6/helpers/extension/extractExtension.js +0 -1
  1571. package/build/ext/libphonenumber-js/es6/helpers/extractCountryCallingCode.js +0 -1
  1572. package/build/ext/libphonenumber-js/es6/helpers/extractCountryCallingCodeFromInternationalNumberWithoutPlusSign.js +0 -1
  1573. package/build/ext/libphonenumber-js/es6/helpers/extractNationalNumber.js +0 -1
  1574. package/build/ext/libphonenumber-js/es6/helpers/extractNationalNumberFromPossiblyIncompleteNumber.js +0 -1
  1575. package/build/ext/libphonenumber-js/es6/helpers/formatNationalNumberUsingFormat.js +0 -1
  1576. package/build/ext/libphonenumber-js/es6/helpers/getCountryByCallingCode.js +0 -1
  1577. package/build/ext/libphonenumber-js/es6/helpers/getIddPrefix.js +0 -1
  1578. package/build/ext/libphonenumber-js/es6/helpers/getNumberType.js +0 -1
  1579. package/build/ext/libphonenumber-js/es6/helpers/isViablePhoneNumber.js +0 -1
  1580. package/build/ext/libphonenumber-js/es6/helpers/matchesEntirely.js +0 -1
  1581. package/build/ext/libphonenumber-js/es6/helpers/mergeArrays.js +0 -1
  1582. package/build/ext/libphonenumber-js/es6/helpers/parseDigits.js +0 -1
  1583. package/build/ext/libphonenumber-js/es6/helpers/stripIddPrefix.js +0 -1
  1584. package/build/ext/libphonenumber-js/es6/isPossibleNumber_.js +0 -1
  1585. package/build/ext/libphonenumber-js/es6/metadata.js +0 -1
  1586. package/build/ext/libphonenumber-js/es6/parseIncompletePhoneNumber.js +0 -1
  1587. package/build/ext/libphonenumber-js/es6/parsePhoneNumber.js +0 -1
  1588. package/build/ext/libphonenumber-js/es6/parsePhoneNumberFromString.js +0 -1
  1589. package/build/ext/libphonenumber-js/es6/parsePhoneNumberFromString_.js +0 -1
  1590. package/build/ext/libphonenumber-js/es6/parsePhoneNumber_.js +0 -1
  1591. package/build/ext/libphonenumber-js/es6/parse_.js +0 -1
  1592. package/build/ext/libphonenumber-js/es6/tools/semver-compare.js +0 -1
  1593. package/build/ext/libphonenumber-js/es6/validate_.js +0 -1
  1594. package/build/ext/libphonenumber-js/metadata.min.json.js +0 -1
  1595. package/build/ext/lodash/_DataView.js +0 -1
  1596. package/build/ext/lodash/_Hash.js +0 -1
  1597. package/build/ext/lodash/_ListCache.js +0 -1
  1598. package/build/ext/lodash/_Map.js +0 -1
  1599. package/build/ext/lodash/_MapCache.js +0 -1
  1600. package/build/ext/lodash/_Promise.js +0 -1
  1601. package/build/ext/lodash/_Set.js +0 -1
  1602. package/build/ext/lodash/_SetCache.js +0 -1
  1603. package/build/ext/lodash/_Stack.js +0 -1
  1604. package/build/ext/lodash/_Symbol.js +0 -1
  1605. package/build/ext/lodash/_Uint8Array.js +0 -1
  1606. package/build/ext/lodash/_WeakMap.js +0 -1
  1607. package/build/ext/lodash/_apply.js +0 -1
  1608. package/build/ext/lodash/_arrayAggregator.js +0 -1
  1609. package/build/ext/lodash/_arrayEach.js +0 -1
  1610. package/build/ext/lodash/_arrayFilter.js +0 -1
  1611. package/build/ext/lodash/_arrayIncludes.js +0 -1
  1612. package/build/ext/lodash/_arrayIncludesWith.js +0 -1
  1613. package/build/ext/lodash/_arrayLikeKeys.js +0 -1
  1614. package/build/ext/lodash/_arrayMap.js +0 -1
  1615. package/build/ext/lodash/_arrayPush.js +0 -1
  1616. package/build/ext/lodash/_arraySome.js +0 -1
  1617. package/build/ext/lodash/_assignValue.js +0 -1
  1618. package/build/ext/lodash/_assocIndexOf.js +0 -1
  1619. package/build/ext/lodash/_baseAggregator.js +0 -1
  1620. package/build/ext/lodash/_baseAssign.js +0 -1
  1621. package/build/ext/lodash/_baseAssignIn.js +0 -1
  1622. package/build/ext/lodash/_baseAssignValue.js +0 -1
  1623. package/build/ext/lodash/_baseClone.js +0 -1
  1624. package/build/ext/lodash/_baseCreate.js +0 -1
  1625. package/build/ext/lodash/_baseEach.js +0 -1
  1626. package/build/ext/lodash/_baseFindIndex.js +0 -1
  1627. package/build/ext/lodash/_baseFlatten.js +0 -1
  1628. package/build/ext/lodash/_baseFor.js +0 -1
  1629. package/build/ext/lodash/_baseForOwn.js +0 -1
  1630. package/build/ext/lodash/_baseGet.js +0 -1
  1631. package/build/ext/lodash/_baseGetAllKeys.js +0 -1
  1632. package/build/ext/lodash/_baseGetTag.js +0 -1
  1633. package/build/ext/lodash/_baseHasIn.js +0 -1
  1634. package/build/ext/lodash/_baseIndexOf.js +0 -1
  1635. package/build/ext/lodash/_baseIsArguments.js +0 -1
  1636. package/build/ext/lodash/_baseIsEqual.js +0 -1
  1637. package/build/ext/lodash/_baseIsEqualDeep.js +0 -1
  1638. package/build/ext/lodash/_baseIsMap.js +0 -1
  1639. package/build/ext/lodash/_baseIsMatch.js +0 -1
  1640. package/build/ext/lodash/_baseIsNaN.js +0 -1
  1641. package/build/ext/lodash/_baseIsNative.js +0 -1
  1642. package/build/ext/lodash/_baseIsSet.js +0 -1
  1643. package/build/ext/lodash/_baseIsTypedArray.js +0 -1
  1644. package/build/ext/lodash/_baseIteratee.js +0 -1
  1645. package/build/ext/lodash/_baseKeys.js +0 -1
  1646. package/build/ext/lodash/_baseKeysIn.js +0 -1
  1647. package/build/ext/lodash/_baseMap.js +0 -1
  1648. package/build/ext/lodash/_baseMatches.js +0 -1
  1649. package/build/ext/lodash/_baseMatchesProperty.js +0 -1
  1650. package/build/ext/lodash/_baseOrderBy.js +0 -1
  1651. package/build/ext/lodash/_baseProperty.js +0 -1
  1652. package/build/ext/lodash/_basePropertyDeep.js +0 -1
  1653. package/build/ext/lodash/_baseRest.js +0 -1
  1654. package/build/ext/lodash/_baseSetToString.js +0 -1
  1655. package/build/ext/lodash/_baseSortBy.js +0 -1
  1656. package/build/ext/lodash/_baseTimes.js +0 -1
  1657. package/build/ext/lodash/_baseToString.js +0 -1
  1658. package/build/ext/lodash/_baseUnary.js +0 -1
  1659. package/build/ext/lodash/_baseUniq.js +0 -1
  1660. package/build/ext/lodash/_cacheHas.js +0 -1
  1661. package/build/ext/lodash/_castFunction.js +0 -1
  1662. package/build/ext/lodash/_castPath.js +0 -1
  1663. package/build/ext/lodash/_cloneArrayBuffer.js +0 -1
  1664. package/build/ext/lodash/_cloneBuffer.js +0 -1
  1665. package/build/ext/lodash/_cloneDataView.js +0 -1
  1666. package/build/ext/lodash/_cloneRegExp.js +0 -1
  1667. package/build/ext/lodash/_cloneSymbol.js +0 -1
  1668. package/build/ext/lodash/_cloneTypedArray.js +0 -1
  1669. package/build/ext/lodash/_compareAscending.js +0 -1
  1670. package/build/ext/lodash/_compareMultiple.js +0 -1
  1671. package/build/ext/lodash/_copyArray.js +0 -1
  1672. package/build/ext/lodash/_copyObject.js +0 -1
  1673. package/build/ext/lodash/_copySymbols.js +0 -1
  1674. package/build/ext/lodash/_copySymbolsIn.js +0 -1
  1675. package/build/ext/lodash/_coreJsData.js +0 -1
  1676. package/build/ext/lodash/_createAggregator.js +0 -1
  1677. package/build/ext/lodash/_createBaseEach.js +0 -1
  1678. package/build/ext/lodash/_createBaseFor.js +0 -1
  1679. package/build/ext/lodash/_createSet.js +0 -1
  1680. package/build/ext/lodash/_defineProperty.js +0 -1
  1681. package/build/ext/lodash/_equalArrays.js +0 -1
  1682. package/build/ext/lodash/_equalByTag.js +0 -1
  1683. package/build/ext/lodash/_equalObjects.js +0 -1
  1684. package/build/ext/lodash/_freeGlobal.js +0 -1
  1685. package/build/ext/lodash/_getAllKeys.js +0 -1
  1686. package/build/ext/lodash/_getAllKeysIn.js +0 -1
  1687. package/build/ext/lodash/_getMapData.js +0 -1
  1688. package/build/ext/lodash/_getMatchData.js +0 -1
  1689. package/build/ext/lodash/_getNative.js +0 -1
  1690. package/build/ext/lodash/_getPrototype.js +0 -1
  1691. package/build/ext/lodash/_getRawTag.js +0 -1
  1692. package/build/ext/lodash/_getSymbols.js +0 -1
  1693. package/build/ext/lodash/_getSymbolsIn.js +0 -1
  1694. package/build/ext/lodash/_getTag.js +0 -1
  1695. package/build/ext/lodash/_getValue.js +0 -1
  1696. package/build/ext/lodash/_hasPath.js +0 -1
  1697. package/build/ext/lodash/_hashClear.js +0 -1
  1698. package/build/ext/lodash/_hashDelete.js +0 -1
  1699. package/build/ext/lodash/_hashGet.js +0 -1
  1700. package/build/ext/lodash/_hashHas.js +0 -1
  1701. package/build/ext/lodash/_hashSet.js +0 -1
  1702. package/build/ext/lodash/_initCloneArray.js +0 -1
  1703. package/build/ext/lodash/_initCloneByTag.js +0 -1
  1704. package/build/ext/lodash/_initCloneObject.js +0 -1
  1705. package/build/ext/lodash/_isFlattenable.js +0 -1
  1706. package/build/ext/lodash/_isIndex.js +0 -1
  1707. package/build/ext/lodash/_isIterateeCall.js +0 -1
  1708. package/build/ext/lodash/_isKey.js +0 -1
  1709. package/build/ext/lodash/_isKeyable.js +0 -1
  1710. package/build/ext/lodash/_isMasked.js +0 -1
  1711. package/build/ext/lodash/_isPrototype.js +0 -1
  1712. package/build/ext/lodash/_isStrictComparable.js +0 -1
  1713. package/build/ext/lodash/_listCacheClear.js +0 -1
  1714. package/build/ext/lodash/_listCacheDelete.js +0 -1
  1715. package/build/ext/lodash/_listCacheGet.js +0 -1
  1716. package/build/ext/lodash/_listCacheHas.js +0 -1
  1717. package/build/ext/lodash/_listCacheSet.js +0 -1
  1718. package/build/ext/lodash/_mapCacheClear.js +0 -1
  1719. package/build/ext/lodash/_mapCacheDelete.js +0 -1
  1720. package/build/ext/lodash/_mapCacheGet.js +0 -1
  1721. package/build/ext/lodash/_mapCacheHas.js +0 -1
  1722. package/build/ext/lodash/_mapCacheSet.js +0 -1
  1723. package/build/ext/lodash/_mapToArray.js +0 -1
  1724. package/build/ext/lodash/_matchesStrictComparable.js +0 -1
  1725. package/build/ext/lodash/_memoizeCapped.js +0 -1
  1726. package/build/ext/lodash/_nativeCreate.js +0 -1
  1727. package/build/ext/lodash/_nativeKeys.js +0 -1
  1728. package/build/ext/lodash/_nativeKeysIn.js +0 -1
  1729. package/build/ext/lodash/_nodeUtil.js +0 -1
  1730. package/build/ext/lodash/_objectToString.js +0 -1
  1731. package/build/ext/lodash/_overArg.js +0 -1
  1732. package/build/ext/lodash/_overRest.js +0 -1
  1733. package/build/ext/lodash/_root.js +0 -1
  1734. package/build/ext/lodash/_setCacheAdd.js +0 -1
  1735. package/build/ext/lodash/_setCacheHas.js +0 -1
  1736. package/build/ext/lodash/_setToArray.js +0 -1
  1737. package/build/ext/lodash/_setToString.js +0 -1
  1738. package/build/ext/lodash/_shortOut.js +0 -1
  1739. package/build/ext/lodash/_stackClear.js +0 -1
  1740. package/build/ext/lodash/_stackDelete.js +0 -1
  1741. package/build/ext/lodash/_stackGet.js +0 -1
  1742. package/build/ext/lodash/_stackHas.js +0 -1
  1743. package/build/ext/lodash/_stackSet.js +0 -1
  1744. package/build/ext/lodash/_strictIndexOf.js +0 -1
  1745. package/build/ext/lodash/_stringToPath.js +0 -1
  1746. package/build/ext/lodash/_toKey.js +0 -1
  1747. package/build/ext/lodash/_toSource.js +0 -1
  1748. package/build/ext/lodash/cloneDeep.js +0 -1
  1749. package/build/ext/lodash/constant.js +0 -1
  1750. package/build/ext/lodash/debounce.js +0 -1
  1751. package/build/ext/lodash/eq.js +0 -1
  1752. package/build/ext/lodash/flatten.js +0 -1
  1753. package/build/ext/lodash/forEach.js +0 -1
  1754. package/build/ext/lodash/get.js +0 -1
  1755. package/build/ext/lodash/groupBy.js +0 -1
  1756. package/build/ext/lodash/hasIn.js +0 -1
  1757. package/build/ext/lodash/identity.js +0 -1
  1758. package/build/ext/lodash/isArguments.js +0 -1
  1759. package/build/ext/lodash/isArray.js +0 -1
  1760. package/build/ext/lodash/isArrayLike.js +0 -1
  1761. package/build/ext/lodash/isBuffer.js +0 -1
  1762. package/build/ext/lodash/isFunction.js +0 -1
  1763. package/build/ext/lodash/isLength.js +0 -1
  1764. package/build/ext/lodash/isMap.js +0 -1
  1765. package/build/ext/lodash/isObject.js +0 -1
  1766. package/build/ext/lodash/isObjectLike.js +0 -1
  1767. package/build/ext/lodash/isSet.js +0 -1
  1768. package/build/ext/lodash/isSymbol.js +0 -1
  1769. package/build/ext/lodash/isTypedArray.js +0 -1
  1770. package/build/ext/lodash/keys.js +0 -1
  1771. package/build/ext/lodash/keysIn.js +0 -1
  1772. package/build/ext/lodash/memoize.js +0 -1
  1773. package/build/ext/lodash/noop.js +0 -1
  1774. package/build/ext/lodash/now.js +0 -1
  1775. package/build/ext/lodash/property.js +0 -1
  1776. package/build/ext/lodash/sortBy.js +0 -1
  1777. package/build/ext/lodash/stubArray.js +0 -1
  1778. package/build/ext/lodash/stubFalse.js +0 -1
  1779. package/build/ext/lodash/toNumber.js +0 -1
  1780. package/build/ext/lodash/toString.js +0 -1
  1781. package/build/ext/lodash/uniq.js +0 -1
  1782. package/build/ext/lodash/uniqBy.js +0 -1
  1783. package/build/ext/lzutf8/build/production/lzutf8.js +0 -11
  1784. package/build/ext/ms/index.js +0 -1
  1785. package/build/ext/object-assign/index.js +0 -6
  1786. package/build/ext/prop-types/checkPropTypes.js +0 -1
  1787. package/build/ext/prop-types/factoryWithThrowingShims.js +0 -1
  1788. package/build/ext/prop-types/factoryWithTypeCheckers.js +0 -1
  1789. package/build/ext/prop-types/index.js +0 -1
  1790. package/build/ext/prop-types/lib/ReactPropTypesSecret.js +0 -1
  1791. package/build/ext/query-string/index.js +0 -1
  1792. package/build/ext/react-is/cjs/react-is.development.js +0 -9
  1793. package/build/ext/react-is/cjs/react-is.production.min.js +0 -9
  1794. package/build/ext/react-is/index.js +0 -1
  1795. package/build/ext/react-property/lib/index.js +0 -1
  1796. package/build/ext/react-property/lib/possibleStandardNamesOptimized.js +0 -1
  1797. package/build/ext/react-tooltip/dist/index.es.js +0 -1
  1798. package/build/ext/react-tooltip/ext/uuid/dist/esm-node/bytesToUuid.js +0 -1
  1799. package/build/ext/react-tooltip/ext/uuid/dist/esm-node/rng.js +0 -1
  1800. package/build/ext/react-tooltip/ext/uuid/dist/esm-node/v4.js +0 -1
  1801. package/build/ext/readable-stream/errors.js +0 -1
  1802. package/build/ext/readable-stream/lib/_registry.js +0 -1
  1803. package/build/ext/readable-stream/lib/_stream_duplex.js +0 -1
  1804. package/build/ext/readable-stream/lib/_stream_passthrough.js +0 -1
  1805. package/build/ext/readable-stream/lib/_stream_readable.js +0 -1
  1806. package/build/ext/readable-stream/lib/_stream_transform.js +0 -1
  1807. package/build/ext/readable-stream/lib/_stream_writable.js +0 -1
  1808. package/build/ext/readable-stream/lib/internal/streams/async_iterator.js +0 -1
  1809. package/build/ext/readable-stream/lib/internal/streams/buffer_list.js +0 -1
  1810. package/build/ext/readable-stream/lib/internal/streams/destroy.js +0 -1
  1811. package/build/ext/readable-stream/lib/internal/streams/end-of-stream.js +0 -1
  1812. package/build/ext/readable-stream/lib/internal/streams/from.js +0 -1
  1813. package/build/ext/readable-stream/lib/internal/streams/pipeline.js +0 -1
  1814. package/build/ext/readable-stream/lib/internal/streams/state.js +0 -1
  1815. package/build/ext/readable-stream/lib/internal/streams/stream.js +0 -1
  1816. package/build/ext/readable-stream/readable.js +0 -1
  1817. package/build/ext/safe-buffer/index.js +0 -1
  1818. package/build/ext/split-on-first/index.js +0 -1
  1819. package/build/ext/strict-uri-encode/index.js +0 -1
  1820. package/build/ext/string_decoder/lib/string_decoder.js +0 -1
  1821. package/build/ext/style-inject/dist/style-inject.es.js +0 -1
  1822. package/build/ext/style-to-js/cjs/index.js +0 -1
  1823. package/build/ext/style-to-js/cjs/utilities.js +0 -1
  1824. package/build/ext/style-to-object/index.js +0 -1
  1825. package/build/ext/supports-color/index.js +0 -1
  1826. package/build/ext/tslib/tslib.es6.js +0 -15
  1827. package/build/ext/util-deprecate/node.js +0 -1
  1828. package/build/ext/uuid/dist/esm-node/regex.js +0 -1
  1829. package/build/ext/uuid/dist/esm-node/rng.js +0 -1
  1830. package/build/ext/uuid/dist/esm-node/stringify.js +0 -1
  1831. package/build/ext/uuid/dist/esm-node/v4.js +0 -1
  1832. package/build/ext/uuid/dist/esm-node/validate.js +0 -1
  1833. package/build/ikas.cjs +0 -2
  1834. package/build/index.d.ts +0 -10
  1835. package/build/index.js +0 -1
  1836. package/build/models/data/blog/enums.d.ts +0 -2
  1837. package/build/models/data/blog/index.d.ts +0 -33
  1838. package/build/models/data/blog/index.js +0 -1
  1839. package/build/models/data/brand/enums.d.ts +0 -2
  1840. package/build/models/data/brand/index.d.ts +0 -17
  1841. package/build/models/data/brand/index.js +0 -1
  1842. package/build/models/data/cart/campaign-offer/enums.d.ts +0 -3
  1843. package/build/models/data/cart/campaign-offer/index.d.ts +0 -8
  1844. package/build/models/data/cart/campaign-offer/index.js +0 -1
  1845. package/build/models/data/cart/enums.d.ts +0 -2
  1846. package/build/models/data/cart/index.d.ts +0 -20
  1847. package/build/models/data/cart/index.js +0 -1
  1848. package/build/models/data/category/enums.d.ts +0 -2
  1849. package/build/models/data/category/index.d.ts +0 -39
  1850. package/build/models/data/category/index.js +0 -1
  1851. package/build/models/data/checkout/index.d.ts +0 -18
  1852. package/build/models/data/checkout/index.js +0 -1
  1853. package/build/models/data/checkout-settings/enums.d.ts +0 -2
  1854. package/build/models/data/checkout-settings/index.d.ts +0 -13
  1855. package/build/models/data/checkout-settings/index.js +0 -1
  1856. package/build/models/data/city/index.d.ts +0 -3
  1857. package/build/models/data/city/index.js +0 -1
  1858. package/build/models/data/contact-form/index.d.ts +0 -7
  1859. package/build/models/data/contact-form/index.js +0 -1
  1860. package/build/models/data/country/index.d.ts +0 -3
  1861. package/build/models/data/country/index.js +0 -1
  1862. package/build/models/data/customer/address/index.d.ts +0 -55
  1863. package/build/models/data/customer/address/index.js +0 -1
  1864. package/build/models/data/customer/attribute-value/index.d.ts +0 -7
  1865. package/build/models/data/customer/attribute-value/index.js +0 -1
  1866. package/build/models/data/customer/enums.d.ts +0 -4
  1867. package/build/models/data/customer/index.d.ts +0 -39
  1868. package/build/models/data/customer/index.js +0 -1
  1869. package/build/models/data/customer-attribute/customer-attribute-option/index.d.ts +0 -3
  1870. package/build/models/data/customer-attribute/customer-attribute-option/index.js +0 -1
  1871. package/build/models/data/customer-attribute/customer-attribute-sales-channel/enums.d.ts +0 -3
  1872. package/build/models/data/customer-attribute/customer-attribute-sales-channel/index.d.ts +0 -8
  1873. package/build/models/data/customer-attribute/customer-attribute-sales-channel/index.js +0 -1
  1874. package/build/models/data/customer-attribute/enums.d.ts +0 -2
  1875. package/build/models/data/customer-attribute/index.d.ts +0 -22
  1876. package/build/models/data/customer-attribute/index.js +0 -1
  1877. package/build/models/data/customer-review/enums.d.ts +0 -2
  1878. package/build/models/data/customer-review/index.d.ts +0 -11
  1879. package/build/models/data/customer-review/index.js +0 -1
  1880. package/build/models/data/customer-review-summary/index.d.ts +0 -8
  1881. package/build/models/data/customer-review-summary/index.js +0 -1
  1882. package/build/models/data/district/index.d.ts +0 -3
  1883. package/build/models/data/district/index.js +0 -1
  1884. package/build/models/data/favorite-product/index.d.ts +0 -3
  1885. package/build/models/data/favorite-product/index.js +0 -1
  1886. package/build/models/data/html-meta-data/enums.d.ts +0 -2
  1887. package/build/models/data/html-meta-data/index.d.ts +0 -12
  1888. package/build/models/data/html-meta-data/index.js +0 -1
  1889. package/build/models/data/image/index.d.ts +0 -19
  1890. package/build/models/data/image/index.js +0 -1
  1891. package/build/models/data/index.d.ts +0 -65
  1892. package/build/models/data/merchant-settings/index.d.ts +0 -6
  1893. package/build/models/data/merchant-settings/index.js +0 -1
  1894. package/build/models/data/order/address/index.d.ts +0 -51
  1895. package/build/models/data/order/address/index.js +0 -1
  1896. package/build/models/data/order/adjustment/enums.d.ts +0 -4
  1897. package/build/models/data/order/adjustment/index.d.ts +0 -9
  1898. package/build/models/data/order/adjustment/index.js +0 -1
  1899. package/build/models/data/order/customer/index.d.ts +0 -10
  1900. package/build/models/data/order/customer/index.js +0 -1
  1901. package/build/models/data/order/enums.d.ts +0 -6
  1902. package/build/models/data/order/gift-line/index.d.ts +0 -3
  1903. package/build/models/data/order/gift-line/index.js +0 -1
  1904. package/build/models/data/order/index.d.ts +0 -54
  1905. package/build/models/data/order/index.js +0 -1
  1906. package/build/models/data/order/invoice/enums.d.ts +0 -2
  1907. package/build/models/data/order/invoice/index.d.ts +0 -7
  1908. package/build/models/data/order/invoice/index.js +0 -1
  1909. package/build/models/data/order/line-item/discount/index.d.ts +0 -6
  1910. package/build/models/data/order/line-item/discount/index.js +0 -1
  1911. package/build/models/data/order/line-item/enums.d.ts +0 -2
  1912. package/build/models/data/order/line-item/index.d.ts +0 -21
  1913. package/build/models/data/order/line-item/index.js +0 -1
  1914. package/build/models/data/order/line-item/option/index.d.ts +0 -9
  1915. package/build/models/data/order/line-item/option/index.js +0 -1
  1916. package/build/models/data/order/line-item/option/value/index.d.ts +0 -3
  1917. package/build/models/data/order/line-item/option/value/index.js +0 -1
  1918. package/build/models/data/order/line-item/variant/index.d.ts +0 -22
  1919. package/build/models/data/order/line-item/variant/index.js +0 -1
  1920. package/build/models/data/order/package/enums.d.ts +0 -2
  1921. package/build/models/data/order/package/index.d.ts +0 -9
  1922. package/build/models/data/order/package/index.js +0 -1
  1923. package/build/models/data/order/package/tracking-info/index.d.ts +0 -3
  1924. package/build/models/data/order/package/tracking-info/index.js +0 -1
  1925. package/build/models/data/order/payment-method/enums.d.ts +0 -2
  1926. package/build/models/data/order/payment-method/index.d.ts +0 -7
  1927. package/build/models/data/order/payment-method/index.js +0 -1
  1928. package/build/models/data/order/refund/index.d.ts +0 -6
  1929. package/build/models/data/order/refund/index.js +0 -1
  1930. package/build/models/data/order/refund/line-item/index.d.ts +0 -3
  1931. package/build/models/data/order/refund/line-item/index.js +0 -1
  1932. package/build/models/data/order/refund/settings/index.d.ts +0 -6
  1933. package/build/models/data/order/refund/settings/index.js +0 -1
  1934. package/build/models/data/order/shipping-line/index.d.ts +0 -3
  1935. package/build/models/data/order/shipping-line/index.js +0 -1
  1936. package/build/models/data/order/tax-line/index.d.ts +0 -3
  1937. package/build/models/data/order/tax-line/index.js +0 -1
  1938. package/build/models/data/order/transaction/enums.d.ts +0 -5
  1939. package/build/models/data/order/transaction/index.d.ts +0 -37
  1940. package/build/models/data/order/transaction/index.js +0 -1
  1941. package/build/models/data/payment-gateway/additional-price/index.d.ts +0 -7
  1942. package/build/models/data/payment-gateway/additional-price/index.js +0 -1
  1943. package/build/models/data/payment-gateway/enums.d.ts +0 -5
  1944. package/build/models/data/payment-gateway/index.d.ts +0 -37
  1945. package/build/models/data/payment-gateway/index.js +0 -1
  1946. package/build/models/data/product/attribute-value/index.d.ts +0 -20
  1947. package/build/models/data/product/attribute-value/index.js +0 -1
  1948. package/build/models/data/product/index.d.ts +0 -36
  1949. package/build/models/data/product/index.js +0 -1
  1950. package/build/models/data/product/variant/index.d.ts +0 -27
  1951. package/build/models/data/product/variant/index.js +0 -1
  1952. package/build/models/data/product/variant/price/index.d.ts +0 -9
  1953. package/build/models/data/product/variant/price/index.js +0 -1
  1954. package/build/models/data/product/variant-type/index.d.ts +0 -6
  1955. package/build/models/data/product/variant-type/index.js +0 -1
  1956. package/build/models/data/product-attribute/index.d.ts +0 -34
  1957. package/build/models/data/product-attribute/index.js +0 -1
  1958. package/build/models/data/product-attribute/option/index.d.ts +0 -5
  1959. package/build/models/data/product-attribute/option/index.js +0 -1
  1960. package/build/models/data/product-attribute/table-cell/index.d.ts +0 -5
  1961. package/build/models/data/product-attribute/table-cell/index.js +0 -1
  1962. package/build/models/data/product-attribute/table-template/index.d.ts +0 -6
  1963. package/build/models/data/product-attribute/table-template/index.js +0 -1
  1964. package/build/models/data/product-back-in-stock-settings/index.d.ts +0 -3
  1965. package/build/models/data/product-campaign/campaign/index.d.ts +0 -41
  1966. package/build/models/data/product-campaign/campaign/index.js +0 -1
  1967. package/build/models/data/product-campaign/filter/index.d.ts +0 -13
  1968. package/build/models/data/product-campaign/filter/index.js +0 -1
  1969. package/build/models/data/product-campaign/index.d.ts +0 -6
  1970. package/build/models/data/product-campaign/index.js +0 -1
  1971. package/build/models/data/product-campaign/product-buyx-then-gety/index.d.ts +0 -19
  1972. package/build/models/data/product-campaign/product-buyx-then-gety/index.js +0 -1
  1973. package/build/models/data/product-campaign/product-campaign-date-range-field/index.d.ts +0 -5
  1974. package/build/models/data/product-campaign/product-campaign-date-range-field/index.js +0 -1
  1975. package/build/models/data/product-campaign/product-fixed-discount/index.d.ts +0 -13
  1976. package/build/models/data/product-campaign/product-fixed-discount/index.js +0 -1
  1977. package/build/models/data/product-filter/index.d.ts +0 -113
  1978. package/build/models/data/product-filter/index.js +0 -1
  1979. package/build/models/data/product-option-set/enums.d.ts +0 -3
  1980. package/build/models/data/product-option-set/index.d.ts +0 -102
  1981. package/build/models/data/product-option-set/index.js +0 -1
  1982. package/build/models/data/product-tag/index.d.ts +0 -5
  1983. package/build/models/data/product-tag/index.js +0 -1
  1984. package/build/models/data/raffle/index.d.ts +0 -68
  1985. package/build/models/data/raffle/index.js +0 -1
  1986. package/build/models/data/sales-channel/index.d.ts +0 -18
  1987. package/build/models/data/sales-channel/index.js +0 -1
  1988. package/build/models/data/slider/index.d.ts +0 -5
  1989. package/build/models/data/slider/index.js +0 -1
  1990. package/build/models/data/state/index.d.ts +0 -3
  1991. package/build/models/data/state/index.js +0 -1
  1992. package/build/models/data/storefront/domain/index.d.ts +0 -8
  1993. package/build/models/data/storefront/domain/index.js +0 -1
  1994. package/build/models/data/storefront/index.d.ts +0 -27
  1995. package/build/models/data/storefront/index.js +0 -1
  1996. package/build/models/data/storefront/localization/index.d.ts +0 -7
  1997. package/build/models/data/storefront/localization/index.js +0 -1
  1998. package/build/models/data/storefront/routing/dynamic-currency/index.d.ts +0 -5
  1999. package/build/models/data/storefront/routing/dynamic-currency/index.js +0 -1
  2000. package/build/models/data/storefront/routing/index.d.ts +0 -11
  2001. package/build/models/data/storefront/routing/index.js +0 -1
  2002. package/build/models/data/storefront/theme/index.d.ts +0 -13
  2003. package/build/models/data/storefront/theme/index.js +0 -1
  2004. package/build/models/data/storefront/theme-localization/index.d.ts +0 -12
  2005. package/build/models/data/storefront/theme-localization/index.js +0 -1
  2006. package/build/models/data/variant-type/index.d.ts +0 -26
  2007. package/build/models/data/variant-type/index.js +0 -1
  2008. package/build/models/data/variant-type/variant-value/index.d.ts +0 -11
  2009. package/build/models/data/variant-type/variant-value/index.js +0 -1
  2010. package/build/models/index.d.ts +0 -3
  2011. package/build/models/theme/component/index.d.ts +0 -19
  2012. package/build/models/theme/component/index.js +0 -1
  2013. package/build/models/theme/component/prop/index.d.ts +0 -63
  2014. package/build/models/theme/component/prop/index.js +0 -1
  2015. package/build/models/theme/custom-data/index.d.ts +0 -43
  2016. package/build/models/theme/custom-data/index.js +0 -1
  2017. package/build/models/theme/index.d.ts +0 -20
  2018. package/build/models/theme/page/component/index.d.ts +0 -6
  2019. package/build/models/theme/page/component/index.js +0 -1
  2020. package/build/models/theme/page/component/prop-value/attribute-list.d.ts +0 -7
  2021. package/build/models/theme/page/component/prop-value/attribute.d.ts +0 -7
  2022. package/build/models/theme/page/component/prop-value/blog-category-list.d.ts +0 -7
  2023. package/build/models/theme/page/component/prop-value/blog-category-list.js +0 -1
  2024. package/build/models/theme/page/component/prop-value/blog-category.d.ts +0 -5
  2025. package/build/models/theme/page/component/prop-value/blog-category.js +0 -1
  2026. package/build/models/theme/page/component/prop-value/blog-list.d.ts +0 -9
  2027. package/build/models/theme/page/component/prop-value/blog-list.js +0 -1
  2028. package/build/models/theme/page/component/prop-value/blog.d.ts +0 -5
  2029. package/build/models/theme/page/component/prop-value/blog.js +0 -1
  2030. package/build/models/theme/page/component/prop-value/brand-list.d.ts +0 -9
  2031. package/build/models/theme/page/component/prop-value/brand-list.js +0 -1
  2032. package/build/models/theme/page/component/prop-value/brand.d.ts +0 -5
  2033. package/build/models/theme/page/component/prop-value/brand.js +0 -1
  2034. package/build/models/theme/page/component/prop-value/category-list.d.ts +0 -9
  2035. package/build/models/theme/page/component/prop-value/category-list.js +0 -1
  2036. package/build/models/theme/page/component/prop-value/category.d.ts +0 -5
  2037. package/build/models/theme/page/component/prop-value/category.js +0 -1
  2038. package/build/models/theme/page/component/prop-value/link.d.ts +0 -19
  2039. package/build/models/theme/page/component/prop-value/link.js +0 -1
  2040. package/build/models/theme/page/component/prop-value/product-detail.d.ts +0 -6
  2041. package/build/models/theme/page/component/prop-value/product-detail.js +0 -1
  2042. package/build/models/theme/page/component/prop-value/product-list.d.ts +0 -18
  2043. package/build/models/theme/page/component/prop-value/product-list.js +0 -1
  2044. package/build/models/theme/page/component/prop-value/raffle-list.d.ts +0 -5
  2045. package/build/models/theme/page/component/prop-value/raffle-list.js +0 -1
  2046. package/build/models/theme/page/component/prop-value/raffle.d.ts +0 -5
  2047. package/build/models/theme/page/component/prop-value/raffle.js +0 -1
  2048. package/build/models/theme/page/index.d.ts +0 -45
  2049. package/build/models/theme/page/index.js +0 -1
  2050. package/build/models/theme/settings/color/index.d.ts +0 -14
  2051. package/build/models/theme/settings/color/index.js +0 -1
  2052. package/build/models/theme/settings/favicon/index.d.ts +0 -4
  2053. package/build/models/theme/settings/favicon/index.js +0 -1
  2054. package/build/models/theme/settings/font-family/index.d.ts +0 -5
  2055. package/build/models/theme/settings/font-family/index.js +0 -1
  2056. package/build/models/theme/settings/index.d.ts +0 -15
  2057. package/build/models/theme/settings/index.js +0 -1
  2058. package/build/models/theme/theme.d.ts +0 -16
  2059. package/build/models/theme/theme.js +0 -1
  2060. package/build/models/ui/blog-category-list/index.d.ts +0 -52
  2061. package/build/models/ui/blog-category-list/index.js +0 -1
  2062. package/build/models/ui/blog-list/index.d.ts +0 -56
  2063. package/build/models/ui/blog-list/index.js +0 -1
  2064. package/build/models/ui/brand-list/index.d.ts +0 -61
  2065. package/build/models/ui/brand-list/index.js +0 -1
  2066. package/build/models/ui/category-list/index.d.ts +0 -61
  2067. package/build/models/ui/category-list/index.js +0 -1
  2068. package/build/models/ui/component-renderer/index.d.ts +0 -7
  2069. package/build/models/ui/component-renderer/index.js +0 -1
  2070. package/build/models/ui/customer-review-list/index.d.ts +0 -43
  2071. package/build/models/ui/customer-review-list/index.js +0 -1
  2072. package/build/models/ui/customer-review-summary-list/index.d.ts +0 -43
  2073. package/build/models/ui/customer-review-summary-list/index.js +0 -1
  2074. package/build/models/ui/index.d.ts +0 -27
  2075. package/build/models/ui/navigation-link/index.d.ts +0 -8
  2076. package/build/models/ui/navigation-link/index.js +0 -1
  2077. package/build/models/ui/product-attribute-detail/index.d.ts +0 -8
  2078. package/build/models/ui/product-attribute-detail/index.js +0 -1
  2079. package/build/models/ui/product-attribute-list/index.d.ts +0 -9
  2080. package/build/models/ui/product-attribute-list/index.js +0 -1
  2081. package/build/models/ui/product-detail/index.d.ts +0 -39
  2082. package/build/models/ui/product-detail/index.js +0 -1
  2083. package/build/models/ui/product-list/index.d.ts +0 -141
  2084. package/build/models/ui/product-list/index.js +0 -1
  2085. package/build/models/ui/raffle-list/index.d.ts +0 -54
  2086. package/build/models/ui/raffle-list/index.js +0 -1
  2087. package/build/models/ui/validator/form/account-info.d.ts +0 -42
  2088. package/build/models/ui/validator/form/account-info.js +0 -1
  2089. package/build/models/ui/validator/form/address.d.ts +0 -78
  2090. package/build/models/ui/validator/form/address.js +0 -1
  2091. package/build/models/ui/validator/form/contact-form.d.ts +0 -45
  2092. package/build/models/ui/validator/form/contact-form.js +0 -1
  2093. package/build/models/ui/validator/form/customer-review.d.ts +0 -37
  2094. package/build/models/ui/validator/form/customer-review.js +0 -1
  2095. package/build/models/ui/validator/form/forgot-password.d.ts +0 -29
  2096. package/build/models/ui/validator/form/forgot-password.js +0 -1
  2097. package/build/models/ui/validator/form/login.d.ts +0 -35
  2098. package/build/models/ui/validator/form/login.js +0 -1
  2099. package/build/models/ui/validator/form/raffle-form.d.ts +0 -60
  2100. package/build/models/ui/validator/form/raffle-form.js +0 -1
  2101. package/build/models/ui/validator/form/recover-password.d.ts +0 -36
  2102. package/build/models/ui/validator/form/recover-password.js +0 -1
  2103. package/build/models/ui/validator/form/register.d.ts +0 -52
  2104. package/build/models/ui/validator/form/register.js +0 -1
  2105. package/build/models/ui/validator/index.d.ts +0 -27
  2106. package/build/models/ui/validator/index.js +0 -1
  2107. package/build/models/ui/validator/rules/index.d.ts +0 -91
  2108. package/build/models/ui/validator/rules/index.js +0 -1
  2109. package/build/pages/404.d.ts +0 -6
  2110. package/build/pages/404.js +0 -1
  2111. package/build/pages/[slug]/index.d.ts +0 -7
  2112. package/build/pages/_slug_/index.js +0 -1
  2113. package/build/pages/account/addresses.d.ts +0 -6
  2114. package/build/pages/account/addresses.js +0 -1
  2115. package/build/pages/account/favorite-products.d.ts +0 -6
  2116. package/build/pages/account/favorite-products.js +0 -1
  2117. package/build/pages/account/forgot-password.d.ts +0 -6
  2118. package/build/pages/account/forgot-password.js +0 -1
  2119. package/build/pages/account/index.d.ts +0 -6
  2120. package/build/pages/account/index.js +0 -1
  2121. package/build/pages/account/login.d.ts +0 -6
  2122. package/build/pages/account/login.js +0 -1
  2123. package/build/pages/account/orders/[id].d.ts +0 -6
  2124. package/build/pages/account/orders/_id_.js +0 -1
  2125. package/build/pages/account/orders/index.d.ts +0 -6
  2126. package/build/pages/account/orders/index.js +0 -1
  2127. package/build/pages/account/raffles.d.ts +0 -6
  2128. package/build/pages/account/raffles.js +0 -1
  2129. package/build/pages/account/recover-password.d.ts +0 -6
  2130. package/build/pages/account/recover-password.js +0 -1
  2131. package/build/pages/account/register.d.ts +0 -6
  2132. package/build/pages/account/register.js +0 -1
  2133. package/build/pages/blog/[slug].d.ts +0 -7
  2134. package/build/pages/blog/_slug_.js +0 -1
  2135. package/build/pages/blog/index.d.ts +0 -6
  2136. package/build/pages/blog/index.js +0 -1
  2137. package/build/pages/cart.d.ts +0 -6
  2138. package/build/pages/cart.js +0 -1
  2139. package/build/pages/checkout.d.ts +0 -18
  2140. package/build/pages/checkout.js +0 -1
  2141. package/build/pages/editor.d.ts +0 -10
  2142. package/build/pages/editor.js +0 -1
  2143. package/build/pages/home.d.ts +0 -6
  2144. package/build/pages/home.js +0 -1
  2145. package/build/pages/index.d.ts +0 -22
  2146. package/build/pages/pages/[slug].d.ts +0 -7
  2147. package/build/pages/pages/_slug_.js +0 -1
  2148. package/build/pages/raffle/[slug].d.ts +0 -7
  2149. package/build/pages/raffle/_slug_.js +0 -1
  2150. package/build/pages/raffle/index.d.ts +0 -6
  2151. package/build/pages/raffle/index.js +0 -1
  2152. package/build/pages/search.d.ts +0 -6
  2153. package/build/pages/search.js +0 -1
  2154. package/build/providers/helpers/raffles.d.ts +0 -2
  2155. package/build/providers/helpers/raffles.js +0 -1
  2156. package/build/providers/page-data-get.d.ts +0 -70
  2157. package/build/providers/page-data-get.js +0 -1
  2158. package/build/providers/page-data-init.d.ts +0 -66
  2159. package/build/providers/page-data-init.js +0 -1
  2160. package/build/providers/page-data-next.d.ts +0 -292
  2161. package/build/providers/page-data-next.js +0 -1
  2162. package/build/providers/placeholders.d.ts +0 -7
  2163. package/build/providers/placeholders.js +0 -1
  2164. package/build/providers/prop-value/attribute-list.d.ts +0 -12
  2165. package/build/providers/prop-value/attribute-list.js +0 -1
  2166. package/build/providers/prop-value/attribute.d.ts +0 -12
  2167. package/build/providers/prop-value/attribute.js +0 -1
  2168. package/build/providers/prop-value/blog-category-list.d.ts +0 -7
  2169. package/build/providers/prop-value/blog-category-list.js +0 -1
  2170. package/build/providers/prop-value/blog-category.d.ts +0 -11
  2171. package/build/providers/prop-value/blog-category.js +0 -1
  2172. package/build/providers/prop-value/blog-list.d.ts +0 -9
  2173. package/build/providers/prop-value/blog-list.js +0 -1
  2174. package/build/providers/prop-value/blog.d.ts +0 -11
  2175. package/build/providers/prop-value/blog.js +0 -1
  2176. package/build/providers/prop-value/boolean.d.ts +0 -6
  2177. package/build/providers/prop-value/boolean.js +0 -1
  2178. package/build/providers/prop-value/brand-list.d.ts +0 -7
  2179. package/build/providers/prop-value/brand-list.js +0 -1
  2180. package/build/providers/prop-value/brand.d.ts +0 -11
  2181. package/build/providers/prop-value/brand.js +0 -1
  2182. package/build/providers/prop-value/category-list.d.ts +0 -7
  2183. package/build/providers/prop-value/category-list.js +0 -1
  2184. package/build/providers/prop-value/category.d.ts +0 -11
  2185. package/build/providers/prop-value/category.js +0 -1
  2186. package/build/providers/prop-value/color.d.ts +0 -6
  2187. package/build/providers/prop-value/color.js +0 -1
  2188. package/build/providers/prop-value/custom.d.ts +0 -45
  2189. package/build/providers/prop-value/custom.js +0 -1
  2190. package/build/providers/prop-value/image-list.d.ts +0 -7
  2191. package/build/providers/prop-value/image-list.js +0 -1
  2192. package/build/providers/prop-value/image.d.ts +0 -7
  2193. package/build/providers/prop-value/image.js +0 -1
  2194. package/build/providers/prop-value/index.d.ts +0 -3
  2195. package/build/providers/prop-value/link.d.ts +0 -16
  2196. package/build/providers/prop-value/link.js +0 -1
  2197. package/build/providers/prop-value/product-detail.d.ts +0 -11
  2198. package/build/providers/prop-value/product-detail.js +0 -1
  2199. package/build/providers/prop-value/product-list.d.ts +0 -15
  2200. package/build/providers/prop-value/product-list.js +0 -1
  2201. package/build/providers/prop-value/raffle-list.d.ts +0 -5
  2202. package/build/providers/prop-value/raffle-list.js +0 -1
  2203. package/build/providers/prop-value/raffle.d.ts +0 -11
  2204. package/build/providers/prop-value/raffle.js +0 -1
  2205. package/build/providers/prop-value/rich-text.d.ts +0 -6
  2206. package/build/providers/prop-value/rich-text.js +0 -1
  2207. package/build/providers/prop-value/slider.d.ts +0 -11
  2208. package/build/providers/prop-value/slider.js +0 -1
  2209. package/build/providers/prop-value/text.d.ts +0 -6
  2210. package/build/providers/prop-value/text.js +0 -1
  2211. package/build/scripts/generators/api/index.d.ts +0 -5
  2212. package/build/scripts/generators/api/index.js +0 -1
  2213. package/build/scripts/generators/api/info.d.ts +0 -12
  2214. package/build/scripts/generators/api/info.js +0 -1
  2215. package/build/scripts/generators/components/index.d.ts +0 -6
  2216. package/build/scripts/generators/components/index.js +0 -1
  2217. package/build/scripts/generators/config/content.d.ts +0 -42
  2218. package/build/scripts/generators/config/content.js +0 -1
  2219. package/build/scripts/generators/config/index.d.ts +0 -8
  2220. package/build/scripts/generators/config/index.js +0 -1
  2221. package/build/scripts/generators/index.d.ts +0 -7
  2222. package/build/scripts/generators/pages/index.d.ts +0 -7
  2223. package/build/scripts/generators/pages/index.js +0 -1
  2224. package/build/scripts/generators/pages/info.d.ts +0 -14
  2225. package/build/scripts/generators/pages/info.js +0 -1
  2226. package/build/scripts/generators/store/content.d.ts +0 -1
  2227. package/build/scripts/generators/store/content.js +0 -1
  2228. package/build/scripts/generators/store/index.d.ts +0 -3
  2229. package/build/scripts/generators/store/index.js +0 -1
  2230. package/build/scripts/generators/theme/index.d.ts +0 -6
  2231. package/build/scripts/generators/theme/index.js +0 -1
  2232. package/build/scripts/generators/types/index.d.ts +0 -22
  2233. package/build/scripts/generators/types/index.js +0 -1
  2234. package/build/scripts/ikas.d.ts +0 -2
  2235. package/build/store/base.d.ts +0 -29
  2236. package/build/store/base.js +0 -1
  2237. package/build/store/blog/index.d.ts +0 -28
  2238. package/build/store/blog/index.js +0 -1
  2239. package/build/store/brand/index.d.ts +0 -12
  2240. package/build/store/brand/index.js +0 -1
  2241. package/build/store/cart/api.d.ts +0 -14
  2242. package/build/store/cart/api.js +0 -1
  2243. package/build/store/cart/index.d.ts +0 -28
  2244. package/build/store/cart/index.js +0 -1
  2245. package/build/store/category/index.d.ts +0 -12
  2246. package/build/store/category/index.js +0 -1
  2247. package/build/store/checkout/index.d.ts +0 -26
  2248. package/build/store/checkout/index.js +0 -1
  2249. package/build/store/customer/api.d.ts +0 -82
  2250. package/build/store/customer/api.js +0 -1
  2251. package/build/store/customer/index.d.ts +0 -79
  2252. package/build/store/customer/index.js +0 -1
  2253. package/build/store/html-meta-data/index.d.ts +0 -6
  2254. package/build/store/html-meta-data/index.js +0 -1
  2255. package/build/store/index.d.ts +0 -1
  2256. package/build/store/location/index.d.ts +0 -13
  2257. package/build/store/location/index.js +0 -1
  2258. package/build/store/merchant/index.d.ts +0 -6
  2259. package/build/store/merchant/index.js +0 -1
  2260. package/build/store/product/index.d.ts +0 -45
  2261. package/build/store/product/index.js +0 -1
  2262. package/build/store/raffle/index.d.ts +0 -18
  2263. package/build/store/raffle/index.js +0 -1
  2264. package/build/store/storefront/index.d.ts +0 -6
  2265. package/build/store/storefront/index.js +0 -1
  2266. package/build/storefront/index.d.ts +0 -67
  2267. package/build/storefront/index.js +0 -1
  2268. package/build/utils/constants.d.ts +0 -2
  2269. package/build/utils/constants.js +0 -1
  2270. package/build/utils/currency.d.ts +0 -7
  2271. package/build/utils/currency.js +0 -1
  2272. package/build/utils/fs.d.ts +0 -28
  2273. package/build/utils/fs.js +0 -1
  2274. package/build/utils/google-fonts.d.ts +0 -2
  2275. package/build/utils/google-fonts.js +0 -1
  2276. package/build/utils/helper.d.ts +0 -11
  2277. package/build/utils/helper.js +0 -1
  2278. package/build/utils/i18n.d.ts +0 -20
  2279. package/build/utils/i18n.js +0 -1
  2280. package/build/utils/index.d.ts +0 -3
@@ -1 +0,0 @@
1
- import e from"./_defineProperty.js";var r=e,o=function(e,o,a){"__proto__"==o&&r?r(e,o,{configurable:!0,enumerable:!0,value:a,writable:!0}):e[o]=a};export{o as default};
@@ -1 +0,0 @@
1
- import o from"./_Symbol.js";import t from"./_getRawTag.js";import r from"./_objectToString.js";var e=t,i=r,n=o?o.toStringTag:void 0,j=function(o){return null==o?void 0===o?"[object Undefined]":"[object Null]":n&&n in Object(o)?e(o):i(o)};export{j as default};
@@ -1 +0,0 @@
1
- import t from"./isFunction.js";import o from"./_isMasked.js";import r from"./isObject.js";import e from"./_toSource.js";var p=t,n=o,s=r,c=e,i=/^\[object .+?Constructor\]$/,a=Function.prototype,f=Object.prototype,m=a.toString,u=f.hasOwnProperty,j=RegExp("^"+m.call(u).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),l=function(t){return!(!s(t)||n(t))&&(p(t)?j:i).test(c(t))};export{l as default};
@@ -1 +0,0 @@
1
- import r from"./_assignValue.js";import o from"./_castPath.js";import t from"./_isIndex.js";import i from"./isObject.js";import s from"./_toKey.js";var e=r,f=o,a=t,m=i,n=s,p=function(r,o,t,i){if(!m(r))return r;for(var s=-1,p=(o=f(o,r)).length,u=p-1,_=r;null!=_&&++s<p;){var j=n(o[s]),v=t;if("__proto__"===j||"constructor"===j||"prototype"===j)return r;if(s!=u){var c=_[j];void 0===(v=i?i(c,j,_):void 0)&&(v=m(c)?c:a(o[s+1])?[]:{})}e(_,j,v),_=_[j]}return r};export{p as default};
@@ -1 +0,0 @@
1
- import r from"./_Symbol.js";import o from"./_arrayMap.js";import t from"./isArray.js";import i from"./isSymbol.js";var f=o,m=t,a=i,p=r?r.prototype:void 0,e=p?p.toString:void 0,n=function r(o){if("string"==typeof o)return o;if(m(o))return f(o,r)+"";if(a(o))return e?e.call(o):"";var t=o+"";return"0"==t&&1/o==-1/0?"-0":t};export{n as default};
@@ -1 +0,0 @@
1
- import r from"./isArray.js";import o from"./_isKey.js";import t from"./_stringToPath.js";import i from"./toString.js";var m=r,s=o,f=t,a=i,n=function(r,o){return m(r)?r:s(r,o)?[r]:f(a(r))};export{n as default};
@@ -1 +0,0 @@
1
- import r from"./_root.js";var o=r["__core-js_shared__"];export{o as default};
@@ -1 +0,0 @@
1
- import t from"./_getNative.js";var r=t,e=function(){try{var t=r(Object,"defineProperty");return t({},"",{}),t}catch(t){}}();export{e as default};
@@ -1 +0,0 @@
1
- import{commonjsGlobal as o}from"../../_virtual/_commonjsHelpers.js";var e="object"==typeof o&&o&&o.Object===Object&&o;export{e as default};
@@ -1 +0,0 @@
1
- import a from"./_isKeyable.js";var r=a,t=function(a,t){var e=a.__data__;return r(t)?e["string"==typeof t?"string":"hash"]:e.map};export{t as default};
@@ -1 +0,0 @@
1
- import r from"./_baseIsNative.js";import t from"./_getValue.js";var a=r,e=t,o=function(r,t){var o=e(r,t);return a(o)?o:void 0};export{o as default};
@@ -1 +0,0 @@
1
- import t from"./_Symbol.js";var r=t,o=Object.prototype,a=o.hasOwnProperty,e=o.toString,l=r?r.toStringTag:void 0,c=function(t){var r=a.call(t,l),o=t[l];try{t[l]=void 0;var c=!0}catch(t){}var i=e.call(t);return c&&(r?t[l]=o:delete t[l]),i};export{c as default};
@@ -1 +0,0 @@
1
- var n=function(n,r){return null==n?void 0:n[r]};export{n as default};
@@ -1 +0,0 @@
1
- import t from"./_nativeCreate.js";var a=t,e=function(){this.__data__=a?a(null):{},this.size=0};export{e as default};
@@ -1 +0,0 @@
1
- var t=function(t){var a=this.has(t)&&delete this.__data__[t];return this.size-=a?1:0,a};export{t as default};
@@ -1 +0,0 @@
1
- import r from"./_nativeCreate.js";var t=r,a=Object.prototype.hasOwnProperty,e=function(r){var e=this.__data__;if(t){var _=e[r];return"__lodash_hash_undefined__"===_?void 0:_}return a.call(e,r)?e[r]:void 0};export{e as default};
@@ -1 +0,0 @@
1
- import t from"./_nativeCreate.js";var r=t,a=Object.prototype.hasOwnProperty,e=function(t){var e=this.__data__;return r?void 0!==e[t]:a.call(e,t)};export{e as default};
@@ -1 +0,0 @@
1
- import t from"./_nativeCreate.js";var a=t,_=function(t,_){var i=this.__data__;return this.size+=this.has(t)?0:1,i[t]=a&&void 0===_?"__lodash_hash_undefined__":_,this};export{_ as default};
@@ -1 +0,0 @@
1
- var t=/^(?:0|[1-9]\d*)$/,e=function(e,r){var n=typeof e;return!!(r=null==r?9007199254740991:r)&&("number"==n||"symbol"!=n&&t.test(e))&&e>-1&&e%1==0&&e<r};export{e as default};
@@ -1 +0,0 @@
1
- import r from"./isArray.js";import t from"./isSymbol.js";var o=r,e=t,n=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,l=/^\w*$/,s=function(r,t){if(o(r))return!1;var s=typeof r;return!("number"!=s&&"symbol"!=s&&"boolean"!=s&&null!=r&&!e(r))||l.test(r)||!n.test(r)||null!=t&&r in Object(t)};export{s as default};
@@ -1 +0,0 @@
1
- var o=function(o){var r=typeof o;return"string"==r||"number"==r||"symbol"==r||"boolean"==r?"__proto__"!==o:null===o};export{o as default};
@@ -1 +0,0 @@
1
- import e from"./_coreJsData.js";var r,o=e,s=(r=/[^.]+$/.exec(o&&o.keys&&o.keys.IE_PROTO||""))?"Symbol(src)_1."+r:"",t=function(e){return!!s&&s in e};export{t as default};
@@ -1 +0,0 @@
1
- var t=function(){this.__data__=[],this.size=0};export{t as default};
@@ -1 +0,0 @@
1
- import t from"./_assocIndexOf.js";var r=t,a=Array.prototype.splice,e=function(t){var e=this.__data__,o=r(e,t);return!(o<0||(o==e.length-1?e.pop():a.call(e,o,1),--this.size,0))};export{e as default};
@@ -1 +0,0 @@
1
- import a from"./_assocIndexOf.js";var r=a,t=function(a){var t=this.__data__,o=r(t,a);return o<0?void 0:t[o][1]};export{t as default};
@@ -1 +0,0 @@
1
- import t from"./_assocIndexOf.js";var a=t,r=function(t){return a(this.__data__,t)>-1};export{r as default};
@@ -1 +0,0 @@
1
- import s from"./_assocIndexOf.js";var t=s,a=function(s,a){var r=this.__data__,i=t(r,s);return i<0?(++this.size,r.push([s,a])):r[i][1]=a,this};export{a as default};
@@ -1 +0,0 @@
1
- import s from"./_Hash.js";import t from"./_ListCache.js";import a from"./_Map.js";var i=s,r=t,o=a,e=function(){this.size=0,this.__data__={hash:new i,map:new(o||r),string:new i}};export{e as default};
@@ -1 +0,0 @@
1
- import t from"./_getMapData.js";var e=t,a=function(t){var a=e(this,t).delete(t);return this.size-=a?1:0,a};export{a as default};
@@ -1 +0,0 @@
1
- import t from"./_getMapData.js";var a=t,r=function(t){return a(this,t).get(t)};export{r as default};
@@ -1 +0,0 @@
1
- import t from"./_getMapData.js";var a=t,r=function(t){return a(this,t).has(t)};export{r as default};
@@ -1 +0,0 @@
1
- import t from"./_getMapData.js";var s=t,e=function(t,e){var i=s(this,t),a=i.size;return i.set(t,e),this.size+=i.size==a?0:1,this};export{e as default};
@@ -1 +0,0 @@
1
- import r from"./memoize.js";var e=r,t=function(r){var t=e(r,(function(r){return 500===a.size&&a.clear(),r})),a=t.cache;return t};export{t as default};
@@ -1 +0,0 @@
1
- import e from"./_getNative.js";var t=e(Object,"create");export{t as default};
@@ -1 +0,0 @@
1
- var t=Object.prototype.toString,r=function(r){return t.call(r)};export{r as default};
@@ -1 +0,0 @@
1
- import e from"./_freeGlobal.js";var t=e,f="object"==typeof self&&self&&self.Object===Object&&self,l=t||f||Function("return this")();export{l as default};
@@ -1 +0,0 @@
1
- import e from"./_memoizeCapped.js";var r=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,a=/\\(\\)?/g,p=e((function(e){var p=[];return 46===e.charCodeAt(0)&&p.push(""),e.replace(r,(function(e,r,o,t){p.push(o?t.replace(a,"$1"):r||e)})),p}));export{p as default};
@@ -1 +0,0 @@
1
- import r from"./isSymbol.js";var t=r,o=function(r){if("string"==typeof r||t(r))return r;var o=r+"";return"0"==o&&1/r==-1/0?"-0":o};export{o as default};
@@ -1 +0,0 @@
1
- var t=Function.prototype.toString,r=function(r){if(null!=r){try{return t.call(r)}catch(t){}try{return r+""}catch(t){}}return""};export{r as default};
@@ -1 +0,0 @@
1
- var r=function(r,t){return r===t||r!=r&&t!=t};export{r as default};
@@ -1 +0,0 @@
1
- var r=Array.isArray;export{r as default};
@@ -1 +0,0 @@
1
- import t from"./_baseGetTag.js";import o from"./isObject.js";var r=t,e=o,n=function(t){if(!e(t))return!1;var o=r(t);return"[object Function]"==o||"[object GeneratorFunction]"==o||"[object AsyncFunction]"==o||"[object Proxy]"==o};export{n as default};
@@ -1 +0,0 @@
1
- var t=function(t){var n=typeof t;return null!=t&&("object"==n||"function"==n)};export{t as default};
@@ -1 +0,0 @@
1
- var t=function(t){return null!=t&&"object"==typeof t};export{t as default};
@@ -1 +0,0 @@
1
- import o from"./_baseGetTag.js";import t from"./isObjectLike.js";var e=o,r=t,m=function(o){return"symbol"==typeof o||r(o)&&"[object Symbol]"==e(o)};export{m as default};
@@ -1 +0,0 @@
1
- import e from"./_MapCache.js";var t=e;function a(e,r){if("function"!=typeof e||null!=r&&"function"!=typeof r)throw new TypeError("Expected a function");var n=function(){var t=arguments,a=r?r.apply(this,t):t[0],c=n.cache;if(c.has(a))return c.get(a);var o=e.apply(this,t);return n.cache=c.set(a,o)||c,o};return n.cache=new(a.Cache||t),n}a.Cache=t;var r=a;export{r as default};
@@ -1 +0,0 @@
1
- import r from"./_baseSet.js";var t=r,e=function(r,e,a){return null==r?r:t(r,e,a)};export{e as default};
@@ -1 +0,0 @@
1
- import r from"./_baseToString.js";var t=r,n=function(r){return null==r?"":t(r)};export{n as default};
@@ -1,15 +0,0 @@
1
- /*! *****************************************************************************
2
- Copyright (c) Microsoft Corporation.
3
-
4
- Permission to use, copy, modify, and/or distribute this software for any
5
- purpose with or without fee is hereby granted.
6
-
7
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
8
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
9
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
10
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
11
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
12
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
13
- PERFORMANCE OF THIS SOFTWARE.
14
- ***************************************************************************** */
15
- var n=function(){return n=Object.assign||function(n){for(var t,e=1,r=arguments.length;e<r;e++)for(var o in t=arguments[e])Object.prototype.hasOwnProperty.call(t,o)&&(n[o]=t[o]);return n},n.apply(this,arguments)};function t(n,t,e,r){return new(e||(e=Promise))((function(o,a){function i(n){try{l(r.next(n))}catch(n){a(n)}}function u(n){try{l(r.throw(n))}catch(n){a(n)}}function l(n){var t;n.done?o(n.value):(t=n.value,t instanceof e?t:new e((function(n){n(t)}))).then(i,u)}l((r=r.apply(n,t||[])).next())}))}function e(n,t){var e,r,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:u(0),throw:u(1),return:u(2)},"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function u(a){return function(u){return function(a){if(e)throw new TypeError("Generator is already executing.");for(;i;)try{if(e=1,r&&(o=2&a[0]?r.return:a[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,a[1])).done)return o;switch(r=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!((o=(o=i.trys).length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1],o=a;break}if(o&&i.label<o[2]){i.label=o[2],i.ops.push(a);break}o[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(n,i)}catch(n){a=[6,n],r=0}finally{e=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,u])}}}export{n as __assign,t as __awaiter,e as __generator};
@@ -1 +0,0 @@
1
- import t from"../ext/lodash/set.js";function e(e){var o={};return e.forEach((function(e){return t(o,e,"")})),r(o)}function r(t,e){var o=e?"".concat(e," {"):"{";return Object.entries(t).forEach((function(t){var e=t[0],n=t[1];if("string"==typeof n)o+=e+" ";else{if("object"!=typeof n)throw new Error("objectToGql invalid data type. Objects can contain strings or other objects.");o+=r(n,e),o+="}"}})),e||(o+="}"),o}export{e as generateGqlReturnFields,r as objectToGql};
@@ -1 +0,0 @@
1
- import{format as r}from"../ext/@redtea/format-axios-error/index.mjs.js";var e;!function(r){r.ARGUMENT_VALIDATION_ERROR="ARGUMENT_VALIDATION_ERROR",r.UNAUTHENTICATED="UNAUTHENTICATED",r.UNAUTHORIZED="UNAUTHORIZED",r.INTERNAL_SERVER_ERROR="INTERNAL_SERVER_ERROR",r.LOGIN_REQUIRED="LOGIN_REQUIRED",r.NETWORK_ERROR="NETWORK_ERROR",r.DUPLICATE_KEY_ERROR="DUPLICATE_KEY_ERROR",r.UNKNOWN="UNKNOWN"}(e||(e={}));var o=function(){function r(r,o){this.errors=[],this.errorCodes=[];var n=[],t=[];null==o||o.forEach((function(r){var o;(null===(o=r.extensions)||void 0===o?void 0:o.code)?(n.push(r.message),t.push(r.extensions.code)):(n.push("Unknown error"),t.push(e.UNKNOWN))})),this.graphQLErrors=o,this.errors=n,this.errorCodes=t,this.data=r}return Object.defineProperty(r.prototype,"firstErrorMessage",{get:function(){return this.errors.length?this.errors[0]:""},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isUnAuthenticated",{get:function(){return this.errorCodes.some((function(r){return r===e.UNAUTHENTICATED}))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isNetworkError",{get:function(){return this.errorCodes.some((function(r){return r===e.NETWORK_ERROR}))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isSuccess",{get:function(){return 0===this.errorCodes.length},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isRecoverableError",{get:function(){var r=[e.UNAUTHENTICATED,e.INTERNAL_SERVER_ERROR,e.NETWORK_ERROR];return this.errorCodes.every((function(e){return r.includes(e)}))},enumerable:!1,configurable:!0}),r.networkError=function(){var o=new r;return o.errors.push("Network error!"),o.errorCodes.push(e.NETWORK_ERROR),o},r.unknownError=function(){var o=new r;return o.errors.push("Unknown error!"),o.errorCodes.push(e.UNKNOWN),o},r.authError=function(){var o=new r;return o.errors.push("Authentication error!"),o.errorCodes.push(e.UNAUTHENTICATED),o},r.success=function(){return new r},r}();function n(e){try{console.log(JSON.stringify(r(e),null,2))}catch(r){console.error(e)}return e.networkError?o.networkError():e.graphQLErrors?new o(void 0,e.graphQLErrors):o.unknownError()}export{e as APIErrorCode,o as APIResponse,n as handleAPIError};
@@ -1 +0,0 @@
1
- import{__awaiter as e,__generator as r,__assign as a}from"../ext/tslib/tslib.es6.js";import t from"../../../../axios/index.js";import n from"../config/index.js";import{APIResponse as o}from"./api.js";import{generateGqlReturnFields as s}from"../helpers/generate-return-fields.js";var i=function(l){var R=l.operationName,u=l.variables,c=l.allReturnFields,d=l.fields,f=l.query,p=l.config;return e(void 0,void 0,void 0,(function(){var l,E,O,m,v,N;return r(this,(function(_){switch(_.label){case 0:return l=d?s(d):c,E=p?{URL:p.URL||n.URL,TOKEN:p.TOKEN||n.TOKEN,HEADERS:p.HEADERS||n.HEADERS,ON_ERROR:p.ON_ERROR||n.ON_ERROR}:n,O={"Content-Type":"application/json"},E.TOKEN&&(O.authorization="Bearer ".concat(E.TOKEN)),[4,t.post(E.URL+"?op=".concat(R),{query:"string"==typeof f?f:f(l),variables:a({},u)},{headers:a(a({},O),E.HEADERS)})];case 1:return m=_.sent(),v=m.data.errors,0!==(N=new o(void 0,v)).errorCodes.length&&E.ON_ERROR?[4,Promise.all(N.errorCodes.map((function(a){return e(void 0,void 0,void 0,(function(){var e;return r(this,(function(r){switch(r.label){case 0:return(e=E.ON_ERROR.errors.find((function(e){return e.errorCode===a})))?[4,e.callback({graphQLErrors:v,operation:{operationName:R}})]:[3,2];case 1:r.sent(),r.label=2;case 2:return[2]}}))}))})))]:[3,4];case 2:return _.sent(),E.ON_ERROR.refreshQuery?[4,i({operationName:R,variables:u,allReturnFields:c,fields:d,query:f,config:p})]:[3,4];case 3:return[2,_.sent()];case 4:return[2,m.data]}}))}))};export{i as default};
@@ -1 +0,0 @@
1
- var a="ext.",n="Phone number country",i="Phone",e="Abkhazia",r="Ascension Island",o="Andorra",t="United Arab Emirates",u="Afghanistan",s="Antigua and Barbuda",l="Anguilla",d="Albania",S="Armenia",M="Angola",C="Antarctica",G="Argentina",B="American Samoa",I="Austria",c="Australia",h="Aruba",A="Åland Islands",m="Azerbaijan",T="Bosnia and Herzegovina",g="Barbados",N="Bangladesh",b="Belgium",P="Burkina Faso",y="Bulgaria",L="Bahrain",K="Burundi",E="Benin",R="Saint Barthélemy",F="Bermuda",U="Brunei Darussalam",p="Bolivia",H="Bonaire, Sint Eustatius and Saba",D="Brazil",V="Bahamas",w="Bhutan",O="Bouvet Island",Z="Botswana",k="Belarus",v="Belize",J="Canada",z="Cocos (Keeling) Islands",W="Congo, Democratic Republic of the",Y="Central African Republic",f="Congo",Q="Switzerland",x="Cote d'Ivoire",q="Cook Islands",j="Chile",X="Cameroon",$="China",_="Colombia",aa="Costa Rica",na="Cuba",ia="Cape Verde",ea="Curaçao",ra="Christmas Island",oa="Cyprus",ta="Czech Republic",ua="Germany",sa="Djibouti",la="Denmark",da="Dominica",Sa="Dominican Republic",Ma="Algeria",Ca="Ecuador",Ga="Estonia",Ba="Egypt",Ia="Western Sahara",ca="Eritrea",ha="Spain",Aa="Ethiopia",ma="Finland",Ta="Fiji",ga="Falkland Islands",Na="Federated States of Micronesia",ba="Faroe Islands",Pa="France",ya="Gabon",La="United Kingdom",Ka="Grenada",Ea="Georgia",Ra="French Guiana",Fa="Guernsey",Ua="Ghana",pa="Gibraltar",Ha="Greenland",Da="Gambia",Va="Guinea",wa="Guadeloupe",Oa="Equatorial Guinea",Za="Greece",ka="South Georgia and the South Sandwich Islands",va="Guatemala",Ja="Guam",za="Guinea-Bissau",Wa="Guyana",Ya="Hong Kong",fa="Heard Island and McDonald Islands",Qa="Honduras",xa="Croatia",qa="Haiti",ja="Hungary",Xa="Indonesia",$a="Ireland",_a="Israel",an="Isle of Man",nn="India",en="British Indian Ocean Territory",rn="Iraq",on="Iran",tn="Iceland",un="Italy",sn="Jersey",ln="Jamaica",dn="Jordan",Sn="Japan",Mn="Kenya",Cn="Kyrgyzstan",Gn="Cambodia",Bn="Kiribati",In="Comoros",cn="Saint Kitts and Nevis",hn="North Korea",An="South Korea",mn="Kuwait",Tn="Cayman Islands",gn="Kazakhstan",Nn="Laos",bn="Lebanon",Pn="Saint Lucia",yn="Liechtenstein",Ln="Sri Lanka",Kn="Liberia",En="Lesotho",Rn="Lithuania",Fn="Luxembourg",Un="Latvia",pn="Libya",Hn="Morocco",Dn="Monaco",Vn="Moldova",wn="Montenegro",On="Saint Martin (French Part)",Zn="Madagascar",kn="Marshall Islands",vn="North Macedonia",Jn="Mali",zn="Burma",Wn="Mongolia",Yn="Macao",fn="Northern Mariana Islands",Qn="Martinique",xn="Mauritania",qn="Montserrat",jn="Malta",Xn="Mauritius",$n="Maldives",_n="Malawi",ai="Mexico",ni="Malaysia",ii="Mozambique",ei="Namibia",ri="New Caledonia",oi="Niger",ti="Norfolk Island",ui="Nigeria",si="Nicaragua",li="Netherlands",di="Norway",Si="Nepal",Mi="Nauru",Ci="Niue",Gi="New Zealand",Bi="Oman",Ii="South Ossetia",ci="Panama",hi="Peru",Ai="French Polynesia",mi="Papua New Guinea",Ti="Philippines",gi="Pakistan",Ni="Poland",bi="Saint Pierre and Miquelon",Pi="Pitcairn",yi="Puerto Rico",Li="Palestine",Ki="Portugal",Ei="Palau",Ri="Paraguay",Fi="Qatar",Ui="Reunion",pi="Romania",Hi="Serbia",Di="Russia",Vi="Rwanda",wi="Saudi Arabia",Oi="Solomon Islands",Zi="Seychelles",ki="Sudan",vi="Sweden",Ji="Singapore",zi="Saint Helena",Wi="Slovenia",Yi="Svalbard and Jan Mayen",fi="Slovakia",Qi="Sierra Leone",xi="San Marino",qi="Senegal",ji="Somalia",Xi="Suriname",$i="South Sudan",_i="Sao Tome and Principe",ae="El Salvador",ne="Sint Maarten",ie="Syria",ee="Swaziland",re="Tristan da Cunha",oe="Turks and Caicos Islands",te="Chad",ue="French Southern Territories",se="Togo",le="Thailand",de="Tajikistan",Se="Tokelau",Me="Timor-Leste",Ce="Turkmenistan",Ge="Tunisia",Be="Tonga",Ie="Turkey",ce="Trinidad and Tobago",he="Tuvalu",Ae="Taiwan",me="Tanzania",Te="Ukraine",ge="Uganda",Ne="United States Minor Outlying Islands",be="United States",Pe="Uruguay",ye="Uzbekistan",Le="Holy See (Vatican City State)",Ke="Saint Vincent and the Grenadines",Ee="Venezuela",Re="Virgin Islands, British",Fe="Virgin Islands, U.S.",Ue="Vietnam",pe="Vanuatu",He="Wallis and Futuna",De="Samoa",Ve="Kosovo",we="Yemen",Oe="Mayotte",Ze="South Africa",ke="Zambia",ve="Zimbabwe",Je="International",ze={ext:"ext.",country:"Phone number country",phone:"Phone",AB:e,AC:r,AD:o,AE:t,AF:u,AG:s,AI:l,AL:d,AM:S,AO:"Angola",AQ:C,AR:G,AS:B,AT:I,AU:c,AW:"Aruba",AX:A,AZ:m,BA:T,BB:g,BD:N,BE:b,BF:P,BG:y,BH:L,BI:K,BJ:"Benin",BL:R,BM:F,BN:U,BO:p,BQ:H,BR:"Brazil",BS:V,BT:"Bhutan",BV:O,BW:Z,BY:k,BZ:"Belize",CA:"Canada",CC:z,CD:W,CF:Y,CG:"Congo",CH:Q,CI:x,CK:q,CL:"Chile",CM:X,CN:"China",CO:_,CR:aa,CU:"Cuba",CV:ia,CW:ea,CX:ra,CY:"Cyprus",CZ:ta,DE:ua,DJ:sa,DK:la,DM:da,DO:Sa,DZ:Ma,EC:Ca,EE:Ga,EG:"Egypt",EH:Ia,ER:ca,ES:"Spain",ET:Aa,FI:ma,FJ:"Fiji",FK:ga,FM:Na,FO:ba,FR:"France",GA:"Gabon",GB:La,GD:Ka,GE:Ea,GF:Ra,GG:Fa,GH:"Ghana",GI:pa,GL:Ha,GM:"Gambia",GN:"Guinea",GP:wa,GQ:Oa,GR:"Greece",GS:ka,GT:va,GU:"Guam",GW:za,GY:"Guyana",HK:Ya,HM:fa,HN:Qa,HR:xa,HT:"Haiti",HU:ja,ID:Xa,IE:$a,IL:"Israel",IM:an,IN:"India",IO:en,IQ:"Iraq",IR:"Iran",IS:tn,IT:"Italy",JE:"Jersey",JM:ln,JO:"Jordan",JP:"Japan",KE:"Kenya",KG:Cn,KH:Gn,KI:Bn,KM:In,KN:cn,KP:hn,KR:An,KW:"Kuwait",KY:Tn,KZ:gn,LA:"Laos",LB:bn,LC:Pn,LI:yn,LK:Ln,LR:Kn,LS:En,LT:Rn,LU:Fn,LV:"Latvia",LY:"Libya",MA:Hn,MC:"Monaco",MD:Vn,ME:wn,MF:On,MG:Zn,MH:kn,MK:vn,ML:"Mali",MM:"Burma",MN:Wn,MO:"Macao",MP:fn,MQ:Qn,MR:xn,MS:qn,MT:"Malta",MU:Xn,MV:$n,MW:"Malawi",MX:"Mexico",MY:ni,MZ:ii,NA:ei,NC:ri,NE:"Niger",NF:ti,NG:ui,NI:si,NL:li,NO:"Norway",NP:"Nepal",NR:"Nauru",NU:"Niue",NZ:Gi,OM:"Oman",OS:Ii,PA:"Panama",PE:"Peru",PF:Ai,PG:mi,PH:Ti,PK:gi,PL:"Poland",PM:bi,PN:Pi,PR:yi,PS:Li,PT:Ki,PW:"Palau",PY:Ri,QA:"Qatar",RE:Ui,RO:pi,RS:"Serbia",RU:"Russia",RW:"Rwanda",SA:wi,SB:Oi,SC:Zi,SD:"Sudan",SE:"Sweden",SG:Ji,SH:zi,SI:Wi,SJ:Yi,SK:fi,SL:Qi,SM:xi,SN:qi,SO:ji,SR:Xi,SS:$i,ST:_i,SV:ae,SX:ne,SY:"Syria",SZ:ee,TA:re,TC:oe,TD:"Chad",TF:ue,TG:"Togo",TH:le,TJ:de,TK:Se,TL:Me,TM:Ce,TN:Ge,TO:"Tonga",TR:"Turkey",TT:ce,TV:"Tuvalu",TW:"Taiwan",TZ:me,UA:Te,UG:"Uganda",UM:Ne,US:be,UY:Pe,UZ:ye,VA:Le,VC:Ke,VE:Ee,VG:Re,VI:Fe,VN:Ue,VU:pe,WF:He,WS:"Samoa",XK:"Kosovo",YE:"Yemen",YT:Oe,ZA:Ze,ZM:"Zambia",ZW:ve,ZZ:Je};export{e as AB,r as AC,o as AD,t as AE,u as AF,s as AG,l as AI,d as AL,S as AM,M as AO,C as AQ,G as AR,B as AS,I as AT,c as AU,h as AW,A as AX,m as AZ,T as BA,g as BB,N as BD,b as BE,P as BF,y as BG,L as BH,K as BI,E as BJ,R as BL,F as BM,U as BN,p as BO,H as BQ,D as BR,V as BS,w as BT,O as BV,Z as BW,k as BY,v as BZ,J as CA,z as CC,W as CD,Y as CF,f as CG,Q as CH,x as CI,q as CK,j as CL,X as CM,$ as CN,_ as CO,aa as CR,na as CU,ia as CV,ea as CW,ra as CX,oa as CY,ta as CZ,ua as DE,sa as DJ,la as DK,da as DM,Sa as DO,Ma as DZ,Ca as EC,Ga as EE,Ba as EG,Ia as EH,ca as ER,ha as ES,Aa as ET,ma as FI,Ta as FJ,ga as FK,Na as FM,ba as FO,Pa as FR,ya as GA,La as GB,Ka as GD,Ea as GE,Ra as GF,Fa as GG,Ua as GH,pa as GI,Ha as GL,Da as GM,Va as GN,wa as GP,Oa as GQ,Za as GR,ka as GS,va as GT,Ja as GU,za as GW,Wa as GY,Ya as HK,fa as HM,Qa as HN,xa as HR,qa as HT,ja as HU,Xa as ID,$a as IE,_a as IL,an as IM,nn as IN,en as IO,rn as IQ,on as IR,tn as IS,un as IT,sn as JE,ln as JM,dn as JO,Sn as JP,Mn as KE,Cn as KG,Gn as KH,Bn as KI,In as KM,cn as KN,hn as KP,An as KR,mn as KW,Tn as KY,gn as KZ,Nn as LA,bn as LB,Pn as LC,yn as LI,Ln as LK,Kn as LR,En as LS,Rn as LT,Fn as LU,Un as LV,pn as LY,Hn as MA,Dn as MC,Vn as MD,wn as ME,On as MF,Zn as MG,kn as MH,vn as MK,Jn as ML,zn as MM,Wn as MN,Yn as MO,fn as MP,Qn as MQ,xn as MR,qn as MS,jn as MT,Xn as MU,$n as MV,_n as MW,ai as MX,ni as MY,ii as MZ,ei as NA,ri as NC,oi as NE,ti as NF,ui as NG,si as NI,li as NL,di as NO,Si as NP,Mi as NR,Ci as NU,Gi as NZ,Bi as OM,Ii as OS,ci as PA,hi as PE,Ai as PF,mi as PG,Ti as PH,gi as PK,Ni as PL,bi as PM,Pi as PN,yi as PR,Li as PS,Ki as PT,Ei as PW,Ri as PY,Fi as QA,Ui as RE,pi as RO,Hi as RS,Di as RU,Vi as RW,wi as SA,Oi as SB,Zi as SC,ki as SD,vi as SE,Ji as SG,zi as SH,Wi as SI,Yi as SJ,fi as SK,Qi as SL,xi as SM,qi as SN,ji as SO,Xi as SR,$i as SS,_i as ST,ae as SV,ne as SX,ie as SY,ee as SZ,re as TA,oe as TC,te as TD,ue as TF,se as TG,le as TH,de as TJ,Se as TK,Me as TL,Ce as TM,Ge as TN,Be as TO,Ie as TR,ce as TT,he as TV,Ae as TW,me as TZ,Te as UA,ge as UG,Ne as UM,be as US,Pe as UY,ye as UZ,Le as VA,Ke as VC,Ee as VE,Re as VG,Fe as VI,Ue as VN,pe as VU,He as WF,De as WS,Ve as XK,we as YE,Oe as YT,Ze as ZA,ke as ZM,ve as ZW,Je as ZZ,n as country,ze as default,a as ext,i as phone};
@@ -1 +0,0 @@
1
- import o from"../../../libphonenumber-js/metadata.min.json.js";import{createPhoneInput as t}from"../modules/PhoneInputWithCountryDefault.js";var e=t(o);export{e as default};
@@ -1 +0,0 @@
1
- import n from"react";import t from"../../../prop-types/index.js";import o from"../../../classnames/index.js";import e from"./InternationalIcon.js";import r from"./Flag.js";function a(r){var a=r.flags,s=r.flagUrl,c=r.flagComponent,l=r.internationalIcon;function i(t){var r=t.country,i=t.label,m=t.aspectRatio,p=l===e?m:void 0;return n.createElement("div",{className:o("PhoneInputCountryIcon",{"PhoneInputCountryIcon--square":1===p,"PhoneInputCountryIcon--border":r})},r?n.createElement(c,{country:r,countryName:i,flags:a,flagUrl:s,className:"PhoneInputCountryIconImg"}):n.createElement(l,{title:i,aspectRatio:p,className:"PhoneInputCountryIconImg"}))}return i.propTypes={country:t.string,label:t.string.isRequired,aspectRatio:t.number},i}a({flagUrl:"https://cdn.myikas.com/sf/assets/flags/3x2/{XX}.svg",flagComponent:r,internationalIcon:e});export{a as createCountryIconComponent};
@@ -1 +0,0 @@
1
- import e,{useMemo as n,useCallback as r}from"react";import o from"../../../prop-types/index.js";import t from"../../../classnames/index.js";import a from"../../../country-flag-icons/modules/unicode.js";function i(){return i=Object.assign||function(e){for(var n=1;n<arguments.length;n++){var r=arguments[n];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},i.apply(this,arguments)}function l(e,n){if(null==e)return{};var r,o,t=function(e,n){if(null==e)return{};var r,o,t={},a=Object.keys(e);for(o=0;o<a.length;o++)r=a[o],n.indexOf(r)>=0||(t[r]=e[r]);return t}(e,n);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(o=0;o<a.length;o++)r=a[o],n.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(t[r]=e[r])}return t}function u(o){var t=o.value,a=o.onChange,u=o.options,s=l(o,["value","onChange","options"]),m=r((function(e){var n=e.target.value;a("ZZ"===n?void 0:n)}),[a]);return n((function(){return p(u,t)}),[u,t]),e.createElement("select",i({},s,{value:t||"ZZ",onChange:m}),u.map((function(n){var r=n.value,o=n.label,t=n.divider;return e.createElement("option",{key:t?"|":r||"ZZ",value:t?"|":r||"ZZ",disabled:!!t,style:t?c:void 0},o)})))}u.propTypes={value:o.string,onChange:o.func.isRequired,options:o.arrayOf(o.shape({value:o.string,label:o.string,divider:o.bool})).isRequired};var c={fontSize:"1px",backgroundColor:"currentColor",color:"inherit"};function s(r){var o=r.value,c=r.options,s=r.className,m=r.iconComponent;r.getIconAspectRatio;var v=r.arrowComponent,f=r.unicodeFlags,d=l(r,["value","options","className","iconComponent","getIconAspectRatio","arrowComponent","unicodeFlags"]),y=n((function(){return p(c,o)}),[c,o]);return e.createElement("div",{className:"PhoneInputCountry"},e.createElement(u,i({},d,{value:o,options:c,className:t("PhoneInputCountrySelect",s)})),f&&o&&e.createElement("div",{className:"PhoneInputCountryIconUnicode"},a(o)),!(f&&o)&&e.createElement(m,{country:o,label:y&&y.label,aspectRatio:f?1:void 0}),e.createElement(v,null))}function p(e,n){var r=e,o=Array.isArray(r),t=0;for(r=o?r:r[Symbol.iterator]();;){var a;if(o){if(t>=r.length)break;a=r[t++]}else{if((t=r.next()).done)break;a=t.value}var i=a;if(!i.divider&&i.value===n)return i}}s.propTypes={iconComponent:o.elementType,arrowComponent:o.elementType.isRequired,unicodeFlags:o.bool},s.defaultProps={arrowComponent:function(){return e.createElement("div",{className:"PhoneInputCountrySelectArrow"})}};export{s as CountrySelectWithIcon,u as default};
@@ -1 +0,0 @@
1
- import r from"react";import e from"../../../prop-types/index.js";import"../../../classnames/index.js";function t(){return t=Object.assign||function(r){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(r[n]=t[n])}return r},t.apply(this,arguments)}function n(r,e){if(null==r)return{};var t,n,o=function(r,e){if(null==r)return{};var t,n,o={},a=Object.keys(r);for(n=0;n<a.length;n++)t=a[n],e.indexOf(t)>=0||(o[t]=r[t]);return o}(r,e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(r);for(n=0;n<a.length;n++)t=a[n],e.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(r,t)&&(o[t]=r[t])}return o}function o(e){var o=e.country,a=e.countryName,l=e.flags,i=e.flagUrl,s=n(e,["country","countryName","flags","flagUrl"]);return l&&l[o]?l[o]({title:a}):r.createElement("img",t({},s,{alt:a,role:a?void 0:"presentation",src:i.replace("{XX}",o).replace("{xx}",o.toLowerCase())}))}o.propTypes={country:e.string.isRequired,countryName:e.string.isRequired,flags:e.objectOf(e.elementType),flagUrl:e.string.isRequired};export{o as default};
@@ -1 +0,0 @@
1
- import e,{useCallback as t}from"react";import n from"../../../prop-types/index.js";import{getInputValuePrefix as r,removeInputValuePrefix as o}from"./helpers/inputValuePrefix.js";import a from"../../../libphonenumber-js/es6/parseIncompletePhoneNumber.js";import i from"../../../libphonenumber-js/es6/formatIncompletePhoneNumber.js";function u(){return u=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},u.apply(this,arguments)}function l(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function p(o){function i(n,o){var i=n.value,p=n.onChange,f=n.country,s=n.international,c=n.withCountryCallingCode,y=n.metadata,d=n.inputComponent,C=l(n,["value","onChange","country","international","withCountryCallingCode","metadata","inputComponent"]),b=r({country:f,international:s,withCountryCallingCode:c,metadata:y}),g=t((function(e){var t=a(e.target.value);t===i&&(0===m(b,t,f,y).indexOf(e.target.value)&&(t=t.slice(0,-1)));p(t)}),[b,i,p,f,y]);return e.createElement(d,u({},C,{ref:o,value:m(b,i,f,y),onChange:g}))}return(i=e.forwardRef(i)).propTypes={value:n.string.isRequired,onChange:n.func.isRequired,country:n.string,international:n.bool,withCountryCallingCode:n.bool,metadata:n.object.isRequired,inputComponent:n.elementType.isRequired},i.defaultProps={metadata:o,inputComponent:"input"},i}var f=p();function m(e,t,n,r){return o(i(e+t,n,r),e)}export{p as createInput,f as default};
@@ -1 +0,0 @@
1
- import t,{useCallback as r}from"react";import e from"../../../prop-types/index.js";import{getInputValuePrefix as n,removeInputValuePrefix as o}from"./helpers/inputValuePrefix.js";import a from"../../../libphonenumber-js/es6/AsYouType.js";import i from"../../../input-format/modules/react/Input.js";import{parsePhoneNumberCharacter as l}from"../../../libphonenumber-js/es6/parseIncompletePhoneNumber.js";function u(){return u=Object.assign||function(t){for(var r=1;r<arguments.length;r++){var e=arguments[r];for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])}return t},u.apply(this,arguments)}function p(t,r){if(null==t)return{};var e,n,o=function(t,r){if(null==t)return{};var e,n,o={},a=Object.keys(t);for(n=0;n<a.length;n++)e=a[n],r.indexOf(e)>=0||(o[e]=t[e]);return o}(t,r);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);for(n=0;n<a.length;n++)e=a[n],r.indexOf(e)>=0||Object.prototype.propertyIsEnumerable.call(t,e)&&(o[e]=t[e])}return o}function f(f){function m(e,f){var m=e.country,s=e.international,c=e.withCountryCallingCode,y=e.metadata,b=p(e,["country","international","withCountryCallingCode","metadata"]),d=r((function(t){var r=new a(m,y),e=n({country:m,international:s,withCountryCallingCode:c,metadata:y}),i=r.input(e+t),l=r.getTemplate();return e&&(i=o(i,e),l&&(l=o(l,e))),{text:i,template:l}}),[m,y]);return t.createElement(i,u({},b,{ref:f,parse:l,format:d}))}return(m=t.forwardRef(m)).propTypes={country:e.string,international:e.bool,withCountryCallingCode:e.bool,metadata:e.object.isRequired},m.defaultProps={metadata:f},m}var m=f();export{f as createInput,m as default};
@@ -1 +0,0 @@
1
- import e from"react";import t from"../../../prop-types/index.js";function n(){return n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},n.apply(this,arguments)}function r(e,t){if(null==e)return{};var n,r,l=function(e,t){if(null==e)return{};var n,r,l={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(l[n]=e[n]);return l}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(l[n]=e[n])}return l}function l(t){var n=t.aspectRatio,l=r(t,["aspectRatio"]);return 1===n?e.createElement(o,l):e.createElement(a,l)}function a(t){var l=t.title,a=r(t,["title"]);return e.createElement("svg",n({},a,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 75 50"}),e.createElement("title",null,l),e.createElement("g",{className:"PhoneInputInternationalIconGlobe",stroke:"currentColor",fill:"none",strokeWidth:"2",strokeMiterlimit:"10"},e.createElement("path",{strokeLinecap:"round",d:"M47.2,36.1C48.1,36,49,36,50,36c7.4,0,14,1.7,18.5,4.3"}),e.createElement("path",{d:"M68.6,9.6C64.2,12.3,57.5,14,50,14c-7.4,0-14-1.7-18.5-4.3"}),e.createElement("line",{x1:"26",y1:"25",x2:"74",y2:"25"}),e.createElement("line",{x1:"50",y1:"1",x2:"50",y2:"49"}),e.createElement("path",{strokeLinecap:"round",d:"M46.3,48.7c1.2,0.2,2.5,0.3,3.7,0.3c13.3,0,24-10.7,24-24S63.3,1,50,1S26,11.7,26,25c0,2,0.3,3.9,0.7,5.8"}),e.createElement("path",{strokeLinecap:"round",d:"M46.8,48.2c1,0.6,2.1,0.8,3.2,0.8c6.6,0,12-10.7,12-24S56.6,1,50,1S38,11.7,38,25c0,1.4,0.1,2.7,0.2,4c0,0.1,0,0.2,0,0.2"})),e.createElement("path",{className:"PhoneInputInternationalIconPhone",stroke:"none",fill:"currentColor",d:"M12.4,17.9c2.9-2.9,5.4-4.8,0.3-11.2S4.1,5.2,1.3,8.1C-2,11.4,1.1,23.5,13.1,35.6s24.3,15.2,27.5,11.9c2.8-2.8,7.8-6.3,1.4-11.5s-8.3-2.6-11.2,0.3c-2,2-7.2-2.2-11.7-6.7S10.4,19.9,12.4,17.9z"}))}function o(t){var l=t.title,a=r(t,["title"]);return e.createElement("svg",n({},a,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"}),e.createElement("title",null,l),e.createElement("g",{className:"PhoneInputInternationalIconGlobe",stroke:"currentColor",fill:"none",strokeWidth:"2",strokeLinecap:"round"},e.createElement("path",{d:"M8.45,13A21.44,21.44,0,1,1,37.08,41.56"}),e.createElement("path",{d:"M19.36,35.47a36.9,36.9,0,0,1-2.28-13.24C17.08,10.39,21.88.85,27.8.85s10.72,9.54,10.72,21.38c0,6.48-1.44,12.28-3.71,16.21"}),e.createElement("path",{d:"M17.41,33.4A39,39,0,0,1,27.8,32.06c6.62,0,12.55,1.5,16.48,3.86"}),e.createElement("path",{d:"M44.29,8.53c-3.93,2.37-9.86,3.88-16.49,3.88S15.25,10.9,11.31,8.54"}),e.createElement("line",{x1:"27.8",y1:"0.85",x2:"27.8",y2:"34.61"}),e.createElement("line",{x1:"15.2",y1:"22.23",x2:"49.15",y2:"22.23"})),e.createElement("path",{className:"PhoneInputInternationalIconPhone",stroke:"transparent",fill:"currentColor",d:"M9.42,26.64c2.22-2.22,4.15-3.59.22-8.49S3.08,17,.93,19.17c-2.49,2.48-.13,11.74,9,20.89s18.41,11.5,20.89,9c2.15-2.15,5.91-4.77,1-8.71s-6.27-2-8.49.22c-1.55,1.55-5.48-1.69-8.86-5.08S7.87,28.19,9.42,26.64Z"}))}l.propTypes={title:t.string.isRequired,aspectRatio:t.number},a.propTypes={title:t.string.isRequired},o.propTypes={title:t.string.isRequired};export{l as default};
@@ -1 +0,0 @@
1
- import t from"react";import e from"../../../prop-types/index.js";import n from"../../../classnames/index.js";import o from"./InputSmart.js";import r from"./InputBasic.js";import a from"./Flag.js";import i from"./InternationalIcon.js";import{getSupportedCountries as u,isCountrySupportedWithError as s,sortCountryOptions as l,getSupportedCountryOptions as c}from"./helpers/countries.js";import{createCountryIconComponent as p}from"./CountryIcon.js";import{labels as f,metadata as y}from"./PropTypes.js";import{parsePhoneNumber as m,getPreSelectedCountry as d,getInitialPhoneDigits as C,getPhoneDigitsForNewCountry as g,e164 as b,onPhoneDigitsChange as h,getCountrySelectOptions as v}from"./helpers/phoneInputHelpers.js";import O from"./helpers/getPhoneInputWithCountryStateUpdateFromNewProps.js";import j from"../../../libphonenumber-js/es6/getCountries.js";function S(t){return S="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},S(t)}function I(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,o)}return n}function P(){return P=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(t[o]=n[o])}return t},P.apply(this,arguments)}function R(t,e){if(null==t)return{};var n,o,r=function(t,e){if(null==t)return{};var n,o,r={},a=Object.keys(t);for(o=0;o<a.length;o++)n=a[o],e.indexOf(n)>=0||(r[n]=t[n]);return r}(t,e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);for(o=0;o<a.length;o++)n=a[o],e.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(r[n]=t[n])}return r}function F(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function w(t){return w=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},w(t)}function E(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function q(t,e){return q=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t},q(t,e)}function D(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var N=function(e){function a(e){var n,o,r;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),o=this,r=w(a).call(this,e),n=!r||"object"!==S(r)&&"function"!=typeof r?E(o):r,D(E(n),"inputRef",t.createRef()),D(E(n),"setInputRef",(function(t){n.inputRef.current=t;var e=n.props.inputRef;e&&("function"==typeof e?e(t):e.current=t)})),D(E(n),"isCountrySupportedWithError",(function(t){var e=n.props.metadata;return s(t,e)})),D(E(n),"onCountryChange",(function(t){var e=n.props,o=e.international,r=e.metadata,a=e.onChange,i=e.focusInputOnCountrySelection,u=n.state,s=u.phoneDigits,l=u.country,c=g(s,{prevCountry:l,newCountry:t,metadata:r,useNationalFormat:!o}),p=b(c,t,r);i&&n.inputRef.current.focus(),n.setState({country:t,hasUserSelectedACountry:!0,phoneDigits:c,value:p},(function(){a(p)}))})),D(E(n),"onChange",(function(t){var e=n.props,o=e.defaultCountry,r=e.onChange,a=e.addInternationalOption,i=e.international,u=e.limitMaxLength,s=e.countryCallingCodeEditable,l=e.metadata,c=n.state,p=c.countries,f=c.phoneDigits,y=c.country,m=h(t,{prevPhoneDigits:f,country:y,countryRequired:!a,defaultCountry:o,getAnyCountry:function(){return n.getFirstSupportedCountry({countries:p})},countries:p,international:i,limitMaxLength:u,countryCallingCodeEditable:s,metadata:l}),d=m.phoneDigits,C=m.country,g=m.value,b={phoneDigits:d,value:g,country:C};!1===s&&(g||d!==n.state.phoneDigits||(b.forceRerender={})),n.setState(b,(function(){return r(g)}))})),D(E(n),"_onFocus",(function(){return n.setState({isFocused:!0})})),D(E(n),"_onBlur",(function(){return n.setState({isFocused:!1})})),D(E(n),"onFocus",(function(t){n._onFocus();var e=n.props.onFocus;e&&e(t)})),D(E(n),"onBlur",(function(t){var e=n.props.onBlur;n._onBlur(),e&&e(t)})),D(E(n),"onCountryFocus",(function(t){n._onFocus();var e=n.props.countrySelectProps;if(e){var o=e.onFocus;o&&o(t)}})),D(E(n),"onCountryBlur",(function(t){n._onBlur();var e=n.props.countrySelectProps;if(e){var o=e.onBlur;o&&o(t)}}));var i=n.props,l=i.value;i.labels;var c=i.international,f=i.addInternationalOption,y=i.displayInitialValueAsLocalNumber,v=i.initialValueFormat,O=i.metadata,I=n.props,P=I.defaultCountry,R=I.countries;P&&(n.isCountrySupportedWithError(P)||(P=void 0)),R=u(R,O);var F=m(l,O);n.CountryIcon=p(n.props);var q=d({value:l,phoneNumber:F,defaultCountry:P,required:!f,countries:R||j(O),getAnyCountry:function(){return n.getFirstSupportedCountry({countries:R})},metadata:O});return n.state={props:n.props,country:q,countries:R,phoneDigits:C({value:l,phoneNumber:F,defaultCountry:P,international:c,useNationalFormat:y||"national"===v,metadata:O}),value:l},n}var i,f,y;return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&q(t,e)}(a,t.PureComponent),i=a,f=[{key:"componentDidMount",value:function(){var t=this.props.onCountryChange,e=this.props.defaultCountry,n=this.state.country;t&&(e&&(this.isCountrySupportedWithError(e)||(e=void 0)),n!==e&&t(n))}},{key:"componentDidUpdate",value:function(t,e){var n=this.props.onCountryChange,o=this.state.country;n&&o!==e.country&&n(o)}},{key:"getCountrySelectOptions",value:function(t){var e,n,o=t.countries,r=this.props,a=r.international,i=r.countryCallingCodeEditable,u=r.countryOptionsOrder,s=r.addInternationalOption,p=r.labels,f=r.locales,y=r.metadata;return e=function(){return l(v({countries:o||j(y),countryNames:p,addInternationalOption:(!a||!1!==i)&&s,compareStringsLocales:f}),c(u,y))},n=[o,u,s,p,y],B&&function(t,e){if(t.length!==e.length)return!1;for(var n=0;n<t.length;){if(t[n]!==e[n])return!1;n++}return!0}(n,B)||(x=e(),B=n),x}},{key:"getFirstSupportedCountry",value:function(t){var e=t.countries;return this.getCountrySelectOptions({countries:e})[0].value}},{key:"render",value:function(){var e=this.props,a=e.name,i=e.disabled,u=e.autoComplete,s=e.style,l=e.className;e.inputRef;var c=e.inputComponent,p=e.numberInputProps,f=e.smartCaret,y=e.countrySelectComponent,m=e.countrySelectProps,d=e.containerComponent;e.defaultCountry,e.countries,e.countryOptionsOrder;var C=e.labels;e.flags,e.flagComponent,e.flagUrl,e.addInternationalOption,e.internationalIcon,e.displayInitialValueAsLocalNumber,e.initialValueFormat,e.onCountryChange,e.limitMaxLength,e.countryCallingCodeEditable,e.focusInputOnCountrySelection,e.reset;var g=e.metadata;e.international,e.locales;var b=R(e,["name","disabled","autoComplete","style","className","inputRef","inputComponent","numberInputProps","smartCaret","countrySelectComponent","countrySelectProps","containerComponent","defaultCountry","countries","countryOptionsOrder","labels","flags","flagComponent","flagUrl","addInternationalOption","internationalIcon","displayInitialValueAsLocalNumber","initialValueFormat","onCountryChange","limitMaxLength","countryCallingCodeEditable","focusInputOnCountrySelection","reset","metadata","international","locales"]),h=this.state,v=h.country,O=h.countries,j=h.phoneDigits,S=h.isFocused,I=f?o:r,F=this.getCountrySelectOptions({countries:O});return t.createElement(d,{style:s,className:n(l,"PhoneInput",{"PhoneInput--focus":S})},t.createElement(y,P({name:a?"".concat(a,"Country"):void 0,"aria-label":C.country},m,{value:v,options:F,onChange:this.onCountryChange,onFocus:this.onCountryFocus,onBlur:this.onCountryBlur,disabled:i||m&&m.disabled,iconComponent:this.CountryIcon})),t.createElement(I,P({ref:this.setInputRef,type:"tel",autoComplete:u},p,b,{name:a,metadata:g,country:v,value:j||"",onChange:this.onChange,onFocus:this.onFocus,onBlur:this.onBlur,disabled:i,inputComponent:c,className:n("PhoneInputInput",p&&p.className,b.className)})))}}],y=[{key:"getDerivedStateFromProps",value:function(t,e){return function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?I(Object(n),!0).forEach((function(e){D(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):I(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({props:t},O(t,e.props,e))}}],f&&F(i.prototype,f),y&&F(i,y),a}(),_=t.forwardRef((function(e,n){return t.createElement(N,P({},e,{inputRef:n}))}));_.propTypes={value:e.string,onChange:e.func.isRequired,onFocus:e.func,onBlur:e.func,onKeyDown:e.func,disabled:e.bool,autoComplete:e.string.isRequired,initialValueFormat:e.oneOf(["national"]),displayInitialValueAsLocalNumber:e.bool,defaultCountry:e.string,countries:e.arrayOf(e.string),labels:f.isRequired,locales:e.oneOfType([e.string,e.arrayOf(e.string)]),flagUrl:e.string.isRequired,flags:e.objectOf(e.elementType),flagComponent:e.elementType.isRequired,addInternationalOption:e.bool.isRequired,internationalIcon:e.elementType.isRequired,countryOptionsOrder:e.arrayOf(e.string),style:e.object,className:e.string,countrySelectComponent:e.elementType.isRequired,countrySelectProps:e.object,inputComponent:e.elementType.isRequired,containerComponent:e.elementType.isRequired,numberInputProps:e.object,smartCaret:e.bool.isRequired,international:e.bool,limitMaxLength:e.bool.isRequired,countryCallingCodeEditable:e.bool.isRequired,metadata:y.isRequired,onCountryChange:e.func,focusInputOnCountrySelection:e.bool.isRequired},_.defaultProps={autoComplete:"tel",flagComponent:a,flagUrl:"https://cdn.myikas.com/sf/assets/flags/3x2/{XX}.svg",internationalIcon:i,inputComponent:"input",containerComponent:"div",reset:e.any,smartCaret:!0,addInternationalOption:!0,limitMaxLength:!1,countryCallingCodeEditable:!0,focusInputOnCountrySelection:!0};var x,B,L=_;export{L as default};
@@ -1 +0,0 @@
1
- import e from"react";import r from"../../../prop-types/index.js";import t from"../locale/en.json.js";import{metadata as o,labels as n}from"./PropTypes.js";import p from"./PhoneInputWithCountry.js";import{CountrySelectWithIcon as a}from"./CountrySelect.js";function i(){return i=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e},i.apply(this,arguments)}function s(s){var m=e.forwardRef((function(r,t){return e.createElement(p,i({ref:t},r))}));return m.propTypes={metadata:o.isRequired,labels:n.isRequired,countrySelectComponent:r.elementType.isRequired},m.defaultProps={metadata:s,labels:t,countrySelectComponent:a},m}s();export{s as createPhoneInput};
@@ -1 +0,0 @@
1
- import e from"../../../prop-types/index.js";var o=e.shape({country_calling_codes:e.object.isRequired,countries:e.object.isRequired}),r=e.objectOf(e.string);export{r as labels,o as metadata};
@@ -1 +0,0 @@
1
- import{isSupportedCountry as r}from"../../../../libphonenumber-js/es6/metadata.js";function n(r,n){if(!n)return r;var e=[],t=[],i=e,o=n,u=Array.isArray(o),a=0;for(o=u?o:o[Symbol.iterator]();;){var c;if(u){if(a>=o.length)break;c=o[a++]}else{if((a=o.next()).done)break;c=a.value}var f=c;"|"===f?i.push({divider:!0}):"..."===f||"…"===f?i=t:function(){var n=void 0;n="🌐"===f?void 0:f;var e=r.indexOf(r.filter((function(r){return r.value===n}))[0]),t=r[e];r.splice(e,1),i.push(t)}()}return e.concat(r).concat(t)}function e(r,n){if(r&&(r=r.filter((function(r){switch(r){case"🌐":case"|":case"...":case"…":return!0;default:return t(r,n)}}))).length>0)return r}function t(n,e){return!!r(n,e)||(console.error("Country not found: ".concat(n)),!1)}function i(r,n){return r&&0===(r=r.filter((function(r){return t(r,n)}))).length&&(r=void 0),r}export{i as getSupportedCountries,e as getSupportedCountryOptions,t as isCountrySupportedWithError,n as sortCountryOptions};
@@ -1 +0,0 @@
1
- import n,{getCountryCallingCode as e}from"../../../../libphonenumber-js/es6/metadata.js";var i=/^\d+$/;function a(a,t){var r="+"+e(a,t);return(t=new n(t)).country(a),t.numberingPlan.leadingDigits()&&i.test(t.numberingPlan.leadingDigits())&&(r+=t.numberingPlan.leadingDigits()),r}export{a as default};
@@ -1 +0,0 @@
1
- import{getInitialPhoneDigits as e,parsePhoneNumber as t,getCountryForPartialE164Number as r}from"./phoneInputHelpers.js";import{isCountrySupportedWithError as n,getSupportedCountries as o}from"./countries.js";function u(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function a(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?u(Object(r),!0).forEach((function(t){i(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):u(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function i(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function l(u,i,l){var c=u.metadata,f=u.countries,s=u.defaultCountry,y=u.value,v=u.reset,p=u.international,d=u.displayInitialValueAsLocalNumber,b=u.initialValueFormat,O=i.defaultCountry,m=i.value,j=i.reset;l.country;var h=l.value,g=l.hasUserSelectedACountry,C=function(t){return e(a({},t,{international:p,useNationalFormat:d||"national"===b,metadata:c}))};if(v!==j)return{phoneDigits:C({value:void 0,defaultCountry:s}),value:void 0,country:s,hasUserSelectedACountry:void 0};if(s!==O){var P=!s||n(s,c),w=!h||p&&h===C({value:void 0,defaultCountry:O});if(!g&&P&&(!y&&w))return{country:s,phoneDigits:C({value:void 0,defaultCountry:s}),value:void 0}}if(y!==m&&y!==h){var D,S,A;if(y){D=t(y,c);var N=o(f,c);D&&D.country?(!N||N.indexOf(D.country)>=0)&&(S=D.country):S=r(y,{country:void 0,countries:N,metadata:c})}return y||(A={hasUserSelectedACountry:void 0}),a({},A,{phoneDigits:C({phoneNumber:D,value:y,defaultCountry:s}),value:y,country:y?S:s})}}export{l as default};
@@ -1 +0,0 @@
1
- import{getCountryCallingCode as t}from"../../../../libphonenumber-js/es6/metadata.js";function n(n){var e=n.country,r=n.international,a=n.withCountryCallingCode,o=n.metadata;return e&&r&&!a?"+".concat(t(e,o)):""}function e(t,n){return n&&" "===(t=t.slice(n.length))[0]&&(t=t.slice(1)),t}export{n as getInputValuePrefix,e as removeInputValuePrefix};
@@ -1 +0,0 @@
1
- import n from"./getInternationalPhoneNumberPrefix.js";import r from"../../../../libphonenumber-js/es6/parsePhoneNumberFromString.js";import e from"../../../../libphonenumber-js/es6/AsYouType.js";import t,{getCountryCallingCode as i}from"../../../../libphonenumber-js/es6/metadata.js";function u(n){var r,e=n.value,t=n.phoneNumber,i=n.defaultCountry,u=n.getAnyCountry,o=n.countries,a=n.required,l=n.metadata;return t&&t.country?r=t.country:i&&(e&&!b(e,i,l)||(r=i)),o&&o.indexOf(r)<0&&(r=void 0),!r&&a&&o&&o.length>0&&(r=u()),r}function o(n){var r=n.countries,e=n.countryNames,t=n.addInternationalOption,i=n.compareStringsLocales,u=n.compareStrings;u||(u=p);var o=r.map((function(n){return{value:n,label:e[n]||n}}));return o.sort((function(n,r){return u(n.label,r.label,i)})),t&&o.unshift({label:e.ZZ}),o}function a(n,e){return r(n||"",e)}function l(n){return n.formatNational().replace(/\D/g,"")}function f(r,e){var t=e.prevCountry,u=e.newCountry,o=e.metadata,a=e.useNationalFormat;if(!r)return a?"":n(u,o);if(u){if("+"===r[0]){if(a)return 0===r.indexOf("+"+i(u,o))?h(r,u,o):"";if(t){var l=n(u,o);return 0===r.indexOf(l)?r:l}var f=n(u,o);return 0===r.indexOf(f)?r:f}}else if("+"!==r[0])return c(r,t,o)||"";return r}function c(n,r,e){if(n){if("+"===n[0]){if("+"===n)return;return n}if(r){var t=y(n,r,e);return t?"+".concat(i(r,e)).concat(t):void 0}}}function s(n,r,e){var i=y(n,r,e);if(i){var u=i.length-function(n,r){return(r=new t(r)).country(n),r.numberingPlan.possibleLengths()[r.numberingPlan.possibleLengths().length-1]}(r,e);if(u>0)return n.slice(0,n.length-u)}return n}function m(n,r){var e=r.country,t=r.countries,i=r.required,u=r.metadata;if("+"===n)return e;var o=d(n,u);return o&&(!t||t.indexOf(o)>=0)?o:!e||i||b(n,e,u)?e:void 0}function g(r,e){var t,i=e.prevPhoneDigits,u=e.country,o=e.defaultCountry,a=e.countryRequired,l=e.getAnyCountry,f=e.countries,g=e.international,d=e.limitMaxLength,p=e.countryCallingCodeEditable,h=e.metadata;if(g&&!1===p){var y,b=n(u,h);if(0!==r.indexOf(b))return r&&"+"!==r[0]?y=r=b+r:r=b,{phoneDigits:r,value:y,country:u}}return!1===g&&u&&r&&"+"===r[0]&&(r=v(r,u,h)),r&&u&&d&&(r=s(r,u,h)),!r||"+"===r[0]||u&&!g||(r="+"+r),!r&&i&&"+"===i[0]&&(u=g?void 0:o),"+"===r&&i&&"+"===i[0]&&i.length>"+".length&&(u=void 0),r&&(t="+"===r[0]?"+"===r||u&&0===n(u,h).indexOf(r)?void 0:r:c(r,u,h)),t&&(u=m(t,{country:u,countries:f,metadata:h}),!1===g&&u&&r&&"+"===r[0]&&(t=c(r=v(r,u,h),u,h))),!u&&a&&(u=o||l()),{phoneDigits:r,country:u,value:t}}function v(r,t,i){if(0===r.indexOf(n(t,i))){var u=new e(t,i);u.input(r);var o=u.getNumber();return o?o.formatNational().replace(/\D/g,""):""}return r.replace(/\D/g,"")}function d(n,r){var t=new e(null,r);return t.input(n),t.getCountry()}function p(n,r,e){return String.prototype.localeCompare?n.localeCompare(r,e):n<r?-1:n>r?1:0}function h(n,r,e){if(r){var t="+"+i(r,e);if(n.length<t.length){if(0===t.indexOf(n))return""}else if(0===n.indexOf(t))return n.slice(t.length)}for(var u=0,o=Object.keys(e.country_calling_codes);u<o.length;u++){var a=o[u];if(n.indexOf(a)==="+".length)return n.slice("+".length+a.length)}return""}function y(n,r,t){var i=new e(r,t);i.input(n);var u=i.getNumber();return u&&u.nationalNumber}function b(r,e,t){for(var i=n(e,t),u=0;u<r.length&&u<i.length;){if(r[u]!==i[u])return!1;u++}return!0}function x(r){var e=r.value,t=r.phoneNumber,i=r.defaultCountry,u=r.international,o=r.useNationalFormat,a=r.metadata;return(!1===u||o)&&t&&t.country?l(t):!e&&u&&i?n(i,a):e}export{p as compareStrings,b as couldNumberBelongToCountry,c as e164,l as generateNationalNumberDigits,m as getCountryForPartialE164Number,d as getCountryFromPossiblyIncompleteInternationalPhoneNumber,o as getCountrySelectOptions,x as getInitialPhoneDigits,y as getNationalSignificantNumberDigits,f as getPhoneDigitsForNewCountry,u as getPreSelectedCountry,g as onPhoneDigitsChange,a as parsePhoneNumber,h as stripCountryCallingCode,s as trimNumber};
@@ -1 +0,0 @@
1
- import e from"react";import t from"../../../prop-types/index.js";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function n(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function o(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function u(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?o(Object(r),!0).forEach((function(t){n(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):o(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function c(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var r=[],n=!0,o=!1,u=void 0;try{for(var c,i=e[Symbol.iterator]();!(n=(c=i.next()).done)&&(r.push(c.value),!t||r.length!==t);n=!0);}catch(e){o=!0,u=e}finally{try{n||null==i.return||i.return()}finally{if(o)throw u}}return r}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return i(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var a=function(t){var r=e.useRef(t);return e.useEffect((function(){r.current=t}),[t]),r.current},s=function(e){return null!==e&&"object"===r(e)},f=function e(t,r){if(!s(t)||!s(r))return t===r;var n=Array.isArray(t);if(n!==Array.isArray(r))return!1;var o="[object Object]"===Object.prototype.toString.call(t);if(o!==("[object Object]"===Object.prototype.toString.call(r)))return!1;if(!o&&!n)return t===r;var u=Object.keys(t),c=Object.keys(r);if(u.length!==c.length)return!1;for(var i={},a=0;a<u.length;a+=1)i[u[a]]=!0;for(var f=0;f<c.length;f+=1)i[c[f]]=!0;var p=Object.keys(i);if(p.length!==u.length)return!1;var l=t,y=r;return p.every((function(t){return e(l[t],y[t])}))},p=function(e,t,r){return s(e)?Object.keys(e).reduce((function(o,c){var i=!s(t)||!f(e[c],t[c]);return r.includes(c)?(i&&console.warn("Unsupported prop change: options.".concat(c," is not a mutable property.")),o):i?u(u({},o||{}),{},n({},c,e[c])):o}),null):null},l=function(e){if(null===e||s(t=e)&&"function"==typeof t.elements&&"function"==typeof t.createToken&&"function"==typeof t.createPaymentMethod&&"function"==typeof t.confirmCardPayment)return e;var t;throw new Error("Invalid prop `stripe` supplied to `Elements`. We recommend using the `loadStripe` utility from `@stripe/stripe-js`. See https://stripe.com/docs/stripe-js/react#elements-props-stripe for details.")},y=function(e){if(function(e){return s(e)&&"function"==typeof e.then}(e))return{tag:"async",stripePromise:Promise.resolve(e).then(l)};var t=l(e);return null===t?{tag:"empty"}:{tag:"sync",stripe:t}},m=e.createContext(null);m.displayName="ElementsContext";var d=function(t){var r=t.stripe,n=t.options,o=t.children,u=e.useRef(!1),i=e.useRef(!0),s=e.useMemo((function(){return y(r)}),[r]),f=c(e.useState((function(){return{stripe:null,elements:null}})),2),l=f[0],d=f[1],v=a(r);null!==v&&v!==r&&console.warn("Unsupported prop change on Elements: You cannot change the `stripe` prop after setting it."),u.current||("sync"===s.tag&&(u.current=!0,d({stripe:s.stripe,elements:s.stripe.elements(n)})),"async"===s.tag&&(u.current=!0,s.stripePromise.then((function(e){e&&i.current&&d({stripe:e,elements:e.elements(n)})}))));var b=a(n);return e.useEffect((function(){if(l.elements){var e=p(n,b,["clientSecret","fonts"]);e&&l.elements.update(e)}}),[n,b,l.elements]),e.useEffect((function(){return function(){i.current=!1}}),[]),e.useEffect((function(){var e=l.stripe;e&&e._registerWrapper&&e.registerAppInfo&&(e._registerWrapper({name:"react-stripe-js",version:"1.7.2"}),e.registerAppInfo({name:"react-stripe-js",version:"1.7.2",url:"https://stripe.com/docs/stripe-js/react"}))}),[l.stripe]),e.createElement(m.Provider,{value:l},o)};d.propTypes={stripe:t.any,options:t.object};var v=function(t){return function(e,t){if(!e)throw new Error("Could not find Elements context; You need to wrap the part of your app that ".concat(t," in an <Elements> provider."));return e}(e.useContext(m),t)},b=function(){return v("calls useElements()").elements},g=function(){return v("calls useStripe()").stripe};t.func.isRequired;var h=function(t){var r=e.useRef(t);return e.useEffect((function(){r.current=t}),[t]),function(){r.current&&r.current.apply(r,arguments)}},j=function(){},O=function(r,n){var o,u="".concat((o=r).charAt(0).toUpperCase()+o.slice(1),"Element"),c=n?function(t){v("mounts <".concat(u,">"));var r=t.id,n=t.className;return e.createElement("div",{id:r,className:n})}:function(t){var n=t.id,o=t.className,c=t.options,i=void 0===c?{}:c,s=t.onBlur,f=void 0===s?j:s,l=t.onFocus,y=void 0===l?j:l,m=t.onReady,d=void 0===m?j:m,b=t.onChange,g=void 0===b?j:b,O=t.onEscape,E=void 0===O?j:O,w=t.onClick,S=void 0===w?j:w,A=v("mounts <".concat(u,">")).elements,k=e.useRef(null),P=e.useRef(null),C=h(d),R=h(f),x=h(y),B=h(S),N=h(g),I=h(E);e.useLayoutEffect((function(){if(null==k.current&&A&&null!=P.current){var e=A.create(r,i);k.current=e,e.mount(P.current),e.on("ready",(function(){return C(e)})),e.on("change",N),e.on("blur",R),e.on("focus",x),e.on("escape",I),e.on("click",B)}}));var M=a(i);return e.useEffect((function(){if(k.current){var e=p(i,M,["paymentRequest"]);e&&k.current.update(e)}}),[i,M]),e.useLayoutEffect((function(){return function(){k.current&&k.current.destroy()}}),[]),e.createElement("div",{id:n,className:o,ref:P})};return c.propTypes={id:t.string,className:t.string,onChange:t.func,onBlur:t.func,onFocus:t.func,onReady:t.func,onClick:t.func,options:t.object},c.displayName=u,c.__elementType=r,c},E="undefined"==typeof window;O("auBankAccount",E),O("card",E),O("cardNumber",E),O("cardExpiry",E),O("cardCvc",E),O("fpxBank",E),O("iban",E),O("idealBank",E),O("p24Bank",E),O("epsBank",E);var w=O("payment",E);O("paymentRequestButton",E),O("linkAuthentication",E),O("shippingAddress",E),O("affirmMessage",E),O("afterpayClearpayMessage",E);export{d as Elements,w as PaymentElement,b as useElements,g as useStripe};
@@ -1 +0,0 @@
1
- var e="https://js.stripe.com/v3",r=/^https:\/\/js\.stripe\.com\/v3\/?(\?.*)?$/,n="loadStripe.setLoadParameters was called but an existing Stripe.js script already exists in the document; existing script parameters will be used",t=null,i=function(i){return null!==t||(t=new Promise((function(t,o){if("undefined"!=typeof window)if(window.Stripe&&i&&console.warn(n),window.Stripe)t(window.Stripe);else try{var a=function(){for(var n=document.querySelectorAll('script[src^="'.concat(e,'"]')),t=0;t<n.length;t++){var i=n[t];if(r.test(i.src))return i}return null}();a&&i?console.warn(n):a||(a=function(r){var n=r&&!r.advancedFraudSignals?"?advancedFraudSignals=false":"",t=document.createElement("script");t.src="".concat(e).concat(n);var i=document.head||document.body;if(!i)throw new Error("Expected document.body not to be null. Stripe.js requires a <body> element.");return i.appendChild(t),t}(i)),a.addEventListener("load",(function(){window.Stripe?t(window.Stripe):o(new Error("Stripe.js not available"))})),a.addEventListener("error",(function(){o(new Error("Failed to load Stripe.js"))}))}catch(e){return void o(e)}else t(null)}))),t},o=function(e,r,n){if(null===e)return null;var t=e.apply(void 0,r);return function(e,r){e&&e._registerWrapper&&e._registerWrapper({name:"stripe-js",version:"1.29.0",startTime:r})}(t,n),t},a=Promise.resolve().then((function(){return i(null)})),s=!1;a.catch((function(e){s||console.warn(e)}));var c=function(){for(var e=arguments.length,r=new Array(e),n=0;n<e;n++)r[n]=arguments[n];s=!0;var t=Date.now();return a.then((function(e){return o(e,r,t)}))};export{c as loadStripe};
@@ -1 +0,0 @@
1
- import a from"./lib/axios.js";var o=a;export{o as default};
@@ -1 +0,0 @@
1
- import t from"../utils.js";import e from"../core/settle.js";import r from"../core/buildFullPath.js";import o from"../helpers/buildURL.js";import a from"http";import n from"https";import s from"../../../follow-redirects/index.js";import i from"url";import p from"zlib";import f from"../../package.json.js";import u from"../core/createError.js";import h from"../core/enhanceError.js";var m=s.http,c=s.https,d=/https:?/;function l(t,e,r){if(t.hostname=e.host,t.host=e.host,t.port=e.port,t.path=r,e.auth){var o=Buffer.from(e.auth.username+":"+e.auth.password,"utf8").toString("base64");t.headers["Proxy-Authorization"]="Basic "+o}t.beforeRedirect=function(t){t.headers.host=t.host,l(t,e,t.href)}}var g=function(s){return new Promise((function(g,v){var x=function(t){g(t)},A=function(t){v(t)},E=s.data,R=s.headers;if("User-Agent"in R||"user-agent"in R?R["User-Agent"]||R["user-agent"]||(delete R["User-Agent"],delete R["user-agent"]):R["User-Agent"]="axios/"+f.version,E&&!t.isStream(E)){if(Buffer.isBuffer(E));else if(t.isArrayBuffer(E))E=Buffer.from(new Uint8Array(E));else{if(!t.isString(E))return A(u("Data after transformation must be a string, an ArrayBuffer, a Buffer, or a Stream",s));E=Buffer.from(E,"utf-8")}R["Content-Length"]=E.length}var y=void 0;s.auth&&(y=(s.auth.username||"")+":"+(s.auth.password||""));var b=r(s.baseURL,s.url),B=i.parse(b),T=B.protocol||"http:";if(!y&&B.auth){var U=B.auth.split(":");y=(U[0]||"")+":"+(U[1]||"")}y&&delete R.Authorization;var C=d.test(T),L=C?s.httpsAgent:s.httpAgent,j={path:o(B.path,s.params,s.paramsSerializer).replace(/^\?/,""),method:s.method.toUpperCase(),headers:R,agent:L,agents:{http:s.httpAgent,https:s.httpsAgent},auth:y};s.socketPath?j.socketPath=s.socketPath:(j.hostname=B.hostname,j.port=B.port);var O,S=s.proxy;if(!S&&!1!==S){var _=T.slice(0,-1)+"_proxy",P=process.env[_]||process.env[_.toUpperCase()];if(P){var w=i.parse(P),z=process.env.no_proxy||process.env.NO_PROXY,k=!0;if(z)k=!z.split(",").map((function(t){return t.trim()})).some((function(t){return!!t&&("*"===t||("."===t[0]&&B.hostname.substr(B.hostname.length-t.length)===t||B.hostname===t))}));if(k&&(S={host:w.hostname,port:w.port,protocol:w.protocol},w.auth)){var N=w.auth.split(":");S.auth={username:N[0],password:N[1]}}}}S&&(j.headers.host=B.hostname+(B.port?":"+B.port:""),l(j,S,T+"//"+B.hostname+(B.port?":"+B.port:"")+j.path));var D=C&&(!S||d.test(S.protocol));s.transport?O=s.transport:0===s.maxRedirects?O=D?n:a:(s.maxRedirects&&(j.maxRedirects=s.maxRedirects),O=D?c:m),s.maxBodyLength>-1&&(j.maxBodyLength=s.maxBodyLength);var M=O.request(j,(function(r){if(!M.aborted){var o=r,a=r.req||M;if(204!==r.statusCode&&"HEAD"!==a.method&&!1!==s.decompress)switch(r.headers["content-encoding"]){case"gzip":case"compress":case"deflate":o=o.pipe(p.createUnzip()),delete r.headers["content-encoding"]}var n={status:r.statusCode,statusText:r.statusMessage,headers:r.headers,config:s,request:a};if("stream"===s.responseType)n.data=o,e(x,A,n);else{var i=[],f=0;o.on("data",(function(t){i.push(t),f+=t.length,s.maxContentLength>-1&&f>s.maxContentLength&&(o.destroy(),A(u("maxContentLength size of "+s.maxContentLength+" exceeded",s,null,a)))})),o.on("error",(function(t){M.aborted||A(h(t,s,null,a))})),o.on("end",(function(){var r=Buffer.concat(i);"arraybuffer"!==s.responseType&&(r=r.toString(s.responseEncoding),s.responseEncoding&&"utf8"!==s.responseEncoding||(r=t.stripBOM(r))),n.data=r,e(x,A,n)}))}}}));if(M.on("error",(function(t){M.aborted&&"ERR_FR_TOO_MANY_REDIRECTS"!==t.code||A(h(t,s,null,M))})),s.timeout){var I=parseInt(s.timeout,10);if(isNaN(I))return void A(u("error trying to parse `config.timeout` to int",s,"ERR_PARSE_TIMEOUT",M));M.setTimeout(I,(function(){M.abort(),A(u("timeout of "+I+"ms exceeded",s,s.transitional&&s.transitional.clarifyTimeoutError?"ETIMEDOUT":"ECONNABORTED",M))}))}s.cancelToken&&s.cancelToken.promise.then((function(t){M.aborted||(M.abort(),A(t))})),t.isStream(E)?E.on("error",(function(t){A(h(t,s,null,M))})).pipe(M):M.end(E)}))};export{g as default};
@@ -1 +0,0 @@
1
- import e from"../utils.js";import o from"../core/settle.js";import r from"../helpers/cookies.js";import t from"../helpers/buildURL.js";import s from"../core/buildFullPath.js";import n from"../helpers/parseHeaders.js";import a from"../helpers/isURLSameOrigin.js";import i from"../core/createError.js";var u=function(u){return new Promise((function(l,d){var p=u.data,m=u.headers,f=u.responseType;e.isFormData(p)&&delete m["Content-Type"];var c=new XMLHttpRequest;if(u.auth){var h=u.auth.username||"",E=u.auth.password?unescape(encodeURIComponent(u.auth.password)):"";m.Authorization="Basic "+btoa(h+":"+E)}var T=s(u.baseURL,u.url);function R(){if(c){var e="getAllResponseHeaders"in c?n(c.getAllResponseHeaders()):null,r={data:f&&"text"!==f&&"json"!==f?c.response:c.responseText,status:c.status,statusText:c.statusText,headers:e,config:u,request:c};o(l,d,r),c=null}}if(c.open(u.method.toUpperCase(),t(T,u.params,u.paramsSerializer),!0),c.timeout=u.timeout,"onloadend"in c?c.onloadend=R:c.onreadystatechange=function(){c&&4===c.readyState&&(0!==c.status||c.responseURL&&0===c.responseURL.indexOf("file:"))&&setTimeout(R)},c.onabort=function(){c&&(d(i("Request aborted",u,"ECONNABORTED",c)),c=null)},c.onerror=function(){d(i("Network Error",u,null,c)),c=null},c.ontimeout=function(){var e="timeout of "+u.timeout+"ms exceeded";u.timeoutErrorMessage&&(e=u.timeoutErrorMessage),d(i(e,u,u.transitional&&u.transitional.clarifyTimeoutError?"ETIMEDOUT":"ECONNABORTED",c)),c=null},e.isStandardBrowserEnv()){var g=(u.withCredentials||a(T))&&u.xsrfCookieName?r.read(u.xsrfCookieName):void 0;g&&(m[u.xsrfHeaderName]=g)}"setRequestHeader"in c&&e.forEach(m,(function(e,o){void 0===p&&"content-type"===o.toLowerCase()?delete m[o]:c.setRequestHeader(o,e)})),e.isUndefined(u.withCredentials)||(c.withCredentials=!!u.withCredentials),f&&"json"!==f&&(c.responseType=u.responseType),"function"==typeof u.onDownloadProgress&&c.addEventListener("progress",u.onDownloadProgress),"function"==typeof u.onUploadProgress&&c.upload&&c.upload.addEventListener("progress",u.onUploadProgress),u.cancelToken&&u.cancelToken.promise.then((function(e){c&&(c.abort(),d(e),c=null)})),p||(p=null),c.send(p)}))};export{u as default};
@@ -1 +0,0 @@
1
- import r from"./utils.js";import e from"./helpers/bind.js";import o from"./core/Axios.js";import t from"./core/mergeConfig.js";import s from"./defaults.js";import i from"./cancel/Cancel.js";import n from"./cancel/CancelToken.js";import a from"./cancel/isCancel.js";import m from"./helpers/spread.js";import l from"./helpers/isAxiosError.js";function p(t){var s=new o(t),i=e(o.prototype.request,s);return r.extend(i,o.prototype,s),r.extend(i,s),i}var c=p(s);c.Axios=o,c.create=function(r){return p(t(c.defaults,r))},c.Cancel=i,c.CancelToken=n,c.isCancel=a,c.all=function(r){return Promise.all(r)},c.spread=m,c.isAxiosError=l;var f=c,u=c;f.default=u;export{f as default};
@@ -1 +0,0 @@
1
- function t(t){this.message=t}t.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},t.prototype.__CANCEL__=!0;var e=t;export{e as default};
@@ -1 +0,0 @@
1
- import n from"./Cancel.js";function o(o){if("function"!=typeof o)throw new TypeError("executor must be a function.");var e;this.promise=new Promise((function(n){e=n}));var t=this;o((function(o){t.reason||(t.reason=new n(o),e(t.reason))}))}o.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},o.source=function(){var n;return{token:new o((function(o){n=o})),cancel:n}};var e=o;export{e as default};
@@ -1 +0,0 @@
1
- var r=function(r){return!(!r||!r.__CANCEL__)};export{r as default};
@@ -1 +0,0 @@
1
- import t from"../utils.js";import e from"../helpers/buildURL.js";import r from"./InterceptorManager.js";import o from"./dispatchRequest.js";import s from"./mergeConfig.js";import i from"../helpers/validator.js";var n=i.validators;function a(t){this.defaults=t,this.interceptors={request:new r,response:new r}}a.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{}).url=arguments[0]:t=t||{},(t=s(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e=t.transitional;void 0!==e&&i.assertOptions(e,{silentJSONParsing:n.transitional(n.boolean,"1.0.0"),forcedJSONParsing:n.transitional(n.boolean,"1.0.0"),clarifyTimeoutError:n.transitional(n.boolean,"1.0.0")},!1);var r=[],a=!0;this.interceptors.request.forEach((function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(a=a&&e.synchronous,r.unshift(e.fulfilled,e.rejected))}));var f,h=[];if(this.interceptors.response.forEach((function(t){h.push(t.fulfilled,t.rejected)})),!a){var u=[o,void 0];for(Array.prototype.unshift.apply(u,r),u=u.concat(h),f=Promise.resolve(t);u.length;)f=f.then(u.shift(),u.shift());return f}for(var l=t;r.length;){var p=r.shift(),c=r.shift();try{l=p(l)}catch(t){c(t);break}}try{f=o(l)}catch(t){return Promise.reject(t)}for(;h.length;)f=f.then(h.shift(),h.shift());return f},a.prototype.getUri=function(t){return t=s(this.defaults,t),e(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},t.forEach(["delete","get","head","options"],(function(t){a.prototype[t]=function(e,r){return this.request(s(r||{},{method:t,url:e,data:(r||{}).data}))}})),t.forEach(["post","put","patch"],(function(t){a.prototype[t]=function(e,r,o){return this.request(s(o||{},{method:t,url:e,data:r}))}}));var f=a;export{f as default};
@@ -1 +0,0 @@
1
- import n from"../utils.js";function t(){this.handlers=[]}t.prototype.use=function(n,t,e){return this.handlers.push({fulfilled:n,rejected:t,synchronous:!!e&&e.synchronous,runWhen:e?e.runWhen:null}),this.handlers.length-1},t.prototype.eject=function(n){this.handlers[n]&&(this.handlers[n]=null)},t.prototype.forEach=function(t){n.forEach(this.handlers,(function(n){null!==n&&t(n)}))};var e=t;export{e as default};
@@ -1 +0,0 @@
1
- import r from"../helpers/isAbsoluteURL.js";import e from"../helpers/combineURLs.js";var o=function(o,s){return o&&!r(s)?e(o,s):s};export{o as default};
@@ -1 +0,0 @@
1
- import r from"./enhanceError.js";var e=function(e,n,o,a,t){var f=new Error(e);return r(f,n,o,a,t)};export{e as default};
@@ -1 +0,0 @@
1
- import e from"../utils.js";import a from"./transformData.js";import r from"../cancel/isCancel.js";import t from"../defaults.js";function s(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var o=function(o){return s(o),o.headers=o.headers||{},o.data=a.call(o,o.data,o.headers,o.transformRequest),o.headers=e.merge(o.headers.common||{},o.headers[o.method]||{},o.headers),e.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete o.headers[e]})),(o.adapter||t.adapter)(o).then((function(e){return s(o),e.data=a.call(o,e.data,e.headers,o.transformResponse),e}),(function(e){return r(e)||(s(o),e&&e.response&&(e.response.data=a.call(o,e.response.data,e.response.headers,o.transformResponse))),Promise.reject(e)}))};export{o as default};
@@ -1 +0,0 @@
1
- var e=function(e,i,s,t,n){return e.config=i,s&&(e.code=s),e.request=t,e.response=n,e.isAxiosError=!0,e.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},e};export{e as default};
@@ -1 +0,0 @@
1
- import e from"../utils.js";var n=function(n,t){t=t||{};var o={},a=["url","method","data"],r=["headers","auth","proxy","params"],i=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],s=["validateStatus"];function c(n,t){return e.isPlainObject(n)&&e.isPlainObject(t)?e.merge(n,t):e.isPlainObject(t)?e.merge({},t):e.isArray(t)?t.slice():t}function d(a){e.isUndefined(t[a])?e.isUndefined(n[a])||(o[a]=c(void 0,n[a])):o[a]=c(n[a],t[a])}e.forEach(a,(function(n){e.isUndefined(t[n])||(o[n]=c(void 0,t[n]))})),e.forEach(r,d),e.forEach(i,(function(a){e.isUndefined(t[a])?e.isUndefined(n[a])||(o[a]=c(void 0,n[a])):o[a]=c(void 0,t[a])})),e.forEach(s,(function(e){e in t?o[e]=c(n[e],t[e]):e in n&&(o[e]=c(void 0,n[e]))}));var f=a.concat(r).concat(i).concat(s),u=Object.keys(n).concat(Object.keys(t)).filter((function(e){return-1===f.indexOf(e)}));return e.forEach(u,d),o};export{n as default};
@@ -1 +0,0 @@
1
- import t from"./createError.js";var a=function(a,s,e){var r=e.config.validateStatus;e.status&&r&&!r(e.status)?s(t("Request failed with status code "+e.status,e.config,null,e.request,e)):a(e)};export{a as default};
@@ -1 +0,0 @@
1
- import r from"../utils.js";import t from"../defaults.js";var o=function(o,a,f){var i=this||t;return r.forEach(f,(function(r){o=r.call(i,o,a)})),o};export{o as default};
@@ -1 +0,0 @@
1
- import e from"./utils.js";import r from"./helpers/normalizeHeaderName.js";import t from"./core/enhanceError.js";import n from"./adapters/xhr.js";import o from"./adapters/http.js";var i={"Content-Type":"application/x-www-form-urlencoded"};function a(r,t){!e.isUndefined(r)&&e.isUndefined(r["Content-Type"])&&(r["Content-Type"]=t)}var s,f={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:("undefined"!=typeof XMLHttpRequest?s=n:"undefined"!=typeof process&&"[object process]"===Object.prototype.toString.call(process)&&(s=o),s),transformRequest:[function(t,n){return r(n,"Accept"),r(n,"Content-Type"),e.isFormData(t)||e.isArrayBuffer(t)||e.isBuffer(t)||e.isStream(t)||e.isFile(t)||e.isBlob(t)?t:e.isArrayBufferView(t)?t.buffer:e.isURLSearchParams(t)?(a(n,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):e.isObject(t)||n&&"application/json"===n["Content-Type"]?(a(n,"application/json"),function(r,t,n){if(e.isString(r))try{return(t||JSON.parse)(r),e.trim(r)}catch(e){if("SyntaxError"!==e.name)throw e}return(n||JSON.stringify)(r)}(t)):t}],transformResponse:[function(r){var n=this.transitional,o=n&&n.silentJSONParsing,i=n&&n.forcedJSONParsing,a=!o&&"json"===this.responseType;if(a||i&&e.isString(r)&&r.length)try{return JSON.parse(r)}catch(e){if(a){if("SyntaxError"===e.name)throw t(e,this,"E_JSON_PARSE");throw e}}return r}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(e){return e>=200&&e<300}};f.headers={common:{Accept:"application/json, text/plain, */*"}},e.forEach(["delete","get","head"],(function(e){f.headers[e]={}})),e.forEach(["post","put","patch"],(function(r){f.headers[r]=e.merge(i)}));var p=f;export{p as default};
@@ -1 +0,0 @@
1
- var r=function(r,n){return function(){for(var t=new Array(arguments.length),e=0;e<t.length;e++)t[e]=arguments[e];return r.apply(n,t)}};export{r as default};
@@ -1 +0,0 @@
1
- import e from"../utils.js";function r(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var i=function(i,n,a){if(!n)return i;var t;if(a)t=a(n);else if(e.isURLSearchParams(n))t=n.toString();else{var c=[];e.forEach(n,(function(i,n){null!=i&&(e.isArray(i)?n+="[]":i=[i],e.forEach(i,(function(i){e.isDate(i)?i=i.toISOString():e.isObject(i)&&(i=JSON.stringify(i)),c.push(r(n)+"="+r(i))})))})),t=c.join("&")}if(t){var f=i.indexOf("#");-1!==f&&(i=i.slice(0,f)),i+=(-1===i.indexOf("?")?"?":"&")+t}return i};export{i as default};
@@ -1 +0,0 @@
1
- var e=function(e,r){return r?e.replace(/\/+$/,"")+"/"+r.replace(/^\/+/,""):e};export{e as default};
@@ -1 +0,0 @@
1
- import e from"../utils.js";var n=e.isStandardBrowserEnv()?{write:function(n,t,o,r,i,u){var s=[];s.push(n+"="+encodeURIComponent(t)),e.isNumber(o)&&s.push("expires="+new Date(o).toGMTString()),e.isString(r)&&s.push("path="+r),e.isString(i)&&s.push("domain="+i),!0===u&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var n=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return n?decodeURIComponent(n[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}};export{n as default};
@@ -1 +0,0 @@
1
- var t=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)};export{t as default};
@@ -1 +0,0 @@
1
- var r=function(r){return"object"==typeof r&&!0===r.isAxiosError};export{r as default};
@@ -1 +0,0 @@
1
- import t from"../utils.js";var r=t.isStandardBrowserEnv()?function(){var r,e=/(msie|trident)/i.test(navigator.userAgent),o=document.createElement("a");function a(t){var r=t;return e&&(o.setAttribute("href",r),r=o.href),o.setAttribute("href",r),{href:o.href,protocol:o.protocol?o.protocol.replace(/:$/,""):"",host:o.host,search:o.search?o.search.replace(/^\?/,""):"",hash:o.hash?o.hash.replace(/^#/,""):"",hostname:o.hostname,port:o.port,pathname:"/"===o.pathname.charAt(0)?o.pathname:"/"+o.pathname}}return r=a(window.location.href),function(e){var o=t.isString(e)?a(e):e;return o.protocol===r.protocol&&o.host===r.host}}():function(){return!0};export{r as default};
@@ -1 +0,0 @@
1
- import e from"../utils.js";var t=function(t,o){e.forEach(t,(function(e,r){r!==o&&r.toUpperCase()===o.toUpperCase()&&(t[o]=e,delete t[r])}))};export{t as default};
@@ -1 +0,0 @@
1
- import t from"../utils.js";var e=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"],r=function(r){var i,o,n,a={};return r?(t.forEach(r.split("\n"),(function(r){if(n=r.indexOf(":"),i=t.trim(r.substr(0,n)).toLowerCase(),o=t.trim(r.substr(n+1)),i){if(a[i]&&e.indexOf(i)>=0)return;a[i]="set-cookie"===i?(a[i]?a[i]:[]).concat([o]):a[i]?a[i]+", "+o:o}})),a):a};export{r as default};
@@ -1 +0,0 @@
1
- var n=function(n){return function(r){return n.apply(null,r)}};export{n as default};
@@ -1 +0,0 @@
1
- import r from"../../package.json.js";var n={};["object","boolean","number","function","string","symbol"].forEach((function(r,o){n[r]=function(n){return typeof n===r||"a"+(o<1?"n ":" ")+r}}));var o={},e=r.version.split(".");function t(r,n){for(var o=n?n.split("."):e,t=r.split("."),i=0;i<3;i++){if(o[i]>t[i])return!0;if(o[i]<t[i])return!1}return!1}n.transitional=function(n,e,i){var a=e&&t(e);function s(n,o){return"[Axios v"+r.version+"] Transitional option '"+n+"'"+o+(i?". "+i:"")}return function(r,t,i){if(!1===n)throw new Error(s(t," has been removed in "+e));return a&&!o[t]&&(o[t]=!0,console.warn(s(t," has been deprecated since v"+e+" and will be removed in the near future"))),!n||n(r,t,i)}};var i={isOlderVersion:t,assertOptions:function(r,n,o){if("object"!=typeof r)throw new TypeError("options must be an object");for(var e=Object.keys(r),t=e.length;t-- >0;){var i=e[t],a=n[i];if(a){var s=r[i],f=void 0===s||a(s,i,r);if(!0!==f)throw new TypeError("option "+i+" must be "+f)}else if(!0!==o)throw Error("Unknown option "+i)}},validators:n};export{i as default};
@@ -1 +0,0 @@
1
- import r from"./helpers/bind.js";var t=Object.prototype.toString;function n(r){return"[object Array]"===t.call(r)}function e(r){return void 0===r}function o(r){return null!==r&&"object"==typeof r}function i(r){if("[object Object]"!==t.call(r))return!1;var n=Object.getPrototypeOf(r);return null===n||n===Object.prototype}function u(r){return"[object Function]"===t.call(r)}function f(r,t){if(null!=r)if("object"!=typeof r&&(r=[r]),n(r))for(var e=0,o=r.length;e<o;e++)t.call(null,r[e],e,r);else for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&t.call(null,r[i],i,r)}var c={isArray:n,isArrayBuffer:function(r){return"[object ArrayBuffer]"===t.call(r)},isBuffer:function(r){return null!==r&&!e(r)&&null!==r.constructor&&!e(r.constructor)&&"function"==typeof r.constructor.isBuffer&&r.constructor.isBuffer(r)},isFormData:function(r){return"undefined"!=typeof FormData&&r instanceof FormData},isArrayBufferView:function(r){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(r):r&&r.buffer&&r.buffer instanceof ArrayBuffer},isString:function(r){return"string"==typeof r},isNumber:function(r){return"number"==typeof r},isObject:o,isPlainObject:i,isUndefined:e,isDate:function(r){return"[object Date]"===t.call(r)},isFile:function(r){return"[object File]"===t.call(r)},isBlob:function(r){return"[object Blob]"===t.call(r)},isFunction:u,isStream:function(r){return o(r)&&u(r.pipe)},isURLSearchParams:function(r){return"undefined"!=typeof URLSearchParams&&r instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&("undefined"!=typeof window&&"undefined"!=typeof document)},forEach:f,merge:function r(){var t={};function e(e,o){i(t[o])&&i(e)?t[o]=r(t[o],e):i(e)?t[o]=r({},e):n(e)?t[o]=e.slice():t[o]=e}for(var o=0,u=arguments.length;o<u;o++)f(arguments[o],e);return t},extend:function(t,n,e){return f(n,(function(n,o){t[o]=e&&"function"==typeof n?r(n,e):n})),t},trim:function(r){return r.trim?r.trim():r.replace(/^\s+|\s+$/g,"")},stripBOM:function(r){return 65279===r.charCodeAt(0)&&(r=r.slice(1)),r}};export{c as default};
@@ -1 +0,0 @@
1
- var s=[["axios@0.21.4","/Users/ikas/Projects/ikas-storefront"]],e="axios@0.21.4",a="axios@0.21.4",r=!1,i="sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",t="/axios",o={},n={type:"version",registry:!0,raw:"axios@0.21.4",name:"axios",escapedName:"axios",rawSpec:"0.21.4",saveSpec:null,fetchSpec:"0.21.4"},d=["/"],c="https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",p="0.21.4",m="/Users/ikas/Projects/ikas-storefront",l={name:"Matt Zabriskie"},u={"./lib/adapters/http.js":"./lib/adapters/xhr.js"},x={url:"https://github.com/axios/axios/issues"},g=[{path:"./dist/axios.min.js",threshold:"5kB"}],h={"follow-redirects":"^1.14.0"},b="Promise based HTTP client for the browser and node.js",j={coveralls:"^3.0.0","es6-promise":"^4.2.4",grunt:"^1.3.0","grunt-banner":"^0.6.0","grunt-cli":"^1.2.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","grunt-eslint":"^23.0.0","grunt-karma":"^4.0.0","grunt-mocha-test":"^0.13.3","grunt-ts":"^6.0.0-beta.19","grunt-webpack":"^4.0.2","istanbul-instrumenter-loader":"^1.0.0","jasmine-core":"^2.4.1",karma:"^6.3.2","karma-chrome-launcher":"^3.1.0","karma-firefox-launcher":"^2.1.0","karma-jasmine":"^1.1.1","karma-jasmine-ajax":"^0.1.13","karma-safari-launcher":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-sinon":"^1.0.5","karma-sourcemap-loader":"^0.3.8","karma-webpack":"^4.0.2","load-grunt-tasks":"^3.5.2",minimist:"^1.2.0",mocha:"^8.2.1",sinon:"^4.5.0","terser-webpack-plugin":"^4.2.3",typescript:"^4.0.5","url-search-params":"^0.10.0",webpack:"^4.44.2","webpack-dev-server":"^3.11.0"},k="https://axios-http.com",v="dist/axios.min.js",f=["xhr","http","ajax","promise","node"],w="MIT",_="index.js",y="axios",H={type:"git",url:"git+https://github.com/axios/axios.git"},N={build:"NODE_ENV=production grunt build",coveralls:"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",examples:"node ./examples/server.js",fix:"eslint --fix lib/**/*.js",postversion:"git push && git push --tags",preversion:"npm test",start:"node ./sandbox/server.js",test:"grunt test",version:"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json"},V="./index.d.ts",q="dist/axios.min.js",A="0.21.4",P={_args:s,_from:"axios@0.21.4",_id:a,_inBundle:false,_integrity:i,_location:"/axios",_phantomChildren:o,_requested:n,_requiredBy:d,_resolved:c,_spec:"0.21.4",_where:m,author:l,browser:u,bugs:x,bundlesize:g,dependencies:h,description:b,devDependencies:j,homepage:"https://axios-http.com",jsdelivr:"dist/axios.min.js",keywords:f,license:"MIT",main:"index.js",name:"axios",repository:H,scripts:N,typings:"./index.d.ts",unpkg:q,version:"0.21.4"};export{s as _args,e as _from,a as _id,r as _inBundle,i as _integrity,t as _location,o as _phantomChildren,n as _requested,d as _requiredBy,c as _resolved,p as _spec,m as _where,l as author,u as browser,x as bugs,g as bundlesize,P as default,h as dependencies,b as description,j as devDependencies,k as homepage,v as jsdelivr,f as keywords,w as license,_ as main,y as name,H as repository,N as scripts,V as typings,q as unpkg,A as version};