@ikas/storefront 3.0.0-beta.1 → 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 (1682) hide show
  1. package/package.json +40 -98
  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/__generated__/global-types.d.ts +0 -772
  356. package/build/__generated__/global-types.js +0 -1
  357. package/build/_virtual/Observable.js_commonjs-proxy.js +0 -1
  358. package/build/_virtual/Parser.js_commonjs-proxy.js +0 -1
  359. package/build/_virtual/ReactPropTypesSecret.js_commonjs-proxy.js +0 -1
  360. package/build/_virtual/Tokenizer.js_commonjs-proxy.js +0 -1
  361. package/build/_virtual/_DataView.js_commonjs-proxy.js +0 -1
  362. package/build/_virtual/_Hash.js_commonjs-proxy.js +0 -1
  363. package/build/_virtual/_ListCache.js_commonjs-proxy.js +0 -1
  364. package/build/_virtual/_Map.js_commonjs-proxy.js +0 -1
  365. package/build/_virtual/_MapCache.js_commonjs-proxy.js +0 -1
  366. package/build/_virtual/_Promise.js_commonjs-proxy.js +0 -1
  367. package/build/_virtual/_Set.js_commonjs-proxy.js +0 -1
  368. package/build/_virtual/_SetCache.js_commonjs-proxy.js +0 -1
  369. package/build/_virtual/_Stack.js_commonjs-proxy.js +0 -1
  370. package/build/_virtual/_Symbol.js_commonjs-proxy.js +0 -1
  371. package/build/_virtual/_Uint8Array.js_commonjs-proxy.js +0 -1
  372. package/build/_virtual/_WeakMap.js_commonjs-proxy.js +0 -1
  373. package/build/_virtual/_apply.js_commonjs-proxy.js +0 -1
  374. package/build/_virtual/_arrayAggregator.js_commonjs-proxy.js +0 -1
  375. package/build/_virtual/_arrayEach.js_commonjs-proxy.js +0 -1
  376. package/build/_virtual/_arrayFilter.js_commonjs-proxy.js +0 -1
  377. package/build/_virtual/_arrayIncludes.js_commonjs-proxy.js +0 -1
  378. package/build/_virtual/_arrayIncludesWith.js_commonjs-proxy.js +0 -1
  379. package/build/_virtual/_arrayLikeKeys.js_commonjs-proxy.js +0 -1
  380. package/build/_virtual/_arrayMap.js_commonjs-proxy.js +0 -1
  381. package/build/_virtual/_arrayPush.js_commonjs-proxy.js +0 -1
  382. package/build/_virtual/_arraySome.js_commonjs-proxy.js +0 -1
  383. package/build/_virtual/_assignValue.js_commonjs-proxy.js +0 -1
  384. package/build/_virtual/_assocIndexOf.js_commonjs-proxy.js +0 -1
  385. package/build/_virtual/_baseAggregator.js_commonjs-proxy.js +0 -1
  386. package/build/_virtual/_baseAssign.js_commonjs-proxy.js +0 -1
  387. package/build/_virtual/_baseAssignIn.js_commonjs-proxy.js +0 -1
  388. package/build/_virtual/_baseAssignValue.js_commonjs-proxy.js +0 -1
  389. package/build/_virtual/_baseClone.js_commonjs-proxy.js +0 -1
  390. package/build/_virtual/_baseCreate.js_commonjs-proxy.js +0 -1
  391. package/build/_virtual/_baseEach.js_commonjs-proxy.js +0 -1
  392. package/build/_virtual/_baseFindIndex.js_commonjs-proxy.js +0 -1
  393. package/build/_virtual/_baseFlatten.js_commonjs-proxy.js +0 -1
  394. package/build/_virtual/_baseFor.js_commonjs-proxy.js +0 -1
  395. package/build/_virtual/_baseForOwn.js_commonjs-proxy.js +0 -1
  396. package/build/_virtual/_baseGet.js_commonjs-proxy.js +0 -1
  397. package/build/_virtual/_baseGetAllKeys.js_commonjs-proxy.js +0 -1
  398. package/build/_virtual/_baseGetTag.js_commonjs-proxy.js +0 -1
  399. package/build/_virtual/_baseHasIn.js_commonjs-proxy.js +0 -1
  400. package/build/_virtual/_baseIndexOf.js_commonjs-proxy.js +0 -1
  401. package/build/_virtual/_baseIsArguments.js_commonjs-proxy.js +0 -1
  402. package/build/_virtual/_baseIsEqual.js_commonjs-proxy.js +0 -1
  403. package/build/_virtual/_baseIsEqualDeep.js_commonjs-proxy.js +0 -1
  404. package/build/_virtual/_baseIsMap.js_commonjs-proxy.js +0 -1
  405. package/build/_virtual/_baseIsMatch.js_commonjs-proxy.js +0 -1
  406. package/build/_virtual/_baseIsNaN.js_commonjs-proxy.js +0 -1
  407. package/build/_virtual/_baseIsNative.js_commonjs-proxy.js +0 -1
  408. package/build/_virtual/_baseIsSet.js_commonjs-proxy.js +0 -1
  409. package/build/_virtual/_baseIsTypedArray.js_commonjs-proxy.js +0 -1
  410. package/build/_virtual/_baseIteratee.js_commonjs-proxy.js +0 -1
  411. package/build/_virtual/_baseKeys.js_commonjs-proxy.js +0 -1
  412. package/build/_virtual/_baseKeysIn.js_commonjs-proxy.js +0 -1
  413. package/build/_virtual/_baseMap.js_commonjs-proxy.js +0 -1
  414. package/build/_virtual/_baseMatches.js_commonjs-proxy.js +0 -1
  415. package/build/_virtual/_baseMatchesProperty.js_commonjs-proxy.js +0 -1
  416. package/build/_virtual/_baseOrderBy.js_commonjs-proxy.js +0 -1
  417. package/build/_virtual/_baseProperty.js_commonjs-proxy.js +0 -1
  418. package/build/_virtual/_basePropertyDeep.js_commonjs-proxy.js +0 -1
  419. package/build/_virtual/_baseRest.js_commonjs-proxy.js +0 -1
  420. package/build/_virtual/_baseSetToString.js_commonjs-proxy.js +0 -1
  421. package/build/_virtual/_baseSortBy.js_commonjs-proxy.js +0 -1
  422. package/build/_virtual/_baseTimes.js_commonjs-proxy.js +0 -1
  423. package/build/_virtual/_baseToString.js_commonjs-proxy.js +0 -1
  424. package/build/_virtual/_baseUnary.js_commonjs-proxy.js +0 -1
  425. package/build/_virtual/_baseUniq.js_commonjs-proxy.js +0 -1
  426. package/build/_virtual/_cacheHas.js_commonjs-proxy.js +0 -1
  427. package/build/_virtual/_castFunction.js_commonjs-proxy.js +0 -1
  428. package/build/_virtual/_castPath.js_commonjs-proxy.js +0 -1
  429. package/build/_virtual/_cloneArrayBuffer.js_commonjs-proxy.js +0 -1
  430. package/build/_virtual/_cloneBuffer.js_commonjs-proxy.js +0 -1
  431. package/build/_virtual/_cloneDataView.js_commonjs-proxy.js +0 -1
  432. package/build/_virtual/_cloneRegExp.js_commonjs-proxy.js +0 -1
  433. package/build/_virtual/_cloneSymbol.js_commonjs-proxy.js +0 -1
  434. package/build/_virtual/_cloneTypedArray.js_commonjs-proxy.js +0 -1
  435. package/build/_virtual/_commonjsHelpers.js +0 -1
  436. package/build/_virtual/_compareAscending.js_commonjs-proxy.js +0 -1
  437. package/build/_virtual/_compareMultiple.js_commonjs-proxy.js +0 -1
  438. package/build/_virtual/_copyArray.js_commonjs-proxy.js +0 -1
  439. package/build/_virtual/_copyObject.js_commonjs-proxy.js +0 -1
  440. package/build/_virtual/_copySymbols.js_commonjs-proxy.js +0 -1
  441. package/build/_virtual/_copySymbolsIn.js_commonjs-proxy.js +0 -1
  442. package/build/_virtual/_coreJsData.js_commonjs-proxy.js +0 -1
  443. package/build/_virtual/_createAggregator.js_commonjs-proxy.js +0 -1
  444. package/build/_virtual/_createBaseEach.js_commonjs-proxy.js +0 -1
  445. package/build/_virtual/_createBaseFor.js_commonjs-proxy.js +0 -1
  446. package/build/_virtual/_createSet.js_commonjs-proxy.js +0 -1
  447. package/build/_virtual/_defineProperty.js_commonjs-proxy.js +0 -1
  448. package/build/_virtual/_equalArrays.js_commonjs-proxy.js +0 -1
  449. package/build/_virtual/_equalByTag.js_commonjs-proxy.js +0 -1
  450. package/build/_virtual/_equalObjects.js_commonjs-proxy.js +0 -1
  451. package/build/_virtual/_freeGlobal.js_commonjs-proxy.js +0 -1
  452. package/build/_virtual/_getAllKeys.js_commonjs-proxy.js +0 -1
  453. package/build/_virtual/_getAllKeysIn.js_commonjs-proxy.js +0 -1
  454. package/build/_virtual/_getMapData.js_commonjs-proxy.js +0 -1
  455. package/build/_virtual/_getMatchData.js_commonjs-proxy.js +0 -1
  456. package/build/_virtual/_getNative.js_commonjs-proxy.js +0 -1
  457. package/build/_virtual/_getPrototype.js_commonjs-proxy.js +0 -1
  458. package/build/_virtual/_getRawTag.js_commonjs-proxy.js +0 -1
  459. package/build/_virtual/_getSymbols.js_commonjs-proxy.js +0 -1
  460. package/build/_virtual/_getSymbolsIn.js_commonjs-proxy.js +0 -1
  461. package/build/_virtual/_getTag.js_commonjs-proxy.js +0 -1
  462. package/build/_virtual/_getValue.js_commonjs-proxy.js +0 -1
  463. package/build/_virtual/_hasPath.js_commonjs-proxy.js +0 -1
  464. package/build/_virtual/_hashClear.js_commonjs-proxy.js +0 -1
  465. package/build/_virtual/_hashDelete.js_commonjs-proxy.js +0 -1
  466. package/build/_virtual/_hashGet.js_commonjs-proxy.js +0 -1
  467. package/build/_virtual/_hashHas.js_commonjs-proxy.js +0 -1
  468. package/build/_virtual/_hashSet.js_commonjs-proxy.js +0 -1
  469. package/build/_virtual/_initCloneArray.js_commonjs-proxy.js +0 -1
  470. package/build/_virtual/_initCloneByTag.js_commonjs-proxy.js +0 -1
  471. package/build/_virtual/_initCloneObject.js_commonjs-proxy.js +0 -1
  472. package/build/_virtual/_isFlattenable.js_commonjs-proxy.js +0 -1
  473. package/build/_virtual/_isIndex.js_commonjs-proxy.js +0 -1
  474. package/build/_virtual/_isIterateeCall.js_commonjs-proxy.js +0 -1
  475. package/build/_virtual/_isKey.js_commonjs-proxy.js +0 -1
  476. package/build/_virtual/_isKeyable.js_commonjs-proxy.js +0 -1
  477. package/build/_virtual/_isMasked.js_commonjs-proxy.js +0 -1
  478. package/build/_virtual/_isPrototype.js_commonjs-proxy.js +0 -1
  479. package/build/_virtual/_isStrictComparable.js_commonjs-proxy.js +0 -1
  480. package/build/_virtual/_listCacheClear.js_commonjs-proxy.js +0 -1
  481. package/build/_virtual/_listCacheDelete.js_commonjs-proxy.js +0 -1
  482. package/build/_virtual/_listCacheGet.js_commonjs-proxy.js +0 -1
  483. package/build/_virtual/_listCacheHas.js_commonjs-proxy.js +0 -1
  484. package/build/_virtual/_listCacheSet.js_commonjs-proxy.js +0 -1
  485. package/build/_virtual/_mapCacheClear.js_commonjs-proxy.js +0 -1
  486. package/build/_virtual/_mapCacheDelete.js_commonjs-proxy.js +0 -1
  487. package/build/_virtual/_mapCacheGet.js_commonjs-proxy.js +0 -1
  488. package/build/_virtual/_mapCacheHas.js_commonjs-proxy.js +0 -1
  489. package/build/_virtual/_mapCacheSet.js_commonjs-proxy.js +0 -1
  490. package/build/_virtual/_mapToArray.js_commonjs-proxy.js +0 -1
  491. package/build/_virtual/_matchesStrictComparable.js_commonjs-proxy.js +0 -1
  492. package/build/_virtual/_memoizeCapped.js_commonjs-proxy.js +0 -1
  493. package/build/_virtual/_nativeCreate.js_commonjs-proxy.js +0 -1
  494. package/build/_virtual/_nativeKeys.js_commonjs-proxy.js +0 -1
  495. package/build/_virtual/_nativeKeysIn.js_commonjs-proxy.js +0 -1
  496. package/build/_virtual/_nodeUtil.js_commonjs-proxy.js +0 -1
  497. package/build/_virtual/_objectToString.js_commonjs-proxy.js +0 -1
  498. package/build/_virtual/_overArg.js_commonjs-proxy.js +0 -1
  499. package/build/_virtual/_overRest.js_commonjs-proxy.js +0 -1
  500. package/build/_virtual/_registry.js_commonjs-proxy.js +0 -1
  501. package/build/_virtual/_root.js_commonjs-proxy.js +0 -1
  502. package/build/_virtual/_setCacheAdd.js_commonjs-proxy.js +0 -1
  503. package/build/_virtual/_setCacheHas.js_commonjs-proxy.js +0 -1
  504. package/build/_virtual/_setToArray.js_commonjs-proxy.js +0 -1
  505. package/build/_virtual/_setToString.js_commonjs-proxy.js +0 -1
  506. package/build/_virtual/_shortOut.js_commonjs-proxy.js +0 -1
  507. package/build/_virtual/_stackClear.js_commonjs-proxy.js +0 -1
  508. package/build/_virtual/_stackDelete.js_commonjs-proxy.js +0 -1
  509. package/build/_virtual/_stackGet.js_commonjs-proxy.js +0 -1
  510. package/build/_virtual/_stackHas.js_commonjs-proxy.js +0 -1
  511. package/build/_virtual/_stackSet.js_commonjs-proxy.js +0 -1
  512. package/build/_virtual/_stream_duplex.js_commonjs-proxy.js +0 -1
  513. package/build/_virtual/_stream_passthrough.js_commonjs-proxy.js +0 -1
  514. package/build/_virtual/_stream_readable.js_commonjs-proxy.js +0 -1
  515. package/build/_virtual/_stream_transform.js_commonjs-proxy.js +0 -1
  516. package/build/_virtual/_stream_writable.js_commonjs-proxy.js +0 -1
  517. package/build/_virtual/_strictIndexOf.js_commonjs-proxy.js +0 -1
  518. package/build/_virtual/_stringToPath.js_commonjs-proxy.js +0 -1
  519. package/build/_virtual/_toKey.js_commonjs-proxy.js +0 -1
  520. package/build/_virtual/_toSource.js_commonjs-proxy.js +0 -1
  521. package/build/_virtual/async_iterator.js_commonjs-proxy.js +0 -1
  522. package/build/_virtual/attributes-to-props.js_commonjs-proxy.js +0 -1
  523. package/build/_virtual/buffer_list.js_commonjs-proxy.js +0 -1
  524. package/build/_virtual/checkPropTypes.js_commonjs-proxy.js +0 -1
  525. package/build/_virtual/constant.js_commonjs-proxy.js +0 -1
  526. package/build/_virtual/decode_codepoint.js_commonjs-proxy.js +0 -1
  527. package/build/_virtual/destroy.js_commonjs-proxy.js +0 -1
  528. package/build/_virtual/dom-to-react.js_commonjs-proxy.js +0 -1
  529. package/build/_virtual/end-of-stream.js_commonjs-proxy.js +0 -1
  530. package/build/_virtual/eq.js_commonjs-proxy.js +0 -1
  531. package/build/_virtual/errors.js_commonjs-proxy.js +0 -1
  532. package/build/_virtual/factoryWithThrowingShims.js_commonjs-proxy.js +0 -1
  533. package/build/_virtual/factoryWithTypeCheckers.js_commonjs-proxy.js +0 -1
  534. package/build/_virtual/from.js_commonjs-proxy.js +0 -1
  535. package/build/_virtual/get.js_commonjs-proxy.js +0 -1
  536. package/build/_virtual/hasIn.js_commonjs-proxy.js +0 -1
  537. package/build/_virtual/html-to-dom.js_commonjs-proxy.js +0 -1
  538. package/build/_virtual/identity.js_commonjs-proxy.js +0 -1
  539. package/build/_virtual/index.js_commonjs-proxy.js +0 -1
  540. package/build/_virtual/index.js_commonjs-proxy10.js +0 -1
  541. package/build/_virtual/index.js_commonjs-proxy11.js +0 -1
  542. package/build/_virtual/index.js_commonjs-proxy12.js +0 -1
  543. package/build/_virtual/index.js_commonjs-proxy13.js +0 -1
  544. package/build/_virtual/index.js_commonjs-proxy2.js +0 -1
  545. package/build/_virtual/index.js_commonjs-proxy3.js +0 -1
  546. package/build/_virtual/index.js_commonjs-proxy4.js +0 -1
  547. package/build/_virtual/index.js_commonjs-proxy5.js +0 -1
  548. package/build/_virtual/index.js_commonjs-proxy6.js +0 -1
  549. package/build/_virtual/index.js_commonjs-proxy7.js +0 -1
  550. package/build/_virtual/index.js_commonjs-proxy8.js +0 -1
  551. package/build/_virtual/index.js_commonjs-proxy9.js +0 -1
  552. package/build/_virtual/inherits.js_commonjs-proxy.js +0 -1
  553. package/build/_virtual/inherits_browser.js_commonjs-proxy.js +0 -1
  554. package/build/_virtual/isArguments.js_commonjs-proxy.js +0 -1
  555. package/build/_virtual/isArray.js_commonjs-proxy.js +0 -1
  556. package/build/_virtual/isArrayLike.js_commonjs-proxy.js +0 -1
  557. package/build/_virtual/isBuffer.js_commonjs-proxy.js +0 -1
  558. package/build/_virtual/isFunction.js_commonjs-proxy.js +0 -1
  559. package/build/_virtual/isLength.js_commonjs-proxy.js +0 -1
  560. package/build/_virtual/isMap.js_commonjs-proxy.js +0 -1
  561. package/build/_virtual/isObject.js_commonjs-proxy.js +0 -1
  562. package/build/_virtual/isObjectLike.js_commonjs-proxy.js +0 -1
  563. package/build/_virtual/isSet.js_commonjs-proxy.js +0 -1
  564. package/build/_virtual/isSymbol.js_commonjs-proxy.js +0 -1
  565. package/build/_virtual/isTypedArray.js_commonjs-proxy.js +0 -1
  566. package/build/_virtual/keys.js_commonjs-proxy.js +0 -1
  567. package/build/_virtual/keysIn.js_commonjs-proxy.js +0 -1
  568. package/build/_virtual/memoize.js_commonjs-proxy.js +0 -1
  569. package/build/_virtual/node.js_commonjs-proxy.js +0 -1
  570. package/build/_virtual/node.js_commonjs-proxy2.js +0 -1
  571. package/build/_virtual/noop.js_commonjs-proxy.js +0 -1
  572. package/build/_virtual/now.js_commonjs-proxy.js +0 -1
  573. package/build/_virtual/parser.mjs_commonjs-proxy.js +0 -1
  574. package/build/_virtual/pipeline.js_commonjs-proxy.js +0 -1
  575. package/build/_virtual/possibleStandardNamesOptimized.js_commonjs-proxy.js +0 -1
  576. package/build/_virtual/property.js_commonjs-proxy.js +0 -1
  577. package/build/_virtual/react-is.development.js_commonjs-proxy.js +0 -1
  578. package/build/_virtual/react-is.production.min.js_commonjs-proxy.js +0 -1
  579. package/build/_virtual/readable.js_commonjs-proxy.js +0 -1
  580. package/build/_virtual/state.js_commonjs-proxy.js +0 -1
  581. package/build/_virtual/stream.js_commonjs-proxy.js +0 -1
  582. package/build/_virtual/string_decoder.js_commonjs-proxy.js +0 -1
  583. package/build/_virtual/stubArray.js_commonjs-proxy.js +0 -1
  584. package/build/_virtual/stubFalse.js_commonjs-proxy.js +0 -1
  585. package/build/_virtual/toNumber.js_commonjs-proxy.js +0 -1
  586. package/build/_virtual/toString.js_commonjs-proxy.js +0 -1
  587. package/build/_virtual/utilities.js_commonjs-proxy.js +0 -1
  588. package/build/_virtual/utilities.js_commonjs-proxy2.js +0 -1
  589. package/build/_virtual/utilities.js_commonjs-proxy3.js +0 -1
  590. package/build/analytics/analytics.d.ts +0 -38
  591. package/build/analytics/analytics.js +0 -1
  592. package/build/analytics/events.d.ts +0 -37
  593. package/build/analytics/events.js +0 -1
  594. package/build/analytics/facebookPixel.d.ts +0 -15
  595. package/build/analytics/facebookPixel.js +0 -1
  596. package/build/analytics/googleAnalytics.d.ts +0 -13
  597. package/build/analytics/googleAnalytics.js +0 -1
  598. package/build/analytics/googleTagManager.d.ts +0 -203
  599. package/build/analytics/googleTagManager.js +0 -1
  600. package/build/analytics/googleUniversal.d.ts +0 -8
  601. package/build/analytics/googleUniversal.js +0 -1
  602. package/build/analytics/head/index.d.ts +0 -7
  603. package/build/analytics/head/index.js +0 -1
  604. package/build/analytics/ikas.d.ts +0 -133
  605. package/build/analytics/ikas.js +0 -1
  606. package/build/analytics/index.d.ts +0 -2
  607. package/build/api/apollo.d.ts +0 -10
  608. package/build/api/apollo.js +0 -1
  609. package/build/api/back-in-stock-reminder/__generated__/listProductBackInStockRemind.d.ts +0 -24
  610. package/build/api/back-in-stock-reminder/__generated__/saveProductBackInStockRemind.d.ts +0 -19
  611. package/build/api/back-in-stock-reminder/index.d.ts +0 -23
  612. package/build/api/back-in-stock-reminder/index.js +0 -1
  613. package/build/api/blog/__generated__/getBlog.d.ts +0 -110
  614. package/build/api/blog/__generated__/listBlog.d.ts +0 -113
  615. package/build/api/blog/__generated__/listBlogCategory.d.ts +0 -65
  616. package/build/api/blog/__generated__/listBlogMetaData.d.ts +0 -57
  617. package/build/api/blog/index.d.ts +0 -32
  618. package/build/api/blog/index.js +0 -1
  619. package/build/api/brand/__generated__/listProductBrand.d.ts +0 -88
  620. package/build/api/brand/index.d.ts +0 -16
  621. package/build/api/brand/index.js +0 -1
  622. package/build/api/cart/__generated__/getCart.d.ts +0 -178
  623. package/build/api/cart/__generated__/saveItemToCart.d.ts +0 -210
  624. package/build/api/cart/index.d.ts +0 -5
  625. package/build/api/cart/index.js +0 -1
  626. package/build/api/category/__generated__/listCategory.d.ts +0 -99
  627. package/build/api/category/__generated__/listCategoryPaths.d.ts +0 -32
  628. package/build/api/category/index.d.ts +0 -18
  629. package/build/api/category/index.js +0 -1
  630. package/build/api/checkout/__generated__/addCouponCodeToCheckout.d.ts +0 -11
  631. package/build/api/checkout/__generated__/checkStocks.d.ts +0 -18
  632. package/build/api/checkout/__generated__/createSaleTransactionWithCheckout.d.ts +0 -22
  633. package/build/api/checkout/__generated__/getCheckoutByCartId.d.ts +0 -10
  634. package/build/api/checkout/__generated__/getCheckoutById.d.ts +0 -574
  635. package/build/api/checkout/__generated__/getOrder.d.ts +0 -620
  636. package/build/api/checkout/__generated__/listCheckoutSettings.d.ts +0 -34
  637. package/build/api/checkout/__generated__/listPaymentGateway.d.ts +0 -42
  638. package/build/api/checkout/__generated__/retrieveInstallmentInfo.d.ts +0 -23
  639. package/build/api/checkout/__generated__/saveCheckout.d.ts +0 -11
  640. package/build/api/checkout/index.d.ts +0 -35
  641. package/build/api/checkout/index.js +0 -1
  642. package/build/api/city/__generated__/listCity.d.ts +0 -20
  643. package/build/api/city/index.d.ts +0 -4
  644. package/build/api/city/index.js +0 -1
  645. package/build/api/contact-form/__generated__/sendContactFormToMerchant.d.ts +0 -10
  646. package/build/api/contact-form/index.d.ts +0 -11
  647. package/build/api/contact-form/index.js +0 -1
  648. package/build/api/country/__generated__/getAvailableShippingCountries.d.ts +0 -6
  649. package/build/api/country/__generated__/getMyCountry.d.ts +0 -3
  650. package/build/api/country/__generated__/listCountry.d.ts +0 -41
  651. package/build/api/country/index.d.ts +0 -6
  652. package/build/api/country/index.js +0 -1
  653. package/build/api/customer/__generated__/checkCustomerEmail.d.ts +0 -10
  654. package/build/api/customer/__generated__/createCustomerEmailSubscription.d.ts +0 -11
  655. package/build/api/customer/__generated__/createOrderRefundRequest.d.ts +0 -590
  656. package/build/api/customer/__generated__/customerForgotPassword.d.ts +0 -7
  657. package/build/api/customer/__generated__/customerLogin.d.ts +0 -174
  658. package/build/api/customer/__generated__/customerRecoverPassword.d.ts +0 -8
  659. package/build/api/customer/__generated__/customerRefreshToken.d.ts +0 -11
  660. package/build/api/customer/__generated__/customerSocialLogin.d.ts +0 -173
  661. package/build/api/customer/__generated__/getCustomerOrders.d.ts +0 -620
  662. package/build/api/customer/__generated__/getLastViewedProducts.d.ts +0 -15
  663. package/build/api/customer/__generated__/getMyCustomer.d.ts +0 -156
  664. package/build/api/customer/__generated__/getOrderByEmail.d.ts +0 -621
  665. package/build/api/customer/__generated__/listOrderRefundSettings.d.ts +0 -13
  666. package/build/api/customer/__generated__/listOrderTransactions.d.ts +0 -53
  667. package/build/api/customer/__generated__/registerCustomer.d.ts +0 -175
  668. package/build/api/customer/__generated__/saveLastViewedProducts.d.ts +0 -11
  669. package/build/api/customer/__generated__/saveMyCustomer.d.ts +0 -171
  670. package/build/api/customer/index.d.ts +0 -51
  671. package/build/api/customer/index.js +0 -1
  672. package/build/api/customer-attribute/__generated__/listCustomerAttribute.d.ts +0 -44
  673. package/build/api/customer-attribute/index.d.ts +0 -4
  674. package/build/api/customer-attribute/index.js +0 -1
  675. package/build/api/customer-review/__generated__/createCustomerReview.d.ts +0 -11
  676. package/build/api/customer-review/__generated__/listCustomerReviews.d.ts +0 -53
  677. package/build/api/customer-review/index.d.ts +0 -24
  678. package/build/api/customer-review/index.js +0 -1
  679. package/build/api/customer-review-summary/__generated__/listCustomerReviewSummary.d.ts +0 -59
  680. package/build/api/customer-review-summary/index.d.ts +0 -21
  681. package/build/api/customer-review-summary/index.js +0 -1
  682. package/build/api/district/__generated__/listDistrict.d.ts +0 -16
  683. package/build/api/district/index.d.ts +0 -4
  684. package/build/api/district/index.js +0 -1
  685. package/build/api/favorite-product/__generated__/isFavoriteProduct.d.ts +0 -6
  686. package/build/api/favorite-product/__generated__/listFavoriteProducts.d.ts +0 -12
  687. package/build/api/favorite-product/__generated__/saveFavoriteProduct.d.ts +0 -7
  688. package/build/api/favorite-product/index.d.ts +0 -6
  689. package/build/api/favorite-product/index.js +0 -1
  690. package/build/api/html-meta-data/__generated__/listHTMLMetaData.d.ts +0 -38
  691. package/build/api/html-meta-data/index.d.ts +0 -4
  692. package/build/api/html-meta-data/index.js +0 -1
  693. package/build/api/index.d.ts +0 -25
  694. package/build/api/merchant/__generated__/listMerchantSettings.d.ts +0 -9
  695. package/build/api/merchant/index.d.ts +0 -4
  696. package/build/api/merchant/index.js +0 -1
  697. package/build/api/product-attribute/__generated__/listProductAttribute.d.ts +0 -72
  698. package/build/api/product-attribute/index.d.ts +0 -4
  699. package/build/api/product-campaign/__generated__/getProductCampaigns.d.ts +0 -91
  700. package/build/api/product-campaign/index.d.ts +0 -10
  701. package/build/api/product-campaign/index.js +0 -1
  702. package/build/api/product-option-file/__generated__/getOrderLineFile.d.ts +0 -7
  703. package/build/api/product-option-file/index.d.ts +0 -7
  704. package/build/api/product-option-file/index.js +0 -1
  705. package/build/api/product-option-set/__generated__/ListProductOptionSet.d.ts +0 -104
  706. package/build/api/product-option-set/index.d.ts +0 -4
  707. package/build/api/product-option-set/index.js +0 -1
  708. package/build/api/product-search/__generated__/getProductFilterData.d.ts +0 -61
  709. package/build/api/product-search/__generated__/getRelatedProducts.d.ts +0 -14
  710. package/build/api/product-search/__generated__/searchProducts.d.ts +0 -26
  711. package/build/api/product-search/index.d.ts +0 -38
  712. package/build/api/product-search/index.js +0 -1
  713. package/build/api/raffle/__generated__/getRafflesByCustomerId.d.ts +0 -44
  714. package/build/api/raffle/__generated__/listRaffle.d.ts +0 -85
  715. package/build/api/raffle/__generated__/listRaffleMetaData.d.ts +0 -22
  716. package/build/api/raffle/__generated__/saveRaffleParticipant.d.ts +0 -30
  717. package/build/api/raffle/index.d.ts +0 -24
  718. package/build/api/raffle/index.js +0 -1
  719. package/build/api/state/__generated__/listState.d.ts +0 -19
  720. package/build/api/state/index.d.ts +0 -4
  721. package/build/api/state/index.js +0 -1
  722. package/build/api/stock-location/__generated__/listStockLocation.d.ts +0 -7
  723. package/build/api/stock-location/index.d.ts +0 -4
  724. package/build/api/storefront/__generated__/getStorefront.d.ts +0 -63
  725. package/build/api/storefront/index.d.ts +0 -4
  726. package/build/api/storefront/index.js +0 -1
  727. package/build/api/variant-type/__generated__/listVariantType.d.ts +0 -76
  728. package/build/api/variant-type/index.d.ts +0 -4
  729. package/build/assets/translations/checkout/en.js +0 -1
  730. package/build/assets/translations/checkout/tr.js +0 -1
  731. package/build/components/checkout/components/address-form/index.d.ts +0 -3
  732. package/build/components/checkout/components/address-form/index.js +0 -1
  733. package/build/components/checkout/components/address-form/model.d.ts +0 -133
  734. package/build/components/checkout/components/address-form/model.js +0 -1
  735. package/build/components/checkout/components/button/index.d.ts +0 -12
  736. package/build/components/checkout/components/button/index.js +0 -1
  737. package/build/components/checkout/components/button/style.module.scss.js +0 -1
  738. package/build/components/checkout/components/cart-summary/cart-item/index.d.ts +0 -10
  739. package/build/components/checkout/components/cart-summary/cart-item/index.js +0 -1
  740. package/build/components/checkout/components/cart-summary/cart-item/style.module.scss.js +0 -1
  741. package/build/components/checkout/components/cart-summary/index.d.ts +0 -8
  742. package/build/components/checkout/components/cart-summary/index.js +0 -1
  743. package/build/components/checkout/components/cart-summary/style.module.scss.js +0 -1
  744. package/build/components/checkout/components/checkbox/check.d.ts +0 -6
  745. package/build/components/checkout/components/checkbox/check.js +0 -1
  746. package/build/components/checkout/components/checkbox/index.d.ts +0 -10
  747. package/build/components/checkout/components/checkbox/index.js +0 -1
  748. package/build/components/checkout/components/checkbox/style.module.scss.js +0 -1
  749. package/build/components/checkout/components/credit-card-form/index.d.ts +0 -7
  750. package/build/components/checkout/components/credit-card-form/index.js +0 -1
  751. package/build/components/checkout/components/credit-card-form/model.d.ts +0 -26
  752. package/build/components/checkout/components/credit-card-form/model.js +0 -1
  753. package/build/components/checkout/components/credit-card-form/style.module.scss.js +0 -1
  754. package/build/components/checkout/components/credit-card-form/svg/amex.d.ts +0 -6
  755. package/build/components/checkout/components/credit-card-form/svg/amex.js +0 -1
  756. package/build/components/checkout/components/credit-card-form/svg/master-card.d.ts +0 -6
  757. package/build/components/checkout/components/credit-card-form/svg/master-card.js +0 -1
  758. package/build/components/checkout/components/credit-card-form/svg/troy.d.ts +0 -6
  759. package/build/components/checkout/components/credit-card-form/svg/troy.js +0 -1
  760. package/build/components/checkout/components/credit-card-form/svg/visa.d.ts +0 -6
  761. package/build/components/checkout/components/credit-card-form/svg/visa.js +0 -1
  762. package/build/components/checkout/components/customer-addresses/index.d.ts +0 -15
  763. package/build/components/checkout/components/customer-addresses/index.js +0 -1
  764. package/build/components/checkout/components/customer-addresses/model.d.ts +0 -21
  765. package/build/components/checkout/components/customer-addresses/model.js +0 -1
  766. package/build/components/checkout/components/customer-addresses/style.module.scss.js +0 -1
  767. package/build/components/checkout/components/error/customer-login-required-error/index.d.ts +0 -8
  768. package/build/components/checkout/components/error/customer-login-required-error/index.js +0 -1
  769. package/build/components/checkout/components/error/index.d.ts +0 -7
  770. package/build/components/checkout/components/error/index.js +0 -1
  771. package/build/components/checkout/components/error/no-shipping-error/index.d.ts +0 -4
  772. package/build/components/checkout/components/error/no-shipping-error/index.js +0 -1
  773. package/build/components/checkout/components/error/payment-error/index.d.ts +0 -8
  774. package/build/components/checkout/components/error/payment-error/index.js +0 -1
  775. package/build/components/checkout/components/error/stock-error/index.d.ts +0 -8
  776. package/build/components/checkout/components/error/stock-error/index.js +0 -1
  777. package/build/components/checkout/components/error/stock-error/style.module.scss.js +0 -1
  778. package/build/components/checkout/components/error/unknown-error/index.d.ts +0 -6
  779. package/build/components/checkout/components/error/unknown-error/index.js +0 -1
  780. package/build/components/checkout/components/expandable-section/index.d.ts +0 -6
  781. package/build/components/checkout/components/expandable-section/index.js +0 -1
  782. package/build/components/checkout/components/expandable-section/style.module.scss.js +0 -1
  783. package/build/components/checkout/components/form-item/caret-down.d.ts +0 -6
  784. package/build/components/checkout/components/form-item/caret-down.js +0 -1
  785. package/build/components/checkout/components/form-item/index.d.ts +0 -3
  786. package/build/components/checkout/components/form-item/index.js +0 -1
  787. package/build/components/checkout/components/form-item/model.d.ts +0 -59
  788. package/build/components/checkout/components/form-item/model.js +0 -1
  789. package/build/components/checkout/components/form-item/style.module.scss.js +0 -1
  790. package/build/components/checkout/components/fullscreen-loading/index.d.ts +0 -2
  791. package/build/components/checkout/components/fullscreen-loading/index.js +0 -1
  792. package/build/components/checkout/components/fullscreen-loading/style.module.scss.js +0 -1
  793. package/build/components/checkout/components/input-with-button/index.d.ts +0 -11
  794. package/build/components/checkout/components/input-with-button/index.js +0 -1
  795. package/build/components/checkout/components/input-with-button/style.module.scss.js +0 -1
  796. package/build/components/checkout/components/modal/index.d.ts +0 -8
  797. package/build/components/checkout/components/modal/index.js +0 -1
  798. package/build/components/checkout/components/modal/style.module.scss.js +0 -1
  799. package/build/components/checkout/components/notification-box/index.d.ts +0 -9
  800. package/build/components/checkout/components/notification-box/index.js +0 -1
  801. package/build/components/checkout/components/notification-box/style.module.scss.js +0 -1
  802. package/build/components/checkout/components/select-box/index.d.ts +0 -13
  803. package/build/components/checkout/components/select-box/index.js +0 -1
  804. package/build/components/checkout/components/select-box/style.module.scss.js +0 -1
  805. package/build/components/checkout/components/step-container/index.d.ts +0 -15
  806. package/build/components/checkout/components/step-container/index.js +0 -1
  807. package/build/components/checkout/components/step-container/style.module.scss.js +0 -1
  808. package/build/components/checkout/components/svg/arrow-down.d.ts +0 -6
  809. package/build/components/checkout/components/svg/arrow-down.js +0 -1
  810. package/build/components/checkout/components/svg/arrow-left.d.ts +0 -6
  811. package/build/components/checkout/components/svg/arrow-right.d.ts +0 -6
  812. package/build/components/checkout/components/svg/cross.d.ts +0 -6
  813. package/build/components/checkout/components/svg/cross.js +0 -1
  814. package/build/components/checkout/components/svg/discount.d.ts +0 -6
  815. package/build/components/checkout/components/svg/external.d.ts +0 -6
  816. package/build/components/checkout/components/svg/external.js +0 -1
  817. package/build/components/checkout/components/svg/gift.d.ts +0 -7
  818. package/build/components/checkout/components/svg/gift.js +0 -1
  819. package/build/components/checkout/components/svg/ikas.d.ts +0 -6
  820. package/build/components/checkout/components/svg/ikas.js +0 -1
  821. package/build/components/checkout/components/svg/lock.d.ts +0 -6
  822. package/build/components/checkout/components/svg/lock.js +0 -1
  823. package/build/components/checkout/components/svg/shopping-cart.d.ts +0 -6
  824. package/build/components/checkout/components/svg/success-circle.d.ts +0 -6
  825. package/build/components/checkout/components/svg/success-circle.js +0 -1
  826. package/build/components/checkout/components/svg/tag.d.ts +0 -6
  827. package/build/components/checkout/components/svg/warning.d.ts +0 -6
  828. package/build/components/checkout/components/svg/warning.js +0 -1
  829. package/build/components/checkout/components/toggle/index.d.ts +0 -10
  830. package/build/components/checkout/components/toggle/index.js +0 -1
  831. package/build/components/checkout/components/toggle/style.module.scss.js +0 -1
  832. package/build/components/checkout/components/tooltip/index.d.ts +0 -8
  833. package/build/components/checkout/components/tooltip/index.js +0 -1
  834. package/build/components/checkout/components/tooltip/style.module.scss.js +0 -1
  835. package/build/components/checkout/index.d.ts +0 -33
  836. package/build/components/checkout/index.js +0 -1
  837. package/build/components/checkout/model.d.ts +0 -124
  838. package/build/components/checkout/model.js +0 -1
  839. package/build/components/checkout/steps/step-info/index.d.ts +0 -7
  840. package/build/components/checkout/steps/step-info/index.js +0 -1
  841. package/build/components/checkout/steps/step-payment/billing-address/index.d.ts +0 -7
  842. package/build/components/checkout/steps/step-payment/billing-address/index.js +0 -1
  843. package/build/components/checkout/steps/step-payment/index.d.ts +0 -7
  844. package/build/components/checkout/steps/step-payment/index.js +0 -1
  845. package/build/components/checkout/steps/step-payment/payment-gateways/index.d.ts +0 -7
  846. package/build/components/checkout/steps/step-payment/payment-gateways/index.js +0 -1
  847. package/build/components/checkout/steps/step-payment/payment-gateways/installments/index.d.ts +0 -7
  848. package/build/components/checkout/steps/step-payment/payment-gateways/installments/index.js +0 -1
  849. package/build/components/checkout/steps/step-payment/payment-gateways/installments/style.module.scss.js +0 -1
  850. package/build/components/checkout/steps/step-payment/payment-gateways/style.module.scss.js +0 -1
  851. package/build/components/checkout/steps/step-payment/style.module.scss.js +0 -1
  852. package/build/components/checkout/steps/step-shipping/index.d.ts +0 -7
  853. package/build/components/checkout/steps/step-shipping/index.js +0 -1
  854. package/build/components/checkout/steps/step-shipping/style.module.scss.js +0 -1
  855. package/build/components/checkout/steps/step-success/index.d.ts +0 -7
  856. package/build/components/checkout/steps/step-success/index.js +0 -1
  857. package/build/components/checkout/steps/step-success/style.module.scss.js +0 -1
  858. package/build/components/checkout/style.module.scss.js +0 -1
  859. package/build/components/checkout/styles/common.module.scss.js +0 -1
  860. package/build/components/image/index.d.ts +0 -10
  861. package/build/components/image/index.js +0 -1
  862. package/build/components/index.d.ts +0 -4
  863. package/build/components/page/ThemeComponent.d.ts +0 -21
  864. package/build/components/page/ThemeComponent.js +0 -1
  865. package/build/components/page/head.d.ts +0 -14
  866. package/build/components/page/head.js +0 -1
  867. package/build/components/page/index.d.ts +0 -20
  868. package/build/components/page/index.js +0 -1
  869. package/build/components/page-editor/ThemeComponentEditor.d.ts +0 -32
  870. package/build/components/page-editor/ThemeComponentEditor.js +0 -1
  871. package/build/components/page-editor/error/index.d.ts +0 -5
  872. package/build/components/page-editor/error/index.js +0 -1
  873. package/build/components/page-editor/index.d.ts +0 -4
  874. package/build/components/page-editor/index.js +0 -1
  875. package/build/components/page-editor/loader/index.d.ts +0 -6
  876. package/build/components/page-editor/loader/index.js +0 -1
  877. package/build/components/page-editor/loader/style.module.scss.js +0 -1
  878. package/build/components/page-editor/model.d.ts +0 -75
  879. package/build/components/page-editor/model.js +0 -1
  880. package/build/ext/@apollo/client/cache/core/cache.js +0 -1
  881. package/build/ext/@apollo/client/cache/core/types/common.js +0 -1
  882. package/build/ext/@apollo/client/cache/inmemory/entityStore.js +0 -1
  883. package/build/ext/@apollo/client/cache/inmemory/helpers.js +0 -1
  884. package/build/ext/@apollo/client/cache/inmemory/inMemoryCache.js +0 -1
  885. package/build/ext/@apollo/client/cache/inmemory/policies.js +0 -1
  886. package/build/ext/@apollo/client/cache/inmemory/reactiveVars.js +0 -1
  887. package/build/ext/@apollo/client/cache/inmemory/readFromStore.js +0 -1
  888. package/build/ext/@apollo/client/cache/inmemory/writeToStore.js +0 -1
  889. package/build/ext/@apollo/client/core/ApolloClient.js +0 -1
  890. package/build/ext/@apollo/client/core/LocalState.js +0 -1
  891. package/build/ext/@apollo/client/core/ObservableQuery.js +0 -1
  892. package/build/ext/@apollo/client/core/QueryInfo.js +0 -1
  893. package/build/ext/@apollo/client/core/QueryManager.js +0 -1
  894. package/build/ext/@apollo/client/core/Reobserver.js +0 -1
  895. package/build/ext/@apollo/client/core/networkStatus.js +0 -1
  896. package/build/ext/@apollo/client/errors/index.js +0 -1
  897. package/build/ext/@apollo/client/ext/tslib/tslib.es6.js +0 -15
  898. package/build/ext/@apollo/client/link/context/index.js +0 -1
  899. package/build/ext/@apollo/client/link/core/ApolloLink.js +0 -1
  900. package/build/ext/@apollo/client/link/core/execute.js +0 -1
  901. package/build/ext/@apollo/client/link/error/index.js +0 -1
  902. package/build/ext/@apollo/client/link/http/HttpLink.js +0 -1
  903. package/build/ext/@apollo/client/link/http/checkFetcher.js +0 -1
  904. package/build/ext/@apollo/client/link/http/createHttpLink.js +0 -1
  905. package/build/ext/@apollo/client/link/http/createSignalIfSupported.js +0 -1
  906. package/build/ext/@apollo/client/link/http/parseAndCheckHttpResponse.js +0 -1
  907. package/build/ext/@apollo/client/link/http/rewriteURIForGET.js +0 -1
  908. package/build/ext/@apollo/client/link/http/selectHttpOptionsAndBody.js +0 -1
  909. package/build/ext/@apollo/client/link/http/selectURI.js +0 -1
  910. package/build/ext/@apollo/client/link/http/serializeFetchParameter.js +0 -1
  911. package/build/ext/@apollo/client/link/utils/createOperation.js +0 -1
  912. package/build/ext/@apollo/client/link/utils/fromError.js +0 -1
  913. package/build/ext/@apollo/client/link/utils/throwServerError.js +0 -1
  914. package/build/ext/@apollo/client/link/utils/transformOperation.js +0 -1
  915. package/build/ext/@apollo/client/link/utils/validateOperation.js +0 -1
  916. package/build/ext/@apollo/client/utilities/common/arrays.js +0 -1
  917. package/build/ext/@apollo/client/utilities/common/canUse.js +0 -1
  918. package/build/ext/@apollo/client/utilities/common/cloneDeep.js +0 -1
  919. package/build/ext/@apollo/client/utilities/common/compact.js +0 -1
  920. package/build/ext/@apollo/client/utilities/common/environment.js +0 -1
  921. package/build/ext/@apollo/client/utilities/common/errorHandling.js +0 -1
  922. package/build/ext/@apollo/client/utilities/common/filterInPlace.js +0 -1
  923. package/build/ext/@apollo/client/utilities/common/maybeDeepFreeze.js +0 -1
  924. package/build/ext/@apollo/client/utilities/common/mergeDeep.js +0 -1
  925. package/build/ext/@apollo/client/utilities/graphql/directives.js +0 -1
  926. package/build/ext/@apollo/client/utilities/graphql/fragments.js +0 -1
  927. package/build/ext/@apollo/client/utilities/graphql/getFromAST.js +0 -1
  928. package/build/ext/@apollo/client/utilities/graphql/storeUtils.js +0 -1
  929. package/build/ext/@apollo/client/utilities/graphql/transform.js +0 -1
  930. package/build/ext/@apollo/client/utilities/observables/Concast.js +0 -1
  931. package/build/ext/@apollo/client/utilities/observables/Observable.js +0 -1
  932. package/build/ext/@apollo/client/utilities/observables/asyncMap.js +0 -1
  933. package/build/ext/@apollo/client/utilities/observables/iteration.js +0 -1
  934. package/build/ext/@apollo/client/version.js +0 -1
  935. package/build/ext/@ikas/react-phone-number-input/locale/en.json.js +0 -1
  936. package/build/ext/@ikas/react-phone-number-input/min/index.js +0 -1
  937. package/build/ext/@ikas/react-phone-number-input/modules/CountryIcon.js +0 -1
  938. package/build/ext/@ikas/react-phone-number-input/modules/CountrySelect.js +0 -1
  939. package/build/ext/@ikas/react-phone-number-input/modules/Flag.js +0 -1
  940. package/build/ext/@ikas/react-phone-number-input/modules/InputBasic.js +0 -1
  941. package/build/ext/@ikas/react-phone-number-input/modules/InputSmart.js +0 -1
  942. package/build/ext/@ikas/react-phone-number-input/modules/InternationalIcon.js +0 -1
  943. package/build/ext/@ikas/react-phone-number-input/modules/PhoneInputWithCountry.js +0 -1
  944. package/build/ext/@ikas/react-phone-number-input/modules/PhoneInputWithCountryDefault.js +0 -1
  945. package/build/ext/@ikas/react-phone-number-input/modules/PropTypes.js +0 -1
  946. package/build/ext/@ikas/react-phone-number-input/modules/helpers/countries.js +0 -1
  947. package/build/ext/@ikas/react-phone-number-input/modules/helpers/getInternationalPhoneNumberPrefix.js +0 -1
  948. package/build/ext/@ikas/react-phone-number-input/modules/helpers/getPhoneInputWithCountryStateUpdateFromNewProps.js +0 -1
  949. package/build/ext/@ikas/react-phone-number-input/modules/helpers/inputValuePrefix.js +0 -1
  950. package/build/ext/@ikas/react-phone-number-input/modules/helpers/phoneInputHelpers.js +0 -1
  951. package/build/ext/@ungap/global-this/esm/index.js +0 -1
  952. package/build/ext/@wry/context/lib/context.esm.js +0 -1
  953. package/build/ext/@wry/equality/lib/equality.esm.js +0 -1
  954. package/build/ext/@wry/trie/lib/trie.esm.js +0 -1
  955. package/build/ext/classnames/index.js +0 -6
  956. package/build/ext/country-flag-icons/modules/unicode.js +0 -1
  957. package/build/ext/decode-uri-component/index.js +0 -1
  958. package/build/ext/domhandler/ext/domelementtype/lib/index.js +0 -1
  959. package/build/ext/domhandler/lib/index.js +0 -1
  960. package/build/ext/domhandler/lib/node.js +0 -1
  961. package/build/ext/entities/lib/decode_codepoint.js +0 -1
  962. package/build/ext/entities/lib/maps/decode.json.js +0 -1
  963. package/build/ext/entities/lib/maps/entities.json.js +0 -1
  964. package/build/ext/entities/lib/maps/legacy.json.js +0 -1
  965. package/build/ext/entities/lib/maps/xml.json.js +0 -1
  966. package/build/ext/fast-json-stable-stringify/index.js +0 -1
  967. package/build/ext/graphql/error/GraphQLError.mjs.js +0 -1
  968. package/build/ext/graphql/error/syntaxError.mjs.js +0 -1
  969. package/build/ext/graphql/jsutils/defineInspect.mjs.js +0 -1
  970. package/build/ext/graphql/jsutils/devAssert.mjs.js +0 -1
  971. package/build/ext/graphql/jsutils/inspect.mjs.js +0 -1
  972. package/build/ext/graphql/jsutils/instanceOf.mjs.js +0 -1
  973. package/build/ext/graphql/jsutils/invariant.mjs.js +0 -1
  974. package/build/ext/graphql/jsutils/isObjectLike.mjs.js +0 -1
  975. package/build/ext/graphql/jsutils/nodejsCustomInspectSymbol.mjs.js +0 -1
  976. package/build/ext/graphql/language/ast.mjs.js +0 -1
  977. package/build/ext/graphql/language/blockString.mjs.js +0 -1
  978. package/build/ext/graphql/language/directiveLocation.mjs.js +0 -1
  979. package/build/ext/graphql/language/kinds.mjs.js +0 -1
  980. package/build/ext/graphql/language/lexer.mjs.js +0 -1
  981. package/build/ext/graphql/language/location.mjs.js +0 -1
  982. package/build/ext/graphql/language/parser.mjs.js +0 -1
  983. package/build/ext/graphql/language/printLocation.mjs.js +0 -1
  984. package/build/ext/graphql/language/printer.mjs.js +0 -1
  985. package/build/ext/graphql/language/source.mjs.js +0 -1
  986. package/build/ext/graphql/language/tokenKind.mjs.js +0 -1
  987. package/build/ext/graphql/language/visitor.mjs.js +0 -1
  988. package/build/ext/graphql/polyfills/symbols.mjs.js +0 -1
  989. package/build/ext/graphql-tag/src/index.js +0 -1
  990. package/build/ext/html-dom-parser/index.js +0 -1
  991. package/build/ext/html-dom-parser/lib/server/html-to-dom.js +0 -1
  992. package/build/ext/html-dom-parser/lib/server/utilities.js +0 -1
  993. package/build/ext/html-react-parser/index.js +0 -1
  994. package/build/ext/html-react-parser/index.mjs.js +0 -1
  995. package/build/ext/html-react-parser/lib/attributes-to-props.js +0 -1
  996. package/build/ext/html-react-parser/lib/dom-to-react.js +0 -1
  997. package/build/ext/html-react-parser/lib/utilities.js +0 -1
  998. package/build/ext/htmlparser2/lib/Parser.js +0 -1
  999. package/build/ext/htmlparser2/lib/Tokenizer.js +0 -1
  1000. package/build/ext/inherits/inherits.js +0 -1
  1001. package/build/ext/inherits/inherits_browser.js +0 -1
  1002. package/build/ext/inline-style-parser/index.js +0 -1
  1003. package/build/ext/input-format/modules/closeBraces.js +0 -1
  1004. package/build/ext/input-format/modules/dom.js +0 -1
  1005. package/build/ext/input-format/modules/edit.js +0 -1
  1006. package/build/ext/input-format/modules/format.js +0 -1
  1007. package/build/ext/input-format/modules/helpers.js +0 -1
  1008. package/build/ext/input-format/modules/inputControl.js +0 -1
  1009. package/build/ext/input-format/modules/parse.js +0 -1
  1010. package/build/ext/input-format/modules/react/Input.js +0 -1
  1011. package/build/ext/input-format/modules/templateFormatter.js +0 -1
  1012. package/build/ext/libphonenumber-js/es6/AsYouType.js +0 -1
  1013. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.PatternMatcher.js +0 -1
  1014. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.complete.js +0 -1
  1015. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.js +0 -1
  1016. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.util.js +0 -1
  1017. package/build/ext/libphonenumber-js/es6/AsYouTypeParser.js +0 -1
  1018. package/build/ext/libphonenumber-js/es6/AsYouTypeState.js +0 -1
  1019. package/build/ext/libphonenumber-js/es6/ParseError.js +0 -1
  1020. package/build/ext/libphonenumber-js/es6/PhoneNumber.js +0 -1
  1021. package/build/ext/libphonenumber-js/es6/constants.js +0 -1
  1022. package/build/ext/libphonenumber-js/es6/formatIncompletePhoneNumber.js +0 -1
  1023. package/build/ext/libphonenumber-js/es6/format_.js +0 -1
  1024. package/build/ext/libphonenumber-js/es6/getCountries.js +0 -1
  1025. package/build/ext/libphonenumber-js/es6/helpers/RFC3966.js +0 -1
  1026. package/build/ext/libphonenumber-js/es6/helpers/applyInternationalSeparatorStyle.js +0 -1
  1027. package/build/ext/libphonenumber-js/es6/helpers/checkNumberLength.js +0 -1
  1028. package/build/ext/libphonenumber-js/es6/helpers/extension/createExtensionPattern.js +0 -1
  1029. package/build/ext/libphonenumber-js/es6/helpers/extension/extractExtension.js +0 -1
  1030. package/build/ext/libphonenumber-js/es6/helpers/extractCountryCallingCode.js +0 -1
  1031. package/build/ext/libphonenumber-js/es6/helpers/extractCountryCallingCodeFromInternationalNumberWithoutPlusSign.js +0 -1
  1032. package/build/ext/libphonenumber-js/es6/helpers/extractNationalNumber.js +0 -1
  1033. package/build/ext/libphonenumber-js/es6/helpers/extractNationalNumberFromPossiblyIncompleteNumber.js +0 -1
  1034. package/build/ext/libphonenumber-js/es6/helpers/formatNationalNumberUsingFormat.js +0 -1
  1035. package/build/ext/libphonenumber-js/es6/helpers/getCountryByCallingCode.js +0 -1
  1036. package/build/ext/libphonenumber-js/es6/helpers/getIddPrefix.js +0 -1
  1037. package/build/ext/libphonenumber-js/es6/helpers/getNumberType.js +0 -1
  1038. package/build/ext/libphonenumber-js/es6/helpers/isViablePhoneNumber.js +0 -1
  1039. package/build/ext/libphonenumber-js/es6/helpers/matchesEntirely.js +0 -1
  1040. package/build/ext/libphonenumber-js/es6/helpers/mergeArrays.js +0 -1
  1041. package/build/ext/libphonenumber-js/es6/helpers/parseDigits.js +0 -1
  1042. package/build/ext/libphonenumber-js/es6/helpers/stripIddPrefix.js +0 -1
  1043. package/build/ext/libphonenumber-js/es6/isPossibleNumber_.js +0 -1
  1044. package/build/ext/libphonenumber-js/es6/metadata.js +0 -1
  1045. package/build/ext/libphonenumber-js/es6/parseIncompletePhoneNumber.js +0 -1
  1046. package/build/ext/libphonenumber-js/es6/parsePhoneNumber.js +0 -1
  1047. package/build/ext/libphonenumber-js/es6/parsePhoneNumberFromString.js +0 -1
  1048. package/build/ext/libphonenumber-js/es6/parsePhoneNumberFromString_.js +0 -1
  1049. package/build/ext/libphonenumber-js/es6/parsePhoneNumber_.js +0 -1
  1050. package/build/ext/libphonenumber-js/es6/parse_.js +0 -1
  1051. package/build/ext/libphonenumber-js/es6/tools/semver-compare.js +0 -1
  1052. package/build/ext/libphonenumber-js/es6/validate_.js +0 -1
  1053. package/build/ext/libphonenumber-js/metadata.min.json.js +0 -1
  1054. package/build/ext/lodash/_DataView.js +0 -1
  1055. package/build/ext/lodash/_Hash.js +0 -1
  1056. package/build/ext/lodash/_ListCache.js +0 -1
  1057. package/build/ext/lodash/_Map.js +0 -1
  1058. package/build/ext/lodash/_MapCache.js +0 -1
  1059. package/build/ext/lodash/_Promise.js +0 -1
  1060. package/build/ext/lodash/_Set.js +0 -1
  1061. package/build/ext/lodash/_SetCache.js +0 -1
  1062. package/build/ext/lodash/_Stack.js +0 -1
  1063. package/build/ext/lodash/_Symbol.js +0 -1
  1064. package/build/ext/lodash/_Uint8Array.js +0 -1
  1065. package/build/ext/lodash/_WeakMap.js +0 -1
  1066. package/build/ext/lodash/_apply.js +0 -1
  1067. package/build/ext/lodash/_arrayAggregator.js +0 -1
  1068. package/build/ext/lodash/_arrayEach.js +0 -1
  1069. package/build/ext/lodash/_arrayFilter.js +0 -1
  1070. package/build/ext/lodash/_arrayIncludes.js +0 -1
  1071. package/build/ext/lodash/_arrayIncludesWith.js +0 -1
  1072. package/build/ext/lodash/_arrayLikeKeys.js +0 -1
  1073. package/build/ext/lodash/_arrayMap.js +0 -1
  1074. package/build/ext/lodash/_arrayPush.js +0 -1
  1075. package/build/ext/lodash/_arraySome.js +0 -1
  1076. package/build/ext/lodash/_assignValue.js +0 -1
  1077. package/build/ext/lodash/_assocIndexOf.js +0 -1
  1078. package/build/ext/lodash/_baseAggregator.js +0 -1
  1079. package/build/ext/lodash/_baseAssign.js +0 -1
  1080. package/build/ext/lodash/_baseAssignIn.js +0 -1
  1081. package/build/ext/lodash/_baseAssignValue.js +0 -1
  1082. package/build/ext/lodash/_baseClone.js +0 -1
  1083. package/build/ext/lodash/_baseCreate.js +0 -1
  1084. package/build/ext/lodash/_baseEach.js +0 -1
  1085. package/build/ext/lodash/_baseFindIndex.js +0 -1
  1086. package/build/ext/lodash/_baseFlatten.js +0 -1
  1087. package/build/ext/lodash/_baseFor.js +0 -1
  1088. package/build/ext/lodash/_baseForOwn.js +0 -1
  1089. package/build/ext/lodash/_baseGet.js +0 -1
  1090. package/build/ext/lodash/_baseGetAllKeys.js +0 -1
  1091. package/build/ext/lodash/_baseGetTag.js +0 -1
  1092. package/build/ext/lodash/_baseHasIn.js +0 -1
  1093. package/build/ext/lodash/_baseIndexOf.js +0 -1
  1094. package/build/ext/lodash/_baseIsArguments.js +0 -1
  1095. package/build/ext/lodash/_baseIsEqual.js +0 -1
  1096. package/build/ext/lodash/_baseIsEqualDeep.js +0 -1
  1097. package/build/ext/lodash/_baseIsMap.js +0 -1
  1098. package/build/ext/lodash/_baseIsMatch.js +0 -1
  1099. package/build/ext/lodash/_baseIsNaN.js +0 -1
  1100. package/build/ext/lodash/_baseIsNative.js +0 -1
  1101. package/build/ext/lodash/_baseIsSet.js +0 -1
  1102. package/build/ext/lodash/_baseIsTypedArray.js +0 -1
  1103. package/build/ext/lodash/_baseIteratee.js +0 -1
  1104. package/build/ext/lodash/_baseKeys.js +0 -1
  1105. package/build/ext/lodash/_baseKeysIn.js +0 -1
  1106. package/build/ext/lodash/_baseMap.js +0 -1
  1107. package/build/ext/lodash/_baseMatches.js +0 -1
  1108. package/build/ext/lodash/_baseMatchesProperty.js +0 -1
  1109. package/build/ext/lodash/_baseOrderBy.js +0 -1
  1110. package/build/ext/lodash/_baseProperty.js +0 -1
  1111. package/build/ext/lodash/_basePropertyDeep.js +0 -1
  1112. package/build/ext/lodash/_baseRest.js +0 -1
  1113. package/build/ext/lodash/_baseSetToString.js +0 -1
  1114. package/build/ext/lodash/_baseSortBy.js +0 -1
  1115. package/build/ext/lodash/_baseTimes.js +0 -1
  1116. package/build/ext/lodash/_baseToString.js +0 -1
  1117. package/build/ext/lodash/_baseUnary.js +0 -1
  1118. package/build/ext/lodash/_baseUniq.js +0 -1
  1119. package/build/ext/lodash/_cacheHas.js +0 -1
  1120. package/build/ext/lodash/_castFunction.js +0 -1
  1121. package/build/ext/lodash/_castPath.js +0 -1
  1122. package/build/ext/lodash/_cloneArrayBuffer.js +0 -1
  1123. package/build/ext/lodash/_cloneBuffer.js +0 -1
  1124. package/build/ext/lodash/_cloneDataView.js +0 -1
  1125. package/build/ext/lodash/_cloneRegExp.js +0 -1
  1126. package/build/ext/lodash/_cloneSymbol.js +0 -1
  1127. package/build/ext/lodash/_cloneTypedArray.js +0 -1
  1128. package/build/ext/lodash/_compareAscending.js +0 -1
  1129. package/build/ext/lodash/_compareMultiple.js +0 -1
  1130. package/build/ext/lodash/_copyArray.js +0 -1
  1131. package/build/ext/lodash/_copyObject.js +0 -1
  1132. package/build/ext/lodash/_copySymbols.js +0 -1
  1133. package/build/ext/lodash/_copySymbolsIn.js +0 -1
  1134. package/build/ext/lodash/_coreJsData.js +0 -1
  1135. package/build/ext/lodash/_createAggregator.js +0 -1
  1136. package/build/ext/lodash/_createBaseEach.js +0 -1
  1137. package/build/ext/lodash/_createBaseFor.js +0 -1
  1138. package/build/ext/lodash/_createSet.js +0 -1
  1139. package/build/ext/lodash/_defineProperty.js +0 -1
  1140. package/build/ext/lodash/_equalArrays.js +0 -1
  1141. package/build/ext/lodash/_equalByTag.js +0 -1
  1142. package/build/ext/lodash/_equalObjects.js +0 -1
  1143. package/build/ext/lodash/_freeGlobal.js +0 -1
  1144. package/build/ext/lodash/_getAllKeys.js +0 -1
  1145. package/build/ext/lodash/_getAllKeysIn.js +0 -1
  1146. package/build/ext/lodash/_getMapData.js +0 -1
  1147. package/build/ext/lodash/_getMatchData.js +0 -1
  1148. package/build/ext/lodash/_getNative.js +0 -1
  1149. package/build/ext/lodash/_getPrototype.js +0 -1
  1150. package/build/ext/lodash/_getRawTag.js +0 -1
  1151. package/build/ext/lodash/_getSymbols.js +0 -1
  1152. package/build/ext/lodash/_getSymbolsIn.js +0 -1
  1153. package/build/ext/lodash/_getTag.js +0 -1
  1154. package/build/ext/lodash/_getValue.js +0 -1
  1155. package/build/ext/lodash/_hasPath.js +0 -1
  1156. package/build/ext/lodash/_hashClear.js +0 -1
  1157. package/build/ext/lodash/_hashDelete.js +0 -1
  1158. package/build/ext/lodash/_hashGet.js +0 -1
  1159. package/build/ext/lodash/_hashHas.js +0 -1
  1160. package/build/ext/lodash/_hashSet.js +0 -1
  1161. package/build/ext/lodash/_initCloneArray.js +0 -1
  1162. package/build/ext/lodash/_initCloneByTag.js +0 -1
  1163. package/build/ext/lodash/_initCloneObject.js +0 -1
  1164. package/build/ext/lodash/_isFlattenable.js +0 -1
  1165. package/build/ext/lodash/_isIndex.js +0 -1
  1166. package/build/ext/lodash/_isIterateeCall.js +0 -1
  1167. package/build/ext/lodash/_isKey.js +0 -1
  1168. package/build/ext/lodash/_isKeyable.js +0 -1
  1169. package/build/ext/lodash/_isMasked.js +0 -1
  1170. package/build/ext/lodash/_isPrototype.js +0 -1
  1171. package/build/ext/lodash/_isStrictComparable.js +0 -1
  1172. package/build/ext/lodash/_listCacheClear.js +0 -1
  1173. package/build/ext/lodash/_listCacheDelete.js +0 -1
  1174. package/build/ext/lodash/_listCacheGet.js +0 -1
  1175. package/build/ext/lodash/_listCacheHas.js +0 -1
  1176. package/build/ext/lodash/_listCacheSet.js +0 -1
  1177. package/build/ext/lodash/_mapCacheClear.js +0 -1
  1178. package/build/ext/lodash/_mapCacheDelete.js +0 -1
  1179. package/build/ext/lodash/_mapCacheGet.js +0 -1
  1180. package/build/ext/lodash/_mapCacheHas.js +0 -1
  1181. package/build/ext/lodash/_mapCacheSet.js +0 -1
  1182. package/build/ext/lodash/_mapToArray.js +0 -1
  1183. package/build/ext/lodash/_matchesStrictComparable.js +0 -1
  1184. package/build/ext/lodash/_memoizeCapped.js +0 -1
  1185. package/build/ext/lodash/_nativeCreate.js +0 -1
  1186. package/build/ext/lodash/_nativeKeys.js +0 -1
  1187. package/build/ext/lodash/_nativeKeysIn.js +0 -1
  1188. package/build/ext/lodash/_nodeUtil.js +0 -1
  1189. package/build/ext/lodash/_objectToString.js +0 -1
  1190. package/build/ext/lodash/_overArg.js +0 -1
  1191. package/build/ext/lodash/_overRest.js +0 -1
  1192. package/build/ext/lodash/_root.js +0 -1
  1193. package/build/ext/lodash/_setCacheAdd.js +0 -1
  1194. package/build/ext/lodash/_setCacheHas.js +0 -1
  1195. package/build/ext/lodash/_setToArray.js +0 -1
  1196. package/build/ext/lodash/_setToString.js +0 -1
  1197. package/build/ext/lodash/_shortOut.js +0 -1
  1198. package/build/ext/lodash/_stackClear.js +0 -1
  1199. package/build/ext/lodash/_stackDelete.js +0 -1
  1200. package/build/ext/lodash/_stackGet.js +0 -1
  1201. package/build/ext/lodash/_stackHas.js +0 -1
  1202. package/build/ext/lodash/_stackSet.js +0 -1
  1203. package/build/ext/lodash/_strictIndexOf.js +0 -1
  1204. package/build/ext/lodash/_stringToPath.js +0 -1
  1205. package/build/ext/lodash/_toKey.js +0 -1
  1206. package/build/ext/lodash/_toSource.js +0 -1
  1207. package/build/ext/lodash/cloneDeep.js +0 -1
  1208. package/build/ext/lodash/constant.js +0 -1
  1209. package/build/ext/lodash/debounce.js +0 -1
  1210. package/build/ext/lodash/eq.js +0 -1
  1211. package/build/ext/lodash/flatten.js +0 -1
  1212. package/build/ext/lodash/forEach.js +0 -1
  1213. package/build/ext/lodash/get.js +0 -1
  1214. package/build/ext/lodash/groupBy.js +0 -1
  1215. package/build/ext/lodash/hasIn.js +0 -1
  1216. package/build/ext/lodash/identity.js +0 -1
  1217. package/build/ext/lodash/isArguments.js +0 -1
  1218. package/build/ext/lodash/isArray.js +0 -1
  1219. package/build/ext/lodash/isArrayLike.js +0 -1
  1220. package/build/ext/lodash/isBuffer.js +0 -1
  1221. package/build/ext/lodash/isFunction.js +0 -1
  1222. package/build/ext/lodash/isLength.js +0 -1
  1223. package/build/ext/lodash/isMap.js +0 -1
  1224. package/build/ext/lodash/isObject.js +0 -1
  1225. package/build/ext/lodash/isObjectLike.js +0 -1
  1226. package/build/ext/lodash/isSet.js +0 -1
  1227. package/build/ext/lodash/isSymbol.js +0 -1
  1228. package/build/ext/lodash/isTypedArray.js +0 -1
  1229. package/build/ext/lodash/keys.js +0 -1
  1230. package/build/ext/lodash/keysIn.js +0 -1
  1231. package/build/ext/lodash/memoize.js +0 -1
  1232. package/build/ext/lodash/noop.js +0 -1
  1233. package/build/ext/lodash/now.js +0 -1
  1234. package/build/ext/lodash/property.js +0 -1
  1235. package/build/ext/lodash/sortBy.js +0 -1
  1236. package/build/ext/lodash/stubArray.js +0 -1
  1237. package/build/ext/lodash/stubFalse.js +0 -1
  1238. package/build/ext/lodash/toNumber.js +0 -1
  1239. package/build/ext/lodash/toString.js +0 -1
  1240. package/build/ext/lodash/uniq.js +0 -1
  1241. package/build/ext/lodash/uniqBy.js +0 -1
  1242. package/build/ext/lzutf8/build/production/lzutf8.js +0 -11
  1243. package/build/ext/object-assign/index.js +0 -6
  1244. package/build/ext/optimism/lib/bundle.esm.js +0 -1
  1245. package/build/ext/prop-types/checkPropTypes.js +0 -1
  1246. package/build/ext/prop-types/factoryWithThrowingShims.js +0 -1
  1247. package/build/ext/prop-types/factoryWithTypeCheckers.js +0 -1
  1248. package/build/ext/prop-types/index.js +0 -1
  1249. package/build/ext/prop-types/lib/ReactPropTypesSecret.js +0 -1
  1250. package/build/ext/query-string/index.js +0 -1
  1251. package/build/ext/react-is/cjs/react-is.development.js +0 -9
  1252. package/build/ext/react-is/cjs/react-is.production.min.js +0 -9
  1253. package/build/ext/react-is/index.js +0 -1
  1254. package/build/ext/react-property/lib/index.js +0 -1
  1255. package/build/ext/react-property/lib/possibleStandardNamesOptimized.js +0 -1
  1256. package/build/ext/react-tooltip/dist/index.es.js +0 -1
  1257. package/build/ext/react-tooltip/ext/uuid/dist/esm-node/bytesToUuid.js +0 -1
  1258. package/build/ext/react-tooltip/ext/uuid/dist/esm-node/rng.js +0 -1
  1259. package/build/ext/react-tooltip/ext/uuid/dist/esm-node/v4.js +0 -1
  1260. package/build/ext/readable-stream/errors.js +0 -1
  1261. package/build/ext/readable-stream/lib/_registry.js +0 -1
  1262. package/build/ext/readable-stream/lib/_stream_duplex.js +0 -1
  1263. package/build/ext/readable-stream/lib/_stream_passthrough.js +0 -1
  1264. package/build/ext/readable-stream/lib/_stream_readable.js +0 -1
  1265. package/build/ext/readable-stream/lib/_stream_transform.js +0 -1
  1266. package/build/ext/readable-stream/lib/_stream_writable.js +0 -1
  1267. package/build/ext/readable-stream/lib/internal/streams/async_iterator.js +0 -1
  1268. package/build/ext/readable-stream/lib/internal/streams/buffer_list.js +0 -1
  1269. package/build/ext/readable-stream/lib/internal/streams/destroy.js +0 -1
  1270. package/build/ext/readable-stream/lib/internal/streams/end-of-stream.js +0 -1
  1271. package/build/ext/readable-stream/lib/internal/streams/from.js +0 -1
  1272. package/build/ext/readable-stream/lib/internal/streams/pipeline.js +0 -1
  1273. package/build/ext/readable-stream/lib/internal/streams/state.js +0 -1
  1274. package/build/ext/readable-stream/lib/internal/streams/stream.js +0 -1
  1275. package/build/ext/readable-stream/readable.js +0 -1
  1276. package/build/ext/safe-buffer/index.js +0 -1
  1277. package/build/ext/split-on-first/index.js +0 -1
  1278. package/build/ext/strict-uri-encode/index.js +0 -1
  1279. package/build/ext/string_decoder/lib/string_decoder.js +0 -1
  1280. package/build/ext/style-inject/dist/style-inject.es.js +0 -1
  1281. package/build/ext/style-to-js/cjs/index.js +0 -1
  1282. package/build/ext/style-to-js/cjs/utilities.js +0 -1
  1283. package/build/ext/style-to-object/index.js +0 -1
  1284. package/build/ext/symbol-observable/es/index.js +0 -1
  1285. package/build/ext/symbol-observable/es/ponyfill.js +0 -1
  1286. package/build/ext/ts-invariant/ext/tslib/tslib.es6.js +0 -15
  1287. package/build/ext/ts-invariant/lib/invariant.esm.js +0 -1
  1288. package/build/ext/tslib/tslib.es6.js +0 -15
  1289. package/build/ext/util-deprecate/node.js +0 -1
  1290. package/build/ext/uuid/dist/esm-browser/regex.js +0 -1
  1291. package/build/ext/uuid/dist/esm-browser/rng.js +0 -1
  1292. package/build/ext/uuid/dist/esm-browser/stringify.js +0 -1
  1293. package/build/ext/uuid/dist/esm-browser/v4.js +0 -1
  1294. package/build/ext/uuid/dist/esm-browser/validate.js +0 -1
  1295. package/build/ext/zen-observable/index.js +0 -1
  1296. package/build/ext/zen-observable/lib/Observable.js +0 -1
  1297. package/build/ikas.js +0 -30
  1298. package/build/index.d.ts +0 -9
  1299. package/build/index.js +0 -1
  1300. package/build/models/data/blog/index.d.ts +0 -67
  1301. package/build/models/data/blog/index.js +0 -1
  1302. package/build/models/data/brand/index.d.ts +0 -21
  1303. package/build/models/data/brand/index.js +0 -1
  1304. package/build/models/data/cart/index.d.ts +0 -47
  1305. package/build/models/data/cart/index.js +0 -1
  1306. package/build/models/data/category/index.d.ts +0 -52
  1307. package/build/models/data/category/index.js +0 -1
  1308. package/build/models/data/checkout/index.d.ts +0 -103
  1309. package/build/models/data/checkout/index.js +0 -1
  1310. package/build/models/data/checkout-settings/index.d.ts +0 -25
  1311. package/build/models/data/checkout-settings/index.js +0 -1
  1312. package/build/models/data/city/index.d.ts +0 -4
  1313. package/build/models/data/contact-form/index.d.ts +0 -7
  1314. package/build/models/data/contact-form/index.js +0 -1
  1315. package/build/models/data/country/index.d.ts +0 -8
  1316. package/build/models/data/customer/address/index.d.ts +0 -52
  1317. package/build/models/data/customer/address/index.js +0 -1
  1318. package/build/models/data/customer/attribute-value/index.d.ts +0 -9
  1319. package/build/models/data/customer/attribute-value/index.js +0 -1
  1320. package/build/models/data/customer/index.d.ts +0 -36
  1321. package/build/models/data/customer/index.js +0 -1
  1322. package/build/models/data/customer-attribute/customer-attribute-option/index.d.ts +0 -5
  1323. package/build/models/data/customer-attribute/customer-attribute-option/index.js +0 -1
  1324. package/build/models/data/customer-attribute/customer-attribute-sales-channel/index.d.ts +0 -17
  1325. package/build/models/data/customer-attribute/customer-attribute-sales-channel/index.js +0 -1
  1326. package/build/models/data/customer-attribute/index.d.ts +0 -35
  1327. package/build/models/data/customer-attribute/index.js +0 -1
  1328. package/build/models/data/customer-review/index.d.ts +0 -26
  1329. package/build/models/data/customer-review/index.js +0 -1
  1330. package/build/models/data/customer-review-settings/index.d.ts +0 -4
  1331. package/build/models/data/customer-review-summary/index.d.ts +0 -16
  1332. package/build/models/data/customer-review-summary/index.js +0 -1
  1333. package/build/models/data/district/index.d.ts +0 -4
  1334. package/build/models/data/favorite-product/index.d.ts +0 -6
  1335. package/build/models/data/favorite-product/index.js +0 -1
  1336. package/build/models/data/html-meta-data/index.d.ts +0 -23
  1337. package/build/models/data/html-meta-data/index.js +0 -1
  1338. package/build/models/data/image/index.d.ts +0 -19
  1339. package/build/models/data/image/index.js +0 -1
  1340. package/build/models/data/index.d.ts +0 -44
  1341. package/build/models/data/installment-info/index.d.ts +0 -30
  1342. package/build/models/data/installment-info/index.js +0 -1
  1343. package/build/models/data/language/index.d.ts +0 -6
  1344. package/build/models/data/merchant-settings/index.d.ts +0 -8
  1345. package/build/models/data/merchant-settings/index.js +0 -1
  1346. package/build/models/data/order/address/index.d.ts +0 -51
  1347. package/build/models/data/order/address/index.js +0 -1
  1348. package/build/models/data/order/adjustment/index.d.ts +0 -16
  1349. package/build/models/data/order/gift-line/index.d.ts +0 -4
  1350. package/build/models/data/order/index.d.ts +0 -147
  1351. package/build/models/data/order/index.js +0 -1
  1352. package/build/models/data/order/line-item/discount/index.d.ts +0 -11
  1353. package/build/models/data/order/line-item/discount/index.js +0 -1
  1354. package/build/models/data/order/line-item/index.d.ts +0 -42
  1355. package/build/models/data/order/line-item/index.js +0 -1
  1356. package/build/models/data/order/line-item/options/index.d.ts +0 -11
  1357. package/build/models/data/order/line-item/options/index.js +0 -1
  1358. package/build/models/data/order/line-item/options/options-value/index.d.ts +0 -6
  1359. package/build/models/data/order/line-item/options/options-value/index.js +0 -1
  1360. package/build/models/data/order/line-item/variant/index.d.ts +0 -32
  1361. package/build/models/data/order/line-item/variant/index.js +0 -1
  1362. package/build/models/data/order/refund/index.d.ts +0 -6
  1363. package/build/models/data/order/refund/refund-line-item/index.d.ts +0 -5
  1364. package/build/models/data/order/refund/settings.d.ts +0 -6
  1365. package/build/models/data/order/refund/settings.js +0 -1
  1366. package/build/models/data/order/shipping-line/index.d.ts +0 -7
  1367. package/build/models/data/order-transaction/index.d.ts +0 -74
  1368. package/build/models/data/order-transaction/index.js +0 -1
  1369. package/build/models/data/payment-gateway/index.d.ts +0 -61
  1370. package/build/models/data/payment-gateway/index.js +0 -1
  1371. package/build/models/data/product/attribute-value/index.d.ts +0 -20
  1372. package/build/models/data/product/attribute-value/index.js +0 -1
  1373. package/build/models/data/product/index.d.ts +0 -36
  1374. package/build/models/data/product/index.js +0 -1
  1375. package/build/models/data/product/variant/index.d.ts +0 -27
  1376. package/build/models/data/product/variant/index.js +0 -1
  1377. package/build/models/data/product/variant/price/index.d.ts +0 -11
  1378. package/build/models/data/product/variant/price/index.js +0 -1
  1379. package/build/models/data/product/variant-type/index.d.ts +0 -6
  1380. package/build/models/data/product/variant-type/index.js +0 -1
  1381. package/build/models/data/product-attribute/index.d.ts +0 -34
  1382. package/build/models/data/product-attribute/index.js +0 -1
  1383. package/build/models/data/product-attribute/product-attribute-option/index.d.ts +0 -5
  1384. package/build/models/data/product-attribute/product-attribute-option/index.js +0 -1
  1385. package/build/models/data/product-attribute/product-attribute-table-cell/index.d.ts +0 -5
  1386. package/build/models/data/product-attribute/product-attribute-table-cell/index.js +0 -1
  1387. package/build/models/data/product-attribute/product-attribute-table-template/index.d.ts +0 -6
  1388. package/build/models/data/product-attribute/product-attribute-table-template/index.js +0 -1
  1389. package/build/models/data/product-back-in-stock-settings/index.d.ts +0 -3
  1390. package/build/models/data/product-campaing/campaign/index.d.ts +0 -41
  1391. package/build/models/data/product-campaing/campaign/index.js +0 -1
  1392. package/build/models/data/product-campaing/filter/index.d.ts +0 -13
  1393. package/build/models/data/product-campaing/filter/index.js +0 -1
  1394. package/build/models/data/product-campaing/index.d.ts +0 -6
  1395. package/build/models/data/product-campaing/index.js +0 -1
  1396. package/build/models/data/product-campaing/product-buyx-then-gety/index.d.ts +0 -19
  1397. package/build/models/data/product-campaing/product-buyx-then-gety/index.js +0 -1
  1398. package/build/models/data/product-campaing/product-campaign-date-range-field/index.d.ts +0 -5
  1399. package/build/models/data/product-campaing/product-campaign-date-range-field/index.js +0 -1
  1400. package/build/models/data/product-campaing/product-fixed-discount/index.d.ts +0 -13
  1401. package/build/models/data/product-campaing/product-fixed-discount/index.js +0 -1
  1402. package/build/models/data/product-cart-item-options/index.d.ts +0 -6
  1403. package/build/models/data/product-cart-item-options/index.js +0 -1
  1404. package/build/models/data/product-filter/index.d.ts +0 -114
  1405. package/build/models/data/product-filter/index.js +0 -1
  1406. package/build/models/data/product-option-set/index.d.ts +0 -114
  1407. package/build/models/data/product-option-set/index.js +0 -1
  1408. package/build/models/data/product-tag/index.d.ts +0 -5
  1409. package/build/models/data/product-tag/index.js +0 -1
  1410. package/build/models/data/raffle/index.d.ts +0 -66
  1411. package/build/models/data/raffle/index.js +0 -1
  1412. package/build/models/data/sales-channel/index.d.ts +0 -18
  1413. package/build/models/data/sales-channel/index.js +0 -1
  1414. package/build/models/data/simple-product/index.d.ts +0 -138
  1415. package/build/models/data/slider/index.d.ts +0 -5
  1416. package/build/models/data/slider/index.js +0 -1
  1417. package/build/models/data/state/index.d.ts +0 -5
  1418. package/build/models/data/storefront/domain/index.d.ts +0 -8
  1419. package/build/models/data/storefront/domain/index.js +0 -1
  1420. package/build/models/data/storefront/index.d.ts +0 -25
  1421. package/build/models/data/storefront/index.js +0 -1
  1422. package/build/models/data/storefront/localization/index.d.ts +0 -7
  1423. package/build/models/data/storefront/localization/index.js +0 -1
  1424. package/build/models/data/storefront/routing/dynamic-currency/index.d.ts +0 -5
  1425. package/build/models/data/storefront/routing/dynamic-currency/index.js +0 -1
  1426. package/build/models/data/storefront/routing/index.d.ts +0 -11
  1427. package/build/models/data/storefront/routing/index.js +0 -1
  1428. package/build/models/data/storefront/theme/index.d.ts +0 -13
  1429. package/build/models/data/storefront/theme/index.js +0 -1
  1430. package/build/models/data/storefront/theme-localization/index.d.ts +0 -12
  1431. package/build/models/data/storefront/theme-localization/index.js +0 -1
  1432. package/build/models/data/variant-type/index.d.ts +0 -26
  1433. package/build/models/data/variant-type/index.js +0 -1
  1434. package/build/models/data/variant-type/variant-value/index.d.ts +0 -11
  1435. package/build/models/data/variant-type/variant-value/index.js +0 -1
  1436. package/build/models/index.d.ts +0 -3
  1437. package/build/models/theme/component/index.d.ts +0 -19
  1438. package/build/models/theme/component/index.js +0 -1
  1439. package/build/models/theme/component/prop/index.d.ts +0 -63
  1440. package/build/models/theme/component/prop/index.js +0 -1
  1441. package/build/models/theme/custom-data/index.d.ts +0 -43
  1442. package/build/models/theme/custom-data/index.js +0 -1
  1443. package/build/models/theme/index.d.ts +0 -20
  1444. package/build/models/theme/page/component/index.d.ts +0 -6
  1445. package/build/models/theme/page/component/index.js +0 -1
  1446. package/build/models/theme/page/component/prop-value/attribute-list.d.ts +0 -7
  1447. package/build/models/theme/page/component/prop-value/attribute.d.ts +0 -7
  1448. package/build/models/theme/page/component/prop-value/blog-category-list.d.ts +0 -7
  1449. package/build/models/theme/page/component/prop-value/blog-category-list.js +0 -1
  1450. package/build/models/theme/page/component/prop-value/blog-category.d.ts +0 -5
  1451. package/build/models/theme/page/component/prop-value/blog-category.js +0 -1
  1452. package/build/models/theme/page/component/prop-value/blog-list.d.ts +0 -9
  1453. package/build/models/theme/page/component/prop-value/blog-list.js +0 -1
  1454. package/build/models/theme/page/component/prop-value/blog.d.ts +0 -5
  1455. package/build/models/theme/page/component/prop-value/blog.js +0 -1
  1456. package/build/models/theme/page/component/prop-value/brand-list.d.ts +0 -9
  1457. package/build/models/theme/page/component/prop-value/brand-list.js +0 -1
  1458. package/build/models/theme/page/component/prop-value/brand.d.ts +0 -5
  1459. package/build/models/theme/page/component/prop-value/brand.js +0 -1
  1460. package/build/models/theme/page/component/prop-value/category-list.d.ts +0 -9
  1461. package/build/models/theme/page/component/prop-value/category-list.js +0 -1
  1462. package/build/models/theme/page/component/prop-value/category.d.ts +0 -5
  1463. package/build/models/theme/page/component/prop-value/category.js +0 -1
  1464. package/build/models/theme/page/component/prop-value/link.d.ts +0 -19
  1465. package/build/models/theme/page/component/prop-value/link.js +0 -1
  1466. package/build/models/theme/page/component/prop-value/product-detail.d.ts +0 -6
  1467. package/build/models/theme/page/component/prop-value/product-detail.js +0 -1
  1468. package/build/models/theme/page/component/prop-value/product-list.d.ts +0 -18
  1469. package/build/models/theme/page/component/prop-value/product-list.js +0 -1
  1470. package/build/models/theme/page/component/prop-value/raffle-list.d.ts +0 -5
  1471. package/build/models/theme/page/component/prop-value/raffle-list.js +0 -1
  1472. package/build/models/theme/page/component/prop-value/raffle.d.ts +0 -5
  1473. package/build/models/theme/page/component/prop-value/raffle.js +0 -1
  1474. package/build/models/theme/page/index.d.ts +0 -44
  1475. package/build/models/theme/page/index.js +0 -1
  1476. package/build/models/theme/settings/color/index.d.ts +0 -14
  1477. package/build/models/theme/settings/color/index.js +0 -1
  1478. package/build/models/theme/settings/favicon/index.d.ts +0 -4
  1479. package/build/models/theme/settings/favicon/index.js +0 -1
  1480. package/build/models/theme/settings/font-family/index.d.ts +0 -5
  1481. package/build/models/theme/settings/font-family/index.js +0 -1
  1482. package/build/models/theme/settings/index.d.ts +0 -15
  1483. package/build/models/theme/settings/index.js +0 -1
  1484. package/build/models/theme/theme.d.ts +0 -16
  1485. package/build/models/theme/theme.js +0 -1
  1486. package/build/models/ui/blog-category-list/index.d.ts +0 -52
  1487. package/build/models/ui/blog-category-list/index.js +0 -1
  1488. package/build/models/ui/blog-list/index.d.ts +0 -56
  1489. package/build/models/ui/blog-list/index.js +0 -1
  1490. package/build/models/ui/brand-list/index.d.ts +0 -61
  1491. package/build/models/ui/brand-list/index.js +0 -1
  1492. package/build/models/ui/category-list/index.d.ts +0 -61
  1493. package/build/models/ui/category-list/index.js +0 -1
  1494. package/build/models/ui/component-renderer/index.d.ts +0 -7
  1495. package/build/models/ui/component-renderer/index.js +0 -1
  1496. package/build/models/ui/customer-review-list/index.d.ts +0 -43
  1497. package/build/models/ui/customer-review-list/index.js +0 -1
  1498. package/build/models/ui/customer-review-summary-list/index.d.ts +0 -43
  1499. package/build/models/ui/customer-review-summary-list/index.js +0 -1
  1500. package/build/models/ui/index.d.ts +0 -27
  1501. package/build/models/ui/navigation-link/index.d.ts +0 -8
  1502. package/build/models/ui/navigation-link/index.js +0 -1
  1503. package/build/models/ui/product-attribute-detail/index.d.ts +0 -8
  1504. package/build/models/ui/product-attribute-detail/index.js +0 -1
  1505. package/build/models/ui/product-attribute-list/index.d.ts +0 -9
  1506. package/build/models/ui/product-attribute-list/index.js +0 -1
  1507. package/build/models/ui/product-detail/index.d.ts +0 -39
  1508. package/build/models/ui/product-detail/index.js +0 -1
  1509. package/build/models/ui/product-list/index.d.ts +0 -141
  1510. package/build/models/ui/product-list/index.js +0 -1
  1511. package/build/models/ui/raffle-list/index.d.ts +0 -54
  1512. package/build/models/ui/raffle-list/index.js +0 -1
  1513. package/build/models/ui/validator/form/account-info.d.ts +0 -42
  1514. package/build/models/ui/validator/form/account-info.js +0 -1
  1515. package/build/models/ui/validator/form/address.d.ts +0 -78
  1516. package/build/models/ui/validator/form/address.js +0 -1
  1517. package/build/models/ui/validator/form/contact-form.d.ts +0 -45
  1518. package/build/models/ui/validator/form/contact-form.js +0 -1
  1519. package/build/models/ui/validator/form/customer-review.d.ts +0 -37
  1520. package/build/models/ui/validator/form/customer-review.js +0 -1
  1521. package/build/models/ui/validator/form/forgot-password.d.ts +0 -29
  1522. package/build/models/ui/validator/form/forgot-password.js +0 -1
  1523. package/build/models/ui/validator/form/login.d.ts +0 -35
  1524. package/build/models/ui/validator/form/login.js +0 -1
  1525. package/build/models/ui/validator/form/raffle-form.d.ts +0 -60
  1526. package/build/models/ui/validator/form/raffle-form.js +0 -1
  1527. package/build/models/ui/validator/form/recover-password.d.ts +0 -36
  1528. package/build/models/ui/validator/form/recover-password.js +0 -1
  1529. package/build/models/ui/validator/form/register.d.ts +0 -52
  1530. package/build/models/ui/validator/form/register.js +0 -1
  1531. package/build/models/ui/validator/index.d.ts +0 -27
  1532. package/build/models/ui/validator/index.js +0 -1
  1533. package/build/models/ui/validator/rules/index.d.ts +0 -91
  1534. package/build/models/ui/validator/rules/index.js +0 -1
  1535. package/build/pages/404.d.ts +0 -6
  1536. package/build/pages/404.js +0 -1
  1537. package/build/pages/[slug]/index.d.ts +0 -7
  1538. package/build/pages/_slug_/index.js +0 -1
  1539. package/build/pages/account/addresses.d.ts +0 -6
  1540. package/build/pages/account/addresses.js +0 -1
  1541. package/build/pages/account/favorite-products.d.ts +0 -6
  1542. package/build/pages/account/favorite-products.js +0 -1
  1543. package/build/pages/account/forgot-password.d.ts +0 -6
  1544. package/build/pages/account/forgot-password.js +0 -1
  1545. package/build/pages/account/index.d.ts +0 -6
  1546. package/build/pages/account/index.js +0 -1
  1547. package/build/pages/account/login.d.ts +0 -6
  1548. package/build/pages/account/login.js +0 -1
  1549. package/build/pages/account/orders/[id].d.ts +0 -6
  1550. package/build/pages/account/orders/_id_.js +0 -1
  1551. package/build/pages/account/orders/index.d.ts +0 -6
  1552. package/build/pages/account/orders/index.js +0 -1
  1553. package/build/pages/account/raffles.d.ts +0 -6
  1554. package/build/pages/account/raffles.js +0 -1
  1555. package/build/pages/account/recover-password.d.ts +0 -6
  1556. package/build/pages/account/recover-password.js +0 -1
  1557. package/build/pages/account/register.d.ts +0 -6
  1558. package/build/pages/account/register.js +0 -1
  1559. package/build/pages/blog/[slug].d.ts +0 -7
  1560. package/build/pages/blog/_slug_.js +0 -1
  1561. package/build/pages/blog/index.d.ts +0 -6
  1562. package/build/pages/blog/index.js +0 -1
  1563. package/build/pages/cart.d.ts +0 -6
  1564. package/build/pages/cart.js +0 -1
  1565. package/build/pages/checkout.d.ts +0 -18
  1566. package/build/pages/checkout.js +0 -1
  1567. package/build/pages/editor.d.ts +0 -10
  1568. package/build/pages/editor.js +0 -1
  1569. package/build/pages/home.d.ts +0 -6
  1570. package/build/pages/home.js +0 -1
  1571. package/build/pages/index.d.ts +0 -22
  1572. package/build/pages/pages/[slug].d.ts +0 -7
  1573. package/build/pages/pages/_slug_.js +0 -1
  1574. package/build/pages/raffle/[slug].d.ts +0 -7
  1575. package/build/pages/raffle/_slug_.js +0 -1
  1576. package/build/pages/raffle/index.d.ts +0 -6
  1577. package/build/pages/raffle/index.js +0 -1
  1578. package/build/pages/search.d.ts +0 -6
  1579. package/build/pages/search.js +0 -1
  1580. package/build/providers/helpers/raffles.d.ts +0 -2
  1581. package/build/providers/helpers/raffles.js +0 -1
  1582. package/build/providers/page-data-get.d.ts +0 -67
  1583. package/build/providers/page-data-get.js +0 -1
  1584. package/build/providers/page-data-init.d.ts +0 -66
  1585. package/build/providers/page-data-init.js +0 -1
  1586. package/build/providers/page-data-next.d.ts +0 -268
  1587. package/build/providers/page-data-next.js +0 -1
  1588. package/build/providers/placeholders.d.ts +0 -7
  1589. package/build/providers/placeholders.js +0 -1
  1590. package/build/providers/prop-value/attribute-list.d.ts +0 -12
  1591. package/build/providers/prop-value/attribute-list.js +0 -1
  1592. package/build/providers/prop-value/attribute.d.ts +0 -12
  1593. package/build/providers/prop-value/attribute.js +0 -1
  1594. package/build/providers/prop-value/blog-category-list.d.ts +0 -7
  1595. package/build/providers/prop-value/blog-category-list.js +0 -1
  1596. package/build/providers/prop-value/blog-category.d.ts +0 -11
  1597. package/build/providers/prop-value/blog-category.js +0 -1
  1598. package/build/providers/prop-value/blog-list.d.ts +0 -9
  1599. package/build/providers/prop-value/blog-list.js +0 -1
  1600. package/build/providers/prop-value/blog.d.ts +0 -11
  1601. package/build/providers/prop-value/blog.js +0 -1
  1602. package/build/providers/prop-value/boolean.d.ts +0 -6
  1603. package/build/providers/prop-value/boolean.js +0 -1
  1604. package/build/providers/prop-value/brand-list.d.ts +0 -7
  1605. package/build/providers/prop-value/brand-list.js +0 -1
  1606. package/build/providers/prop-value/brand.d.ts +0 -11
  1607. package/build/providers/prop-value/brand.js +0 -1
  1608. package/build/providers/prop-value/category-list.d.ts +0 -7
  1609. package/build/providers/prop-value/category-list.js +0 -1
  1610. package/build/providers/prop-value/category.d.ts +0 -11
  1611. package/build/providers/prop-value/category.js +0 -1
  1612. package/build/providers/prop-value/color.d.ts +0 -6
  1613. package/build/providers/prop-value/color.js +0 -1
  1614. package/build/providers/prop-value/custom.d.ts +0 -45
  1615. package/build/providers/prop-value/custom.js +0 -1
  1616. package/build/providers/prop-value/image-list.d.ts +0 -7
  1617. package/build/providers/prop-value/image-list.js +0 -1
  1618. package/build/providers/prop-value/image.d.ts +0 -7
  1619. package/build/providers/prop-value/image.js +0 -1
  1620. package/build/providers/prop-value/index.d.ts +0 -3
  1621. package/build/providers/prop-value/link.d.ts +0 -16
  1622. package/build/providers/prop-value/link.js +0 -1
  1623. package/build/providers/prop-value/product-detail.d.ts +0 -11
  1624. package/build/providers/prop-value/product-detail.js +0 -1
  1625. package/build/providers/prop-value/product-list.d.ts +0 -15
  1626. package/build/providers/prop-value/product-list.js +0 -1
  1627. package/build/providers/prop-value/raffle-list.d.ts +0 -5
  1628. package/build/providers/prop-value/raffle-list.js +0 -1
  1629. package/build/providers/prop-value/raffle.d.ts +0 -11
  1630. package/build/providers/prop-value/raffle.js +0 -1
  1631. package/build/providers/prop-value/rich-text.d.ts +0 -6
  1632. package/build/providers/prop-value/rich-text.js +0 -1
  1633. package/build/providers/prop-value/slider.d.ts +0 -11
  1634. package/build/providers/prop-value/slider.js +0 -1
  1635. package/build/providers/prop-value/text.d.ts +0 -6
  1636. package/build/providers/prop-value/text.js +0 -1
  1637. package/build/scripts/generators/api/index.d.ts +0 -5
  1638. package/build/scripts/generators/api/index.js +0 -1
  1639. package/build/scripts/generators/api/info.d.ts +0 -12
  1640. package/build/scripts/generators/api/info.js +0 -1
  1641. package/build/scripts/generators/components/index.d.ts +0 -6
  1642. package/build/scripts/generators/components/index.js +0 -1
  1643. package/build/scripts/generators/config/content.d.ts +0 -37
  1644. package/build/scripts/generators/config/content.js +0 -1
  1645. package/build/scripts/generators/config/index.d.ts +0 -8
  1646. package/build/scripts/generators/config/index.js +0 -1
  1647. package/build/scripts/generators/index.d.ts +0 -7
  1648. package/build/scripts/generators/pages/index.d.ts +0 -7
  1649. package/build/scripts/generators/pages/index.js +0 -1
  1650. package/build/scripts/generators/pages/info.d.ts +0 -14
  1651. package/build/scripts/generators/pages/info.js +0 -1
  1652. package/build/scripts/generators/store/content.d.ts +0 -1
  1653. package/build/scripts/generators/store/content.js +0 -1
  1654. package/build/scripts/generators/store/index.d.ts +0 -3
  1655. package/build/scripts/generators/store/index.js +0 -1
  1656. package/build/scripts/generators/theme/index.d.ts +0 -6
  1657. package/build/scripts/generators/theme/index.js +0 -1
  1658. package/build/scripts/generators/types/index.d.ts +0 -21
  1659. package/build/scripts/generators/types/index.js +0 -1
  1660. package/build/scripts/ikas.d.ts +0 -2
  1661. package/build/store/base.d.ts +0 -27
  1662. package/build/store/base.js +0 -1
  1663. package/build/store/cart.d.ts +0 -29
  1664. package/build/store/cart.js +0 -1
  1665. package/build/store/customer.d.ts +0 -96
  1666. package/build/store/customer.js +0 -1
  1667. package/build/store/index.d.ts +0 -1
  1668. package/build/storefront/index.d.ts +0 -60
  1669. package/build/storefront/index.js +0 -1
  1670. package/build/utils/constants.d.ts +0 -1
  1671. package/build/utils/constants.js +0 -1
  1672. package/build/utils/currency.d.ts +0 -7
  1673. package/build/utils/currency.js +0 -1
  1674. package/build/utils/fs.d.ts +0 -28
  1675. package/build/utils/fs.js +0 -1
  1676. package/build/utils/google-fonts.d.ts +0 -2
  1677. package/build/utils/google-fonts.js +0 -1
  1678. package/build/utils/helper.d.ts +0 -11
  1679. package/build/utils/helper.js +0 -1
  1680. package/build/utils/i18n.d.ts +0 -20
  1681. package/build/utils/i18n.js +0 -1
  1682. package/build/utils/index.d.ts +0 -3
package/build/index.d.ts DELETED
@@ -1,9 +0,0 @@
1
- export * from "./components/image";
2
- export * from "./components/page-editor/loader";
3
- export * from "./models";
4
- export * from "./pages";
5
- export * from "./scripts/generators";
6
- export * from "./store";
7
- export * from "./storefront";
8
- export * from "./utils";
9
- export * from "./analytics";
package/build/index.js DELETED
@@ -1 +0,0 @@
1
- export{Image}from"./components/image/index.js";export{IkasEditorComponentLoader}from"./components/page-editor/loader/index.js";export{IkasBlog,IkasBlogCategory,IkasBlogContent,IkasBlogMetaData,IkasBlogMetadataTargetType,IkasBlogTag,IkasBlogWriter}from"./models/data/blog/index.js";export{IkasBrand}from"./models/data/brand/index.js";export{IkasCategory,IkasCategoryPath,IkasFilterCategory}from"./models/data/category/index.js";export{IkasCheckout,IkasCheckoutCustomer,IkasCheckoutRecoveryEmailStatus,IkasCheckoutRecoveryStatus,IkasCheckoutStatus,IkasPaymentMethod,IkasShippingMethod,IkasShippingMethodEnum}from"./models/data/checkout/index.js";export{IkasCustomerAddress}from"./models/data/customer/address/index.js";export{IkasCustomer}from"./models/data/customer/index.js";export{IkasCustomerReview}from"./models/data/customer-review/index.js";export{IkasCustomerReviewSummary}from"./models/data/customer-review-summary/index.js";export{IkasHTMLMetaData,IkasHTMLMetaDataTargetType}from"./models/data/html-meta-data/index.js";export{IkasImage}from"./models/data/image/index.js";export{IkasCardAssociation,IkasCardType}from"./models/data/installment-info/index.js";export{IkasMerchantSettings}from"./models/data/merchant-settings/index.js";export{IkasAmountTypeEnum,IkasOrder,IkasOrderCancelledReason,IkasOrderPackageFulfillStatus,IkasOrderPackageStatus,IkasOrderPaymentStatus,IkasOrderShippingMethod,IkasOrderStatus,OrderLineItemStatusEnum}from"./models/data/order/index.js";export{IkasOrderLineItem}from"./models/data/order/line-item/index.js";export{IkasOrderRefundSettings}from"./models/data/order/refund/settings.js";export{IkasOrderLineOptions}from"./models/data/order/line-item/options/index.js";export{IkasOrderLineOptionsValue}from"./models/data/order/line-item/options/options-value/index.js";export{IkasProduct,IkasProductType}from"./models/data/product/index.js";export{IkasProductVariantType}from"./models/data/product/variant-type/index.js";export{IkasProductVariant}from"./models/data/product/variant/index.js";export{IkasProductPrice}from"./models/data/product/variant/price/index.js";export{IkasProductAttribute,IkasProductAttributeType}from"./models/data/product-attribute/index.js";export{IkasProductAttributeValue}from"./models/data/product/attribute-value/index.js";export{IkasApplicableProductFilterValue,IkasProductFilter,IkasProductFilterDisplayType,IkasProductFilterSettings,IkasProductFilterSortType,IkasProductFilterType,IkasProductFilterValue,IkasProductStockFilterValue,RangeValue,parseRangeStr}from"./models/data/product-filter/index.js";export{IkasFavoriteProduct}from"./models/data/favorite-product/index.js";export{IkasContactForm}from"./models/data/contact-form/index.js";export{IkasVariantSelectionType,IkasVariantType}from"./models/data/variant-type/index.js";export{IkasVariantValue}from"./models/data/variant-type/variant-value/index.js";export{IkasOrderTransaction,IkasTransactionStatusEnum,IkasTransactionTypeEnum}from"./models/data/order-transaction/index.js";export{IkasProductOption,IkasProductOptionDateSettings,IkasProductOptionFileSettings,IkasProductOptionSelectSettings,IkasProductOptionSelectType,IkasProductOptionSelectValue,IkasProductOptionSelectValueTranslations,IkasProductOptionSet,IkasProductOptionSetTranslations,IkasProductOptionTextSettings,IkasProductOptionTranslations,IkasProductOptionType}from"./models/data/product-option-set/index.js";export{IkasRaffle,IkasRaffleMetaData,IkasRaffleParticipant}from"./models/data/raffle/index.js";export{IkasSlider}from"./models/data/slider/index.js";export{IkasProductCampaign}from"./models/data/product-campaing/index.js";export{IkasCustomerAttribute}from"./models/data/customer-attribute/index.js";export{IkasCustomerAttributeValue}from"./models/data/customer/attribute-value/index.js";export{IkasCustomerAttributePermissionEnum,IkasCustomerAttributeRegisterPageRequirementEnum,IkasCustomerAttributeSalesChannel}from"./models/data/customer-attribute/customer-attribute-sales-channel/index.js";export{IkasCustomerAttributeOption}from"./models/data/customer-attribute/customer-attribute-option/index.js";export{IkasTheme}from"./models/theme/theme.js";export{IkasThemePage,IkasThemePageType}from"./models/theme/page/index.js";export{IkasThemePageComponent}from"./models/theme/page/component/index.js";export{IkasThemeComponent}from"./models/theme/component/index.js";export{IkasThemeComponentProp,IkasThemeComponentPropType}from"./models/theme/component/prop/index.js";export{IkasLinkPropValue,IkasLinkType}from"./models/theme/page/component/prop-value/link.js";export{IkasBrandPropValue}from"./models/theme/page/component/prop-value/brand.js";export{IkasBrandListPropValue}from"./models/theme/page/component/prop-value/brand-list.js";export{IkasProductListPropValue}from"./models/theme/page/component/prop-value/product-list.js";export{IkasProductDetailPropValue}from"./models/theme/page/component/prop-value/product-detail.js";export{IkasCategoryPropValue}from"./models/theme/page/component/prop-value/category.js";export{IkasCategoryListPropValue}from"./models/theme/page/component/prop-value/category-list.js";export{IkasThemeSettings}from"./models/theme/settings/index.js";export{IkasThemeCustomData}from"./models/theme/custom-data/index.js";export{IkasBlogPropValue}from"./models/theme/page/component/prop-value/blog.js";export{IkasBlogListPropValue}from"./models/theme/page/component/prop-value/blog-list.js";export{IkasBlogCategoryPropValue}from"./models/theme/page/component/prop-value/blog-category.js";export{IkasBlogCategoryListPropValue}from"./models/theme/page/component/prop-value/blog-category-list.js";export{IkasRafflePropValue}from"./models/theme/page/component/prop-value/raffle.js";export{IkasRaffleListPropValue}from"./models/theme/page/component/prop-value/raffle-list.js";export{IkasBlogList,IkasBlogListType}from"./models/ui/blog-list/index.js";export{IkasBlogCategoryList,IkasBlogCategoryListType}from"./models/ui/blog-category-list/index.js";export{IkasBrandList,IkasBrandListSortType,IkasBrandListType}from"./models/ui/brand-list/index.js";export{IkasCategoryList,IkasCategoryListSortType,IkasCategoryListType}from"./models/ui/category-list/index.js";export{IkasNavigationLink}from"./models/ui/navigation-link/index.js";export{IkasProductDetail}from"./models/ui/product-detail/index.js";export{IkasProductList,IkasProductListSortType,IkasProductListType,IkasRelatedProductsType}from"./models/ui/product-list/index.js";export{IkasAttributeDetail}from"./models/ui/product-attribute-detail/index.js";export{IkasAttributeList}from"./models/ui/product-attribute-list/index.js";export{IkasCustomerReviewList}from"./models/ui/customer-review-list/index.js";export{IkasCustomerReviewSummaryList}from"./models/ui/customer-review-summary-list/index.js";export{Validator}from"./models/ui/validator/index.js";export{EmailRule,EqualsRule,IdentityNumberRule,LessThanRule,MaxRule,MinRule,PhoneRule,RequiredRule,ValidationRule,ValidatorErrorType}from"./models/ui/validator/rules/index.js";export{LoginForm}from"./models/ui/validator/form/login.js";export{AddressForm}from"./models/ui/validator/form/address.js";export{RegisterForm}from"./models/ui/validator/form/register.js";export{ContactForm}from"./models/ui/validator/form/contact-form.js";export{ForgotPasswordForm}from"./models/ui/validator/form/forgot-password.js";export{RecoverPasswordForm}from"./models/ui/validator/form/recover-password.js";export{AccountInfoForm}from"./models/ui/validator/form/account-info.js";export{RaffleForm}from"./models/ui/validator/form/raffle-form.js";export{CustomerReviewForm}from"./models/ui/validator/form/customer-review.js";export{IkasComponentRenderer}from"./models/ui/component-renderer/index.js";export{IkasRaffleList}from"./models/ui/raffle-list/index.js";import*as e from"./pages/home.js";export{e as IndexPage};import*as o from"./pages/_slug_/index.js";export{o as SlugPage};import*as t from"./pages/pages/_slug_.js";export{t as CustomPage};import*as r from"./pages/checkout.js";export{r as CheckoutPage};import*as a from"./pages/account/index.js";export{a as AccountPage};import*as s from"./pages/account/addresses.js";export{s as AddressesPage};import*as m from"./pages/account/orders/index.js";export{m as OrdersPage};import*as i from"./pages/account/orders/_id_.js";export{i as OrderDetailPage};import*as d from"./pages/account/login.js";export{d as LoginPage};import*as p from"./pages/account/register.js";export{p as RegisterPage};import*as n from"./pages/account/forgot-password.js";export{n as ForgotPasswordPage};import*as l from"./pages/account/recover-password.js";export{l as RecoverPasswordPage};import*as u from"./pages/cart.js";export{u as CartPage};import*as x from"./pages/editor.js";export{x as EditorPage};import*as c from"./pages/account/favorite-products.js";export{c as FavoriteProductsPage};import*as f from"./pages/search.js";export{f as SearchPage};import*as g from"./pages/404.js";export{g as NotFoundPage};import*as k from"./pages/blog/index.js";export{k as BlogPage};import*as I from"./pages/blog/_slug_.js";export{I as BlogSlugPage};import*as j from"./pages/raffle/_slug_.js";export{j as RafflePage};import*as P from"./pages/raffle/index.js";export{P as RafflesPage};import*as y from"./pages/account/raffles.js";export{y as AccountRafflesPage};export{APIGenerator}from"./scripts/generators/api/index.js";export{ComponentImportsGenerator}from"./scripts/generators/components/index.js";export{ConfigGenerator}from"./scripts/generators/config/index.js";export{PageGenerator}from"./scripts/generators/pages/index.js";export{StoreGenerator}from"./scripts/generators/store/index.js";export{ThemeJsonGenerator}from"./scripts/generators/theme/index.js";export{CustomDataTypesGenerator,PropTypeGenarator}from"./scripts/generators/types/index.js";export{IkasBaseStore}from"./store/base.js";export{IkasStorefrontConfig}from"./storefront/index.js";export{decodeBase64,findAllByKey,findAllIndexes,formatDate,pascalCase,sortObject,stringSorter,stringToSlug,tryForEach,validateEmail,validatePhoneNumber}from"./utils/helper.js";export{formatMoney,getCurrencySymbol}from"./utils/currency.js";export{createTranslationInputData,useTranslation}from"./utils/i18n.js";export{Analytics}from"./analytics/analytics.js";export{AnalyticsBody,AnalyticsHead}from"./analytics/head/index.js";
@@ -1,67 +0,0 @@
1
- import { IkasImage } from "../image";
2
- export declare class IkasBlog {
3
- id: string;
4
- createdAt: number;
5
- updatedAt: number;
6
- categoryId: string | null;
7
- category: IkasBlogCategory | null;
8
- imageId: string | null;
9
- title: string | null;
10
- shortDescription: string | null;
11
- isPublished: boolean;
12
- storefrontId: string;
13
- tagIds: string[] | null;
14
- tags: IkasBlogTag[] | null;
15
- writer: IkasBlogWriter;
16
- blogContent: IkasBlogContent;
17
- metadata: IkasBlogMetaData | null;
18
- image: IkasImage | null;
19
- constructor(data?: Partial<IkasBlog>);
20
- get href(): string;
21
- }
22
- export declare class IkasBlogContent {
23
- id: string;
24
- createdAt: number;
25
- updatedAt: number;
26
- content: string;
27
- constructor(data?: Partial<IkasBlogContent>);
28
- }
29
- export declare class IkasBlogWriter {
30
- firstName: string;
31
- lastName: string;
32
- constructor(data?: Partial<IkasBlogWriter>);
33
- }
34
- export declare enum IkasBlogMetadataTargetType {
35
- BLOG = "BLOG",
36
- BLOG_CATEGORY = "BLOG_CATEGORY"
37
- }
38
- export declare class IkasBlogMetaData {
39
- id: string;
40
- createdAt: number;
41
- updatedAt: number;
42
- pageTitle: string | null;
43
- description: string | null;
44
- slug: string;
45
- targetId: string;
46
- targetType: IkasBlogMetadataTargetType;
47
- constructor(data?: Partial<IkasBlogMetaData>);
48
- }
49
- export declare class IkasBlogCategory {
50
- id: string;
51
- createdAt: number;
52
- updatedAt: number;
53
- deleted: boolean;
54
- name: string;
55
- imageId: string;
56
- metadata: IkasBlogMetaData | null;
57
- constructor(data?: Partial<IkasBlogCategory>);
58
- get href(): string;
59
- }
60
- export declare class IkasBlogTag {
61
- id: string;
62
- createdAt: number;
63
- updatedAt: number;
64
- deleted: boolean;
65
- name: string | null;
66
- constructor(data?: Partial<IkasBlogTag>);
67
- }
@@ -1 +0,0 @@
1
- import{makeAutoObservable as t}from"mobx";import{IkasImage as e}from"../image/index.js";var i,a=function(){function i(i){var a;void 0===i&&(i={}),this.id=i.id||Date.now()+"",this.createdAt=i.createdAt||Date.now(),this.updatedAt=i.updatedAt||Date.now(),this.categoryId=i.categoryId||null,this.category=i.category?new o(i.category):null,this.imageId=i.imageId||null,this.title=i.title||null,this.shortDescription=i.shortDescription||null,this.isPublished=i.isPublished||!1,this.storefrontId=i.storefrontId||"",this.tagIds=i.tagIds||[],this.tags=(null===(a=i.tags)||void 0===a?void 0:a.map((function(t){return new r(t)})))||[],this.writer=i.writer?new d(i.writer):new d,this.blogContent=i.blogContent?new n(i.blogContent):new n,this.metadata=i.metadata?new s(i.metadata):null,this.image=i.imageId?new e(i.imageId):null,t(this)}return Object.defineProperty(i.prototype,"href",{get:function(){var t;return(null===(t=this.metadata)||void 0===t?void 0:t.slug)?"/blog/".concat(this.metadata.slug):""},enumerable:!1,configurable:!0}),i}(),n=function(e){void 0===e&&(e={}),this.id=e.id||Date.now()+"",this.createdAt=e.createdAt||Date.now(),this.updatedAt=e.updatedAt||Date.now(),this.content=e.content||"",t(this)},d=function(e){void 0===e&&(e={}),this.firstName=e.firstName||"",this.lastName=e.lastName||"",t(this)};!function(t){t.BLOG="BLOG",t.BLOG_CATEGORY="BLOG_CATEGORY"}(i||(i={}));var s=function(e){void 0===e&&(e={}),this.pageTitle=null,this.description=null,this.id=e.id||Date.now()+"",this.createdAt=e.createdAt||Date.now(),this.updatedAt=e.updatedAt||Date.now(),this.description=e.description||"",this.pageTitle=e.pageTitle||"",this.slug=e.slug||"",this.targetId=e.targetId||"",this.targetType=e.targetType||i.BLOG,t(this)},o=function(){function e(e){void 0===e&&(e={}),this.id=e.id||"",this.createdAt=e.createdAt||Date.now(),this.updatedAt=e.updatedAt||Date.now(),this.deleted=e.deleted||!1,this.name=e.name||"",this.imageId=e.imageId||"",this.metadata=e.metadata?new s(e.metadata):null,t(this)}return Object.defineProperty(e.prototype,"href",{get:function(){var t;return(null===(t=this.metadata)||void 0===t?void 0:t.slug)?"/blog/".concat(this.metadata.slug):""},enumerable:!1,configurable:!0}),e}(),r=function(e){void 0===e&&(e={}),this.id=e.id||Date.now()+"",this.createdAt=e.createdAt||Date.now(),this.updatedAt=e.updatedAt||Date.now(),this.deleted=e.deleted||!1,this.name=e.name||"",t(this)};export{a as IkasBlog,o as IkasBlogCategory,n as IkasBlogContent,s as IkasBlogMetaData,i as IkasBlogMetadataTargetType,r as IkasBlogTag,d as IkasBlogWriter};
@@ -1,21 +0,0 @@
1
- import { IkasImage } from "../image";
2
- import { IkasHTMLMetaData } from "../html-meta-data";
3
- import { ModelOrder } from "../category/index";
4
- export declare class IkasBrand {
5
- id: string;
6
- name: string;
7
- description: string | null;
8
- metaData?: IkasHTMLMetaData | null;
9
- image?: IkasImage | null;
10
- orderType: ModelOrder | null;
11
- translations: IkasProductBrandTranslation[] | null;
12
- constructor(data?: Partial<IkasBrand>);
13
- get href(): string;
14
- private setTranslations;
15
- }
16
- declare type IkasProductBrandTranslation = {
17
- description: string | null;
18
- locale: string;
19
- name: string | null;
20
- };
21
- export {};
@@ -1 +0,0 @@
1
- import{makeAutoObservable as t}from"mobx";import{IkasImage as i}from"../image/index.js";import{IkasHTMLMetaData as n}from"../html-meta-data/index.js";import{IkasStorefrontConfig as e}from"../../../storefront/index.js";var a=function(){function a(e){void 0===e&&(e={}),this.description=null,this.metaData=null,this.image=null,this.orderType=null,this.translations=null,this.id=e.id||Date.now()+"",this.name=e.name||"",this.description=e.description||null,this.metaData=e.metaData?new n(e.metaData):void 0,this.image=e.image?new i(e.image.id):null,this.orderType=e.orderType||null,this.translations=e.translations||null,this.setTranslations(),t(this)}return Object.defineProperty(a.prototype,"href",{get:function(){var t;return(null===(t=this.metaData)||void 0===t?void 0:t.slug)?"/".concat(this.metaData.slug):""},enumerable:!1,configurable:!0}),a.prototype.setTranslations=function(){if(this.translations&&this.translations.some((function(t){return t.locale===e.getCurrentLocale()}))){var t=this.translations.find((function(t){return t.locale===e.getCurrentLocale()}));(null==t?void 0:t.name)&&(this.name=t.name),(null==t?void 0:t.description)&&(this.description=t.description)}},a}();export{a as IkasBrand};
@@ -1,47 +0,0 @@
1
- import { IkasOrderLineItem } from "../order/line-item";
2
- import { IkasProductCartLineOption } from "../product-cart-item-options";
3
- export declare class IkasCart {
4
- id: string;
5
- createdAt: string;
6
- updatedAt: string;
7
- dueDate?: string | null;
8
- currencyCode: string;
9
- currencySymbol: string;
10
- customerId?: string | null;
11
- itemCount: number;
12
- items: IkasOrderLineItem[];
13
- merchantId: string;
14
- totalPrice: number;
15
- salesChannelId: string;
16
- storefrontId: string | null;
17
- storefrontRoutingId: string | null;
18
- storefrontThemeId: string | null;
19
- taxLines: IkasCartTaxLine[] | null;
20
- constructor(data: Partial<IkasCart>);
21
- get totalTax(): number;
22
- }
23
- declare type IkasCartLineItemInput = {
24
- id: string | null;
25
- quantity: number;
26
- variant: IkasCartLineVariantInput;
27
- };
28
- declare type IkasCartLineVariantInput = {
29
- id: string;
30
- name: string;
31
- };
32
- declare type IkasCartTaxLine = {
33
- price: number;
34
- rate: number;
35
- };
36
- export declare type IkasSaveItemToCartInput = {
37
- cartId: string | null;
38
- customerId: string | null;
39
- item: IkasCartLineItemInput;
40
- priceListId: string | null;
41
- salesChannelId: string;
42
- storefrontId: string;
43
- storefrontRoutingId: string;
44
- options: IkasProductCartLineOption[] | null;
45
- storefrontThemeId: string;
46
- };
47
- export {};
@@ -1 +0,0 @@
1
- import"../../../storefront/index.js";import'../../../ext/lodash/isArguments.js';import'../../../ext/lodash/isBuffer.js';import'../../../ext/lodash/isTypedArray.js';import'../../../ext/lodash/_baseGetTag.js';import{getCurrencySymbol as t}from"../../../utils/currency.js";import"../../../utils/i18n.js";import{makeAutoObservable as e}from"mobx";import{IkasOrderLineItem as r}from"../order/line-item/index.js";var o=function(){function o(o){this.dueDate=null,this.customerId=null,this.id=o.id||"",this.createdAt=o.createdAt||"",this.updatedAt=o.updatedAt||"",this.dueDate=o.dueDate,this.currencyCode=o.currencyCode||"",this.currencySymbol=t(this.currencyCode),this.customerId=o.customerId,this.itemCount=o.itemCount||0,this.items=o.items?o.items.map((function(t){return new r(t)})).filter((function(t){return!t.deleted})):[],this.merchantId=o.merchantId||"",this.totalPrice=o.totalPrice||0,this.salesChannelId=o.salesChannelId||"",this.storefrontId=o.storefrontId||null,this.storefrontRoutingId=o.storefrontRoutingId||null,this.storefrontThemeId=o.storefrontThemeId||null,this.taxLines=o.taxLines||[],e(this)}return Object.defineProperty(o.prototype,"totalTax",{get:function(){var t;return(null===(t=this.taxLines)||void 0===t?void 0:t.reduce((function(t,e){return t+e.price}),0))||0},enumerable:!1,configurable:!0}),o}();export{o as IkasCart};
@@ -1,52 +0,0 @@
1
- import { IkasImage } from "../image";
2
- import { IkasHTMLMetaData } from "../html-meta-data";
3
- export declare class IkasCategory {
4
- id: string;
5
- name: string;
6
- description: string | null;
7
- parentId: string | null;
8
- metaData?: IkasHTMLMetaData | null;
9
- image?: IkasImage | null;
10
- path: IkasCategoryPath[];
11
- orderType: ModelOrder | null;
12
- translations: IkasCategoryTranslation[] | null;
13
- constructor(data?: Partial<IkasCategory>);
14
- get href(): string;
15
- private setTranslations;
16
- }
17
- export declare class IkasCategoryPath {
18
- id: string;
19
- name: string;
20
- slug?: string | null;
21
- constructor(data: Partial<IkasCategoryPath>);
22
- get href(): string;
23
- }
24
- export declare class IkasFilterCategory {
25
- id: string;
26
- name: string;
27
- slug?: string | null;
28
- resultCount?: number | null;
29
- private _isSelected;
30
- constructor(data: Partial<IkasFilterCategory>);
31
- get isSelected(): boolean;
32
- get href(): string;
33
- toJSON(): this & {
34
- isSelected: boolean;
35
- };
36
- }
37
- export declare enum ModelOrder {
38
- BEST_SELLER = "BEST_SELLER",
39
- HIGHEST_DISCOUNT_RATIO = "HIGHEST_DISCOUNT_RATIO",
40
- HIGHEST_PRICE = "HIGHEST_PRICE",
41
- LOWEST_DISCOUNT_RATIO = "LOWEST_DISCOUNT_RATIO",
42
- LOWEST_PRICE = "LOWEST_PRICE",
43
- MANUALLY = "MANUALLY",
44
- NEWEST = "NEWEST",
45
- OLDEST = "OLDEST"
46
- }
47
- declare type IkasCategoryTranslation = {
48
- description: string | null;
49
- locale: string;
50
- name: string | null;
51
- };
52
- export {};
@@ -1 +0,0 @@
1
- import{__assign as t}from'../../../ext/tslib/tslib.es6.js';import{makeAutoObservable as e}from"mobx";import{IkasImage as i}from"../image/index.js";import{IkasHTMLMetaData as n}from"../html-meta-data/index.js";import{IkasStorefrontConfig as s}from"../../../storefront/index.js";var r,o=function(){function t(t){void 0===t&&(t={}),this.description=null,this.metaData=null,this.image=null,this.orderType=null,this.translations=null,this.id=t.id||Date.now()+"",this.name=t.name||"",this.description=t.description||null,this.parentId=t.parentId||null,this.metaData=t.metaData?new n(t.metaData):void 0,this.image=t.image?new i(t.image.id):null,this.path=t.path?t.path.map((function(t){return new l(t)})):[],this.orderType=t.orderType||null,this.translations=t.translations||null,this.setTranslations(),e(this)}return Object.defineProperty(t.prototype,"href",{get:function(){var t;return(null===(t=this.metaData)||void 0===t?void 0:t.slug)?"/".concat(this.metaData.slug):""},enumerable:!1,configurable:!0}),t.prototype.setTranslations=function(){if(this.translations&&this.translations.some((function(t){return t.locale===s.getCurrentLocale()}))){var t=this.translations.find((function(t){return t.locale===s.getCurrentLocale()}));(null==t?void 0:t.name)&&(this.name=t.name),(null==t?void 0:t.description)&&(this.description=t.description)}},t}(),l=function(){function t(t){this.id=t.id||"",this.name=t.name||"",this.slug=t.slug||"",e(this)}return Object.defineProperty(t.prototype,"href",{get:function(){return this.slug?"/".concat(this.slug):""},enumerable:!1,configurable:!0}),t}(),a=function(){function i(t){this._isSelected=!1,this.id=t.id||"",this.name=t.name||"",this.slug=t.slug||"",this.resultCount=void 0!==t.resultCount&&null!==t.resultCount?t.resultCount:null,this._isSelected=t.isSelected||!1,e(this)}return Object.defineProperty(i.prototype,"isSelected",{get:function(){return this._isSelected},enumerable:!1,configurable:!0}),Object.defineProperty(i.prototype,"href",{get:function(){return this.slug?"/".concat(this.slug):""},enumerable:!1,configurable:!0}),i.prototype.toJSON=function(){return t(t({},this),{isSelected:this._isSelected})},i}();!function(t){t.BEST_SELLER="BEST_SELLER",t.HIGHEST_DISCOUNT_RATIO="HIGHEST_DISCOUNT_RATIO",t.HIGHEST_PRICE="HIGHEST_PRICE",t.LOWEST_DISCOUNT_RATIO="LOWEST_DISCOUNT_RATIO",t.LOWEST_PRICE="LOWEST_PRICE",t.MANUALLY="MANUALLY",t.NEWEST="NEWEST",t.OLDEST="OLDEST"}(r||(r={}));export{o as IkasCategory,l as IkasCategoryPath,a as IkasFilterCategory,r as ModelOrder};
@@ -1,103 +0,0 @@
1
- import { IkasOrderAddress } from "../order/address";
2
- import { IkasOrderShippingLine } from "../order/shipping-line";
3
- import { IkasCart } from "../cart";
4
- import { IkasOrderAdjustment } from "../order";
5
- import { IkasPaymentGateway } from "../payment-gateway";
6
- import { IkasOrderGiftPackageLine } from "../order/gift-line";
7
- export declare class IkasCheckout {
8
- id?: string | null;
9
- createdAt?: string | null;
10
- updatedAt?: string | null;
11
- cartId?: string | null;
12
- cart?: IkasCart | null;
13
- orderId?: string | null;
14
- orderNumber?: string | null;
15
- merchantId?: string | null;
16
- shippingSettingsId?: string | null;
17
- shippingZoneRateId?: string | null;
18
- availableShippingMethods: IkasAvailableShippingMethod[];
19
- customer?: IkasCheckoutCustomer | null;
20
- billingAddress?: IkasOrderAddress | null;
21
- shippingAddress?: IkasOrderAddress | null;
22
- shippingLines?: IkasOrderShippingLine[] | null;
23
- shippingMethod?: IkasShippingMethod | null;
24
- status?: IkasCheckoutStatus | null;
25
- couponCode?: string | null;
26
- recoverEmailStatus?: IkasCheckoutRecoveryEmailStatus | null;
27
- recoveryStatus?: IkasCheckoutRecoveryStatus | null;
28
- totalFinalPrice?: number | null;
29
- adjustments?: IkasOrderAdjustment[] | null;
30
- note: string | null;
31
- isGiftPackage: boolean;
32
- giftPackageLines: IkasOrderGiftPackageLine[] | null;
33
- giftPackageNote: string | null;
34
- appliedCouponCode?: string | null;
35
- selectedPaymentGateway?: IkasPaymentGateway | null;
36
- constructor(data?: Partial<IkasCheckout>);
37
- get isComplete(): boolean;
38
- get totalTax(): number;
39
- get shippingTotal(): number;
40
- get hasCustomer(): boolean;
41
- get hasValidCustomerEmail(): boolean;
42
- get customerFullName(): string;
43
- get customerEmail(): string;
44
- get dateStr(): string;
45
- get $totalFinalPrice(): number;
46
- get couponAdjustment(): IkasOrderAdjustment | undefined;
47
- get nonCouponAdjustments(): IkasOrderAdjustment[] | undefined;
48
- }
49
- export declare class IkasCheckoutCustomer {
50
- id?: string;
51
- email?: string;
52
- firstName?: string;
53
- lastName?: string;
54
- notificationsAccepted?: boolean | null;
55
- constructor(data: Partial<IkasCheckoutCustomer>);
56
- }
57
- export declare enum IkasShippingMethod {
58
- CLICK_AND_COLLECT = "CLICK_AND_COLLECT",
59
- NO_SHIPMENT = "NO_SHIPMENT",
60
- SHIPMENT = "SHIPMENT"
61
- }
62
- export declare enum IkasCheckoutStatus {
63
- COMPLETED = "COMPLETED",
64
- OPEN = "OPEN"
65
- }
66
- export declare enum IkasCheckoutRecoveryEmailStatus {
67
- NOT_SENT = "NOT_SENT",
68
- SENT = "SENT"
69
- }
70
- export declare enum IkasCheckoutRecoveryStatus {
71
- NOT_RECOVERED = "NOT_RECOVERED",
72
- RECOVERED = "RECOVERED"
73
- }
74
- export declare enum IkasPaymentMethod {
75
- BUY_ONLINE_PAY_AT_STORE = "BUY_ONLINE_PAY_AT_STORE",
76
- CASH = "CASH",
77
- CASH_ON_DELIVERY = "CASH_ON_DELIVERY",
78
- CREDIT_CARD = "CREDIT_CARD",
79
- GIFT_CARD = "GIFT_CARD",
80
- MONEY_ORDER = "MONEY_ORDER",
81
- OTHER = "OTHER"
82
- }
83
- export declare type IkasPaymentMethodDetail = {
84
- cardHolderName: string;
85
- cardNumber: string;
86
- cvv: string;
87
- expiredMonth: number;
88
- expiredYear: number;
89
- installmentCount: number;
90
- threeDSecure: boolean;
91
- };
92
- export declare enum IkasShippingMethodEnum {
93
- CLICK_AND_COLLECT = "CLICK_AND_COLLECT",
94
- NO_SHIPMENT = "NO_SHIPMENT",
95
- SHIPMENT = "SHIPMENT"
96
- }
97
- export declare type IkasAvailableShippingMethod = {
98
- price: number;
99
- rateName: string;
100
- shippingMethod: IkasShippingMethodEnum;
101
- shippingSettingsId: string;
102
- shippingZoneRateId: string;
103
- };
@@ -1 +0,0 @@
1
- import{makeAutoObservable as t}from"mobx";import{IkasOrderAddress as e}from"../order/address/index.js";import{IkasCart as i}from"../cart/index.js";import{IkasPaymentMethodAdditionalPriceType as n}from"../payment-gateway/index.js";import{validateEmail as o,formatDate as r}from"../../../utils/helper.js";var s,l,a,u,d,c,h=function(){function a(n){void 0===n&&(n={}),this.id=null,this.createdAt=null,this.updatedAt=null,this.cartId=null,this.cart=null,this.orderId=null,this.orderNumber=null,this.merchantId=null,this.shippingSettingsId=null,this.shippingZoneRateId=null,this.customer=null,this.billingAddress=null,this.shippingAddress=null,this.shippingLines=null,this.shippingMethod=null,this.status=null,this.couponCode=null,this.recoverEmailStatus=null,this.recoveryStatus=null,this.totalFinalPrice=null,this.adjustments=null,this.note=null,this.giftPackageLines=null,this.giftPackageNote=null,this.appliedCouponCode=null,this.selectedPaymentGateway=null,this.id=n.id,this.createdAt=n.createdAt,this.updatedAt=n.updatedAt,this.cartId=n.cartId,this.cart=n.cart?new i(n.cart):void 0,this.orderId=n.orderId,this.orderNumber=n.orderNumber,this.merchantId=n.merchantId,this.shippingSettingsId=n.shippingSettingsId,this.shippingZoneRateId=n.shippingZoneRateId,this.availableShippingMethods=n.availableShippingMethods||[],this.customer=n.customer?new p(n.customer):null,this.billingAddress=n.billingAddress?new e(n.billingAddress):null,this.shippingAddress=n.shippingAddress?new e(n.shippingAddress):null,this.shippingLines=n.shippingLines||[],this.shippingMethod=n.shippingMethod||s.NO_SHIPMENT,this.status=n.status||l.OPEN,this.couponCode=n.couponCode,this.appliedCouponCode=n.couponCode,this.recoverEmailStatus=n.recoverEmailStatus,this.recoveryStatus=n.recoveryStatus,this.totalFinalPrice=n.totalFinalPrice,this.adjustments=n.adjustments,this.note=n.note||null,this.isGiftPackage=n.isGiftPackage||!1,this.giftPackageLines=n.giftPackageLines||null,this.giftPackageNote=n.giftPackageNote||null,this.selectedPaymentGateway=n.selectedPaymentGateway,t(this)}return Object.defineProperty(a.prototype,"isComplete",{get:function(){return!!this.orderId},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"totalTax",{get:function(){var t;return(null===(t=this.cart)||void 0===t?void 0:t.totalTax)||0},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"shippingTotal",{get:function(){var t;return(null===(t=this.shippingLines)||void 0===t?void 0:t.reduce((function(t,e){return t+e.price}),0))||0},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"hasCustomer",{get:function(){var t;return!!(null===(t=this.customer)||void 0===t?void 0:t.id)},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"hasValidCustomerEmail",{get:function(){var t;return!!(null===(t=this.customer)||void 0===t?void 0:t.email)&&o(this.customer.email)},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"customerFullName",{get:function(){var t,e;return"".concat((null===(t=this.customer)||void 0===t?void 0:t.firstName)||""," ").concat((null===(e=this.customer)||void 0===e?void 0:e.lastName)||"")},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"customerEmail",{get:function(){var t;return"".concat((null===(t=this.customer)||void 0===t?void 0:t.email)||"")},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"dateStr",{get:function(){var t=new Date;return t.setTime(parseFloat(this.updatedAt)),r(t)},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"$totalFinalPrice",{get:function(){var t,e=null===(t=this.selectedPaymentGateway)||void 0===t?void 0:t.getCalculatedAdditionalPrices(this.totalFinalPrice||0,this.shippingLines||null),i=this.totalFinalPrice||0;return null==e||e.forEach((function(t){t.type===n.DECREMENT?i-=t.amount:i+=t.amount})),i},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"couponAdjustment",{get:function(){var t;return null===(t=this.adjustments)||void 0===t?void 0:t.find((function(t){return!!t.couponId}))},enumerable:!1,configurable:!0}),Object.defineProperty(a.prototype,"nonCouponAdjustments",{get:function(){var t;return null===(t=this.adjustments)||void 0===t?void 0:t.filter((function(t){return!t.couponId}))},enumerable:!1,configurable:!0}),a}(),p=function(e){var i;this.id=e.id||"",this.email=e.email||"",this.firstName=e.firstName||"",this.lastName=e.lastName||"",this.notificationsAccepted=null===(i=e.notificationsAccepted)||void 0===i||i,t(this)};!function(t){t.CLICK_AND_COLLECT="CLICK_AND_COLLECT",t.NO_SHIPMENT="NO_SHIPMENT",t.SHIPMENT="SHIPMENT"}(s||(s={})),function(t){t.COMPLETED="COMPLETED",t.OPEN="OPEN"}(l||(l={})),function(t){t.NOT_SENT="NOT_SENT",t.SENT="SENT"}(a||(a={})),function(t){t.NOT_RECOVERED="NOT_RECOVERED",t.RECOVERED="RECOVERED"}(u||(u={})),function(t){t.BUY_ONLINE_PAY_AT_STORE="BUY_ONLINE_PAY_AT_STORE",t.CASH="CASH",t.CASH_ON_DELIVERY="CASH_ON_DELIVERY",t.CREDIT_CARD="CREDIT_CARD",t.GIFT_CARD="GIFT_CARD",t.MONEY_ORDER="MONEY_ORDER",t.OTHER="OTHER"}(d||(d={})),function(t){t.CLICK_AND_COLLECT="CLICK_AND_COLLECT",t.NO_SHIPMENT="NO_SHIPMENT",t.SHIPMENT="SHIPMENT"}(c||(c={}));export{h as IkasCheckout,p as IkasCheckoutCustomer,a as IkasCheckoutRecoveryEmailStatus,u as IkasCheckoutRecoveryStatus,l as IkasCheckoutStatus,d as IkasPaymentMethod,s as IkasShippingMethod,c as IkasShippingMethodEnum};
@@ -1,25 +0,0 @@
1
- export declare class IkasCheckoutSettings {
2
- id: string;
3
- createdAt: number;
4
- updatedAt: number;
5
- phoneRequirement: IkasCheckoutRequirementEnum | null;
6
- postalCodeRequirement: IkasCheckoutRequirementEnum | null;
7
- identityNumberRequirement: IkasCheckoutRequirementEnum | null;
8
- isAccountRequired: boolean;
9
- isTermsAndConditionsDefaultChecked: boolean;
10
- showTermsAndConditionsCheckbox: boolean;
11
- showCheckoutNote: boolean;
12
- storefrontId: string;
13
- giftPackagePriceList: IkasCheckoutSettingsPrice[] | null;
14
- isGiftPackageEnabled: boolean;
15
- constructor(data?: Partial<IkasCheckoutSettings>);
16
- }
17
- export declare enum IkasCheckoutRequirementEnum {
18
- INVISIBLE = "INVISIBLE",
19
- MANDATORY = "MANDATORY",
20
- OPTIONAL = "OPTIONAL"
21
- }
22
- export declare type IkasCheckoutSettingsPrice = {
23
- currencyCode: string;
24
- price: number;
25
- };
@@ -1 +0,0 @@
1
- var e,t=function(t){void 0===t&&(t={}),this.id=t.id||"",this.createdAt=t.createdAt||0,this.updatedAt=t.updatedAt||0,this.phoneRequirement=t.phoneRequirement||e.OPTIONAL,this.postalCodeRequirement=t.postalCodeRequirement||e.OPTIONAL,this.identityNumberRequirement=t.identityNumberRequirement||e.INVISIBLE,this.isAccountRequired=t.isAccountRequired||!1,this.isTermsAndConditionsDefaultChecked=t.isTermsAndConditionsDefaultChecked||!1,this.showTermsAndConditionsCheckbox=void 0===t.showTermsAndConditionsCheckbox||t.showTermsAndConditionsCheckbox,this.showCheckoutNote=t.showCheckoutNote||!1,this.storefrontId=t.storefrontId||"",this.giftPackagePriceList=t.giftPackagePriceList||null,this.isGiftPackageEnabled=t.isGiftPackageEnabled||!1};!function(e){e.INVISIBLE="INVISIBLE",e.MANDATORY="MANDATORY",e.OPTIONAL="OPTIONAL"}(e||(e={}));export{e as IkasCheckoutRequirementEnum,t as IkasCheckoutSettings};
@@ -1,4 +0,0 @@
1
- export declare type IkasCity = {
2
- id: string;
3
- name: string;
4
- };
@@ -1,7 +0,0 @@
1
- export declare class IkasContactForm {
2
- email: string;
3
- firstName: string;
4
- lastName: string;
5
- message: string;
6
- constructor(data: Partial<IkasContactForm>);
7
- }
@@ -1 +0,0 @@
1
- import{makeAutoObservable as s}from"mobx";var t=function(t){this.email=t.email||"",this.firstName=t.firstName||"",this.lastName=t.lastName||"",this.message=t.message||"",s(this)};export{t as IkasContactForm};
@@ -1,8 +0,0 @@
1
- export declare type IkasCountry = {
2
- id: string;
3
- name: string;
4
- native: string;
5
- iso2?: string;
6
- iso3?: string;
7
- phoneCode?: string;
8
- };
@@ -1,52 +0,0 @@
1
- import { IkasCheckoutSettings } from "../../checkout-settings";
2
- export declare class IkasCustomerAddress {
3
- id?: string | null;
4
- title?: string | null;
5
- addressLine1?: string | null;
6
- addressLine2?: string | null;
7
- country?: IkasCustomerAddressCountry | null;
8
- state?: IkasCustomerAddressState | null;
9
- city?: IkasCustomerAddressCity | null;
10
- district?: IkasCustomerAddressDistrict | null;
11
- isDefault?: boolean | null;
12
- company?: string | null;
13
- firstName?: string | null;
14
- lastName?: string | null;
15
- phone?: string | null;
16
- postalCode?: string | null;
17
- identityNumber?: string | null;
18
- taxNumber?: string | null;
19
- taxOffice?: string | null;
20
- checkoutSettings?: IkasCheckoutSettings | null;
21
- isDistrictRequired?: boolean;
22
- constructor(data?: Partial<IkasCustomerAddress>);
23
- get addressText(): string;
24
- get validationResult(): IkasAddressValidationResult;
25
- get isValid(): boolean;
26
- toJSON(): this;
27
- }
28
- declare type IkasCustomerAddressLocation = {
29
- id?: string;
30
- name?: string;
31
- code?: string;
32
- iso2?: string;
33
- iso3?: string;
34
- };
35
- export declare type IkasCustomerAddressCountry = IkasCustomerAddressLocation;
36
- export declare type IkasCustomerAddressCity = IkasCustomerAddressLocation;
37
- export declare type IkasCustomerAddressDistrict = IkasCustomerAddressLocation;
38
- export declare type IkasCustomerAddressState = IkasCustomerAddressLocation;
39
- export declare type IkasAddressValidationResult = {
40
- firstName: boolean;
41
- lastName: boolean;
42
- addressLine1: boolean;
43
- country: boolean;
44
- state: boolean;
45
- city: boolean;
46
- district: boolean;
47
- phone: boolean;
48
- postalCode: boolean;
49
- identityNumber: boolean;
50
- title: boolean;
51
- };
52
- export {};
@@ -1 +0,0 @@
1
- import{__assign as t}from'../../../../ext/tslib/tslib.es6.js';import{makeAutoObservable as i}from"mobx";import{validatePhoneNumber as e}from"../../../../utils/helper.js";import"../../../../storefront/index.js";import"../../../../utils/i18n.js";import{IkasCheckoutRequirementEnum as s}from"../../checkout-settings/index.js";var n=function(){function n(t){void 0===t&&(t={}),this.id=null,this.title=null,this.addressLine1=null,this.addressLine2=null,this.country=null,this.state=null,this.city=null,this.district=null,this.isDefault=null,this.company=null,this.firstName=null,this.lastName=null,this.phone=null,this.postalCode=null,this.identityNumber=null,this.taxNumber=null,this.taxOffice=null,this.checkoutSettings=null,this.isDistrictRequired=!1,this.id=t.id||null,this.title=t.title||null,this.addressLine1=t.addressLine1||null,this.addressLine2=t.addressLine2||null,this.country=t.country||null,this.state=t.state||null,this.city=t.city||null,this.district=t.district||null,this.isDefault=t.isDefault||null,this.company=t.company||null,this.firstName=t.firstName||null,this.lastName=t.lastName||null,this.phone=t.phone||null,this.postalCode=t.postalCode||null,this.identityNumber=t.identityNumber||null,this.taxNumber=t.taxNumber||null,this.taxOffice=t.taxOffice||null,i(this)}return Object.defineProperty(n.prototype,"addressText",{get:function(){var t=[];return this.addressLine1&&t.push(this.addressLine1),this.addressLine2&&t.push(this.addressLine2),this.postalCode&&t.push(this.postalCode),this.district&&this.district.name&&t.push(this.district.name),this.city&&this.city.name&&t.push(this.city.name),this.state&&this.state.name&&"Default"!==this.state.name&&t.push(this.state.name),this.country&&this.country.name&&t.push(this.country.name),t.join(", ")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"validationResult",{get:function(){var t,i,n,l,u,h=!!this.phone&&this.phone.length>=10&&e(this.phone);return{firstName:!!this.firstName,lastName:!!this.lastName,addressLine1:!!this.addressLine1,country:!!this.country,state:!!this.state,city:!!this.city,district:!this.isDistrictRequired||!!(null===(t=this.district)||void 0===t?void 0:t.id),phone:!((null===(i=this.checkoutSettings)||void 0===i?void 0:i.phoneRequirement)===s.MANDATORY||(null===(n=this.checkoutSettings)||void 0===n?void 0:n.phoneRequirement)===s.OPTIONAL&&this.phone)||h,postalCode:(null===(l=this.checkoutSettings)||void 0===l?void 0:l.postalCodeRequirement)!==s.MANDATORY||!!this.postalCode,identityNumber:(null===(u=this.checkoutSettings)||void 0===u?void 0:u.identityNumberRequirement)!==s.MANDATORY||!!this.identityNumber,title:!!this.title}},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isValid",{get:function(){return Object.values(this.validationResult).every((function(t){return t}))},enumerable:!1,configurable:!0}),n.prototype.toJSON=function(){var i=t({},this);return delete i.checkoutSettings,delete i.isDistrictRequired,i},n}();export{n as IkasCustomerAddress};
@@ -1,9 +0,0 @@
1
- import { IkasCustomerAttribute, IkasCustomerAttributeOption } from "../..";
2
- export declare class IkasCustomerAttributeValue {
3
- value?: string | null;
4
- customerAttributeId?: string | null;
5
- customerAttributeOptionId?: string | null;
6
- customerAttribute?: IkasCustomerAttribute | null;
7
- customerAttributeOption?: IkasCustomerAttributeOption | null;
8
- constructor(data: Partial<IkasCustomerAttributeValue>);
9
- }
@@ -1 +0,0 @@
1
- import{makeAutoObservable as t}from"mobx";var u=function(u){this.value=u.value||null,this.customerAttributeId=u.customerAttributeId||null,this.customerAttributeOptionId=u.customerAttributeOptionId||null,this.customerAttribute=u.customerAttribute||null,this.customerAttributeOption=u.customerAttributeOption||null,t(this)};export{u as IkasCustomerAttributeValue};
@@ -1,36 +0,0 @@
1
- import { IkasCustomerAddress } from "./address";
2
- import { IkasCustomerAttributeValue } from "./attribute-value";
3
- export declare class IkasCustomer {
4
- id: string;
5
- firstName: string;
6
- lastName: string;
7
- email: string;
8
- phone?: string | null;
9
- isEmailVerified: boolean;
10
- isPhoneVerified: boolean;
11
- accountStatus: IkasCustomerAccountStatus;
12
- addresses: IkasCustomerAddress[];
13
- subscriptionStatus: IkasCustomerEmailSubscriptionStatus | null;
14
- customerGroupIds: string[] | null;
15
- attributes: IkasCustomerAttributeValue[];
16
- constructor(data: Partial<IkasCustomer>);
17
- get isSubscribed(): boolean;
18
- get basicInfo(): {
19
- id: string;
20
- firstName: string;
21
- lastName: string;
22
- email: string;
23
- phone: string | null | undefined;
24
- };
25
- }
26
- export declare enum IkasCustomerAccountStatus {
27
- ACTIVE_ACCOUNT = "ACTIVE_ACCOUNT",
28
- DECLINED_ACCOUNT_INVITATION = "DECLINED_ACCOUNT_INVITATION",
29
- DISABLED_ACCOUNT = "DISABLED_ACCOUNT",
30
- INVITED_TO_CREATE_ACCOUNT = "INVITED_TO_CREATE_ACCOUNT"
31
- }
32
- export declare enum IkasCustomerEmailSubscriptionStatus {
33
- NOT_SUBSCRIBED = "NOT_SUBSCRIBED",
34
- PENDING_CONFIRMATION = "PENDING_CONFIRMATION",
35
- SUBSCRIBED = "SUBSCRIBED"
36
- }
@@ -1 +0,0 @@
1
- import{IkasCustomerAddress as t}from"./address/index.js";import{makeAutoObservable as i}from"mobx";import{IkasCustomerAttributeValue as e}from"./attribute-value/index.js";var s,r,n=function(){function n(r){this.phone=null,this.id=r.id||"",this.firstName=r.firstName||"",this.lastName=r.lastName||"",this.email=r.email||"",this.phone=r.phone,this.isEmailVerified=r.isEmailVerified||!1,this.isPhoneVerified=r.isPhoneVerified||!1,this.accountStatus=r.accountStatus||s.ACTIVE_ACCOUNT,this.addresses=r.addresses?r.addresses.map((function(i){return new t(i)})):[],this.subscriptionStatus=r.subscriptionStatus||null,this.customerGroupIds=r.customerGroupIds||null,this.attributes=r.attributes?r.attributes.map((function(t){return new e(t)})):[],i(this)}return Object.defineProperty(n.prototype,"isSubscribed",{get:function(){return this.subscriptionStatus===r.SUBSCRIBED||this.subscriptionStatus===r.PENDING_CONFIRMATION},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"basicInfo",{get:function(){return{id:this.id,firstName:this.firstName,lastName:this.lastName,email:this.email,phone:this.phone}},enumerable:!1,configurable:!0}),n}();!function(t){t.ACTIVE_ACCOUNT="ACTIVE_ACCOUNT",t.DECLINED_ACCOUNT_INVITATION="DECLINED_ACCOUNT_INVITATION",t.DISABLED_ACCOUNT="DISABLED_ACCOUNT",t.INVITED_TO_CREATE_ACCOUNT="INVITED_TO_CREATE_ACCOUNT"}(s||(s={})),function(t){t.NOT_SUBSCRIBED="NOT_SUBSCRIBED",t.PENDING_CONFIRMATION="PENDING_CONFIRMATION",t.SUBSCRIBED="SUBSCRIBED"}(r||(r={}));export{n as IkasCustomer,s as IkasCustomerAccountStatus,r as IkasCustomerEmailSubscriptionStatus};
@@ -1,5 +0,0 @@
1
- export declare class IkasCustomerAttributeOption {
2
- id: string;
3
- name: string;
4
- constructor(data?: Partial<IkasCustomerAttributeOption>);
5
- }
@@ -1 +0,0 @@
1
- import{makeAutoObservable as i}from"mobx";var o=function(o){void 0===o&&(o={}),this.id=o.id||"",this.name=o.name||"",i(this)};export{o as IkasCustomerAttributeOption};
@@ -1,17 +0,0 @@
1
- export declare class IkasCustomerAttributeSalesChannel {
2
- permission: IkasCustomerAttributePermissionEnum;
3
- registerPageRequirement: IkasCustomerAttributeRegisterPageRequirementEnum;
4
- salesChannelId: string;
5
- storefrontId: string;
6
- constructor(data: IkasCustomerAttributeSalesChannel);
7
- }
8
- export declare enum IkasCustomerAttributePermissionEnum {
9
- INVISIBLE = "INVISIBLE",
10
- READ = "READ",
11
- WRITE = "WRITE"
12
- }
13
- export declare enum IkasCustomerAttributeRegisterPageRequirementEnum {
14
- INVISIBLE = "INVISIBLE",
15
- MANDATORY = "MANDATORY",
16
- OPTIONAL = "OPTIONAL"
17
- }
@@ -1 +0,0 @@
1
- import{makeAutoObservable as e}from"mobx";var I,t,i=function(i){this.permission=i.permission||I.READ,this.registerPageRequirement=i.registerPageRequirement||t.OPTIONAL,this.salesChannelId=i.salesChannelId,this.storefrontId=i.storefrontId,e(this)};!function(e){e.INVISIBLE="INVISIBLE",e.READ="READ",e.WRITE="WRITE"}(I||(I={})),function(e){e.INVISIBLE="INVISIBLE",e.MANDATORY="MANDATORY",e.OPTIONAL="OPTIONAL"}(t||(t={}));export{I as IkasCustomerAttributePermissionEnum,t as IkasCustomerAttributeRegisterPageRequirementEnum,i as IkasCustomerAttributeSalesChannel};
@@ -1,35 +0,0 @@
1
- import { IkasCustomerAttributeOption } from "./customer-attribute-option";
2
- import { IkasCustomerAttributeSalesChannel } from "./customer-attribute-sales-channel";
3
- export declare class IkasCustomerAttribute {
4
- id: string;
5
- name: string;
6
- description: string | null;
7
- type: IkasCustomerAttributeType;
8
- options?: IkasCustomerAttributeOption[] | null;
9
- salesChannels?: IkasCustomerAttributeSalesChannel[] | null;
10
- translations: IkasCustomerAttributeTranslation[] | null;
11
- constructor(data: Partial<IkasCustomerAttribute>);
12
- get accountPagePermission(): import("./customer-attribute-sales-channel").IkasCustomerAttributePermissionEnum | undefined;
13
- get registerPageRequirement(): import("./customer-attribute-sales-channel").IkasCustomerAttributeRegisterPageRequirementEnum | undefined;
14
- private setTranslations;
15
- }
16
- export declare enum IkasCustomerAttributeType {
17
- CHOICE = "CHOICE",
18
- MULTIPLE_CHOICE = "MULTIPLE_CHOICE",
19
- TEXT = "TEXT",
20
- BOOLEAN = "BOOLEAN",
21
- NUMERIC = "NUMERIC",
22
- DATETIME = "DATETIME",
23
- HTML = "HTML"
24
- }
25
- declare type IkasCustomerAttributeTranslation = {
26
- description: string | null;
27
- locale: string;
28
- name: string | null;
29
- options: IkasCustomerAttributeOptionTranslation[] | null;
30
- };
31
- declare type IkasCustomerAttributeOptionTranslation = {
32
- id: string;
33
- name: string | null;
34
- };
35
- export {};
@@ -1 +0,0 @@
1
- import{makeAutoObservable as n}from"mobx";import{IkasStorefrontConfig as t}from"../../../storefront/index.js";import{IkasCustomerAttributeSalesChannel as e}from"./customer-attribute-sales-channel/index.js";var i,s=function(){function s(t){this.translations=null,this.id=t.id||"",this.name=t.name||"",this.description=t.description||"",this.type=t.type||i.TEXT,this.options=t.options||null,this.salesChannels=t.salesChannels?t.salesChannels.map((function(n){return new e(n)})):[],this.translations=t.translations||null,this.setTranslations(),n(this)}return Object.defineProperty(s.prototype,"accountPagePermission",{get:function(){var n,e,i=t.salesChannelId;return null===(e=null===(n=this.salesChannels)||void 0===n?void 0:n.find((function(n){return n.salesChannelId===i})))||void 0===e?void 0:e.permission},enumerable:!1,configurable:!0}),Object.defineProperty(s.prototype,"registerPageRequirement",{get:function(){var n,e,i=t.salesChannelId;return null===(e=null===(n=this.salesChannels)||void 0===n?void 0:n.find((function(n){return n.salesChannelId===i})))||void 0===e?void 0:e.registerPageRequirement},enumerable:!1,configurable:!0}),s.prototype.setTranslations=function(){var n;if(this.translations&&this.translations.some((function(n){return n.locale===t.getCurrentLocale()}))){var e=this.translations.find((function(n){return n.locale===t.getCurrentLocale()}));(null==e?void 0:e.name)&&(this.name=e.name),(null==e?void 0:e.description)&&(this.description=e.description),(null==e?void 0:e.options)&&(null===(n=this.options)||void 0===n||n.forEach((function(n){var t,i=null===(t=e.options)||void 0===t?void 0:t.find((function(t){return t.id===n.id}));i&&i.name&&(n.name=i.name)})))}},s}();!function(n){n.CHOICE="CHOICE",n.MULTIPLE_CHOICE="MULTIPLE_CHOICE",n.TEXT="TEXT",n.BOOLEAN="BOOLEAN",n.NUMERIC="NUMERIC",n.DATETIME="DATETIME",n.HTML="HTML"}(i||(i={}));export{s as IkasCustomerAttribute,i as IkasCustomerAttributeType};