@ikas/storefront 4.0.0-alpha.78 → 4.0.0-alpha.8
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.
- package/package.json +19 -21
- package/src/analytics/analytics.ts +536 -0
- package/src/analytics/events.ts +116 -0
- package/src/analytics/facebookPixel.ts +226 -0
- package/src/analytics/googleAnalytics.ts +227 -0
- package/src/analytics/googleTagManager.ts +341 -0
- package/src/analytics/googleUniversal.ts +136 -0
- package/src/analytics/head/index.tsx +135 -0
- package/src/analytics/ikas.ts +558 -0
- package/src/analytics/index.ts +2 -0
- package/src/analytics/tiktokPixel.ts +223 -0
- package/src/components/checkout/components/address-form/index.tsx +406 -0
- package/src/components/checkout/components/address-form/model.ts +397 -0
- package/src/components/checkout/components/button/index.tsx +44 -0
- package/src/components/checkout/components/button/style.module.scss +103 -0
- package/src/components/checkout/components/cart-summary/cart-item/index.tsx +180 -0
- package/src/components/checkout/components/cart-summary/cart-item/style.module.scss +107 -0
- package/src/components/checkout/components/cart-summary/index.tsx +481 -0
- package/src/components/checkout/components/cart-summary/style.module.scss +251 -0
- package/src/components/checkout/components/checkbox/check.tsx +23 -0
- package/src/components/checkout/components/checkbox/index.tsx +50 -0
- package/src/components/checkout/components/checkbox/style.module.scss +72 -0
- package/src/components/checkout/components/credit-card-form/index.tsx +122 -0
- package/src/components/checkout/components/credit-card-form/model.ts +56 -0
- package/src/components/checkout/components/credit-card-form/style.module.scss +6 -0
- package/src/components/checkout/components/credit-card-form/svg/amex.tsx +30 -0
- package/src/components/checkout/components/credit-card-form/svg/master-card.tsx +38 -0
- package/src/components/checkout/components/credit-card-form/svg/troy.tsx +54 -0
- package/src/components/checkout/components/credit-card-form/svg/visa.tsx +46 -0
- package/src/components/checkout/components/customer-addresses/index.tsx +333 -0
- package/src/components/checkout/components/customer-addresses/model.ts +126 -0
- package/src/components/checkout/components/customer-addresses/style.module.scss +38 -0
- package/src/components/checkout/components/delivery-methods/icon-button/index.tsx +29 -0
- package/src/components/checkout/components/delivery-methods/icon-button/style.module.scss +41 -0
- package/src/components/checkout/components/delivery-methods/icons/box.tsx +22 -0
- package/src/components/checkout/components/delivery-methods/icons/store.tsx +22 -0
- package/src/components/checkout/components/delivery-methods/index.tsx +39 -0
- package/src/components/checkout/components/delivery-methods/style.module.scss +4 -0
- package/src/components/checkout/components/error/customer-login-required-error/index.tsx +23 -0
- package/src/components/checkout/components/error/index.tsx +54 -0
- package/src/components/checkout/components/error/no-shipping-error/index.tsx +14 -0
- package/src/components/checkout/components/error/payment-error/index.tsx +21 -0
- package/src/components/checkout/components/error/stock-error/index.tsx +72 -0
- package/src/components/checkout/components/error/stock-error/style.module.scss +11 -0
- package/src/components/checkout/components/error/unknown-error/index.tsx +19 -0
- package/src/components/checkout/components/expandable-section/index.tsx +37 -0
- package/src/components/checkout/components/expandable-section/style.module.scss +29 -0
- package/src/components/checkout/components/form-item/caret-down.tsx +20 -0
- package/src/components/checkout/components/form-item/index.tsx +207 -0
- package/src/components/checkout/components/form-item/model.ts +145 -0
- package/src/components/checkout/components/form-item/style.module.scss +216 -0
- package/src/components/checkout/components/fullscreen-loading/index.tsx +10 -0
- package/src/components/checkout/components/fullscreen-loading/style.module.scss +56 -0
- package/src/components/checkout/components/input-with-button/index.tsx +53 -0
- package/src/components/checkout/components/input-with-button/style.module.scss +104 -0
- package/src/components/checkout/components/master-pass/credit-card-form/index.tsx +160 -0
- package/src/components/checkout/components/master-pass/credit-card-form/style.module.scss +15 -0
- package/src/components/checkout/components/master-pass/modal/index.tsx +32 -0
- package/src/components/checkout/components/master-pass/modal/style.module.scss +42 -0
- package/src/components/checkout/components/master-pass/modal/svg/modal-close.tsx +20 -0
- package/src/components/checkout/components/master-pass/modal-link-card-to-client/index.tsx +62 -0
- package/src/components/checkout/components/master-pass/modal-link-card-to-client/style.module.scss +27 -0
- package/src/components/checkout/components/master-pass/modal-link-card-to-client/svg/info-mark.tsx +19 -0
- package/src/components/checkout/components/master-pass/modal-link-card-to-client/svg/master-pass-by-master-card-big.tsx +41 -0
- package/src/components/checkout/components/master-pass/modal-otp/index.tsx +202 -0
- package/src/components/checkout/components/master-pass/modal-otp/style.module.scss +47 -0
- package/src/components/checkout/components/master-pass/modal-otp/svg/master-pass.tsx +28 -0
- package/src/components/checkout/components/master-pass/modal-response/index.tsx +24 -0
- package/src/components/checkout/components/master-pass/modal-response/style.module.scss +7 -0
- package/src/components/checkout/components/master-pass/modal-success/index.tsx +54 -0
- package/src/components/checkout/components/master-pass/modal-success/style.module.scss +25 -0
- package/src/components/checkout/components/master-pass/modal-success/svg/master-pass-by-master-card-small.tsx +41 -0
- package/src/components/checkout/components/master-pass/modal-success/svg/success.tsx +21 -0
- package/src/components/checkout/components/master-pass/payment-gateway/svg/master-card.tsx +14 -0
- package/src/components/checkout/components/master-pass/svg/master-pass-by-master-card.tsx +34 -0
- package/src/components/checkout/components/modal/index.tsx +41 -0
- package/src/components/checkout/components/modal/style.module.scss +68 -0
- package/src/components/checkout/components/modal/useEscape.tsx +20 -0
- package/src/components/checkout/components/notification-box/index.tsx +70 -0
- package/src/components/checkout/components/notification-box/style.module.scss +69 -0
- package/src/components/checkout/components/offer-product/index.tsx +180 -0
- package/src/components/checkout/components/offer-product/select/arrows.tsx +22 -0
- package/src/components/checkout/components/offer-product/select/index.tsx +40 -0
- package/src/components/checkout/components/offer-product/select/style.module.scss +28 -0
- package/src/components/checkout/components/offer-product/style.module.scss +117 -0
- package/src/components/checkout/components/phone-number-input/compare-strings.ts +5 -0
- package/src/components/checkout/components/phone-number-input/get-countries.ts +52 -0
- package/src/components/checkout/components/phone-number-input/index.tsx +125 -0
- package/src/components/checkout/components/phone-number-input/style.module.scss +83 -0
- package/src/components/checkout/components/select-box/index.tsx +60 -0
- package/src/components/checkout/components/select-box/style.module.scss +55 -0
- package/src/components/checkout/components/step-container/index.tsx +107 -0
- package/src/components/checkout/components/step-container/style.module.scss +86 -0
- package/src/components/checkout/components/stripe/checkout-form.tsx +55 -0
- package/src/components/checkout/components/stripe/index.tsx +91 -0
- package/src/components/checkout/components/stripe/style.module.scss +75 -0
- package/src/components/checkout/components/svg/arrow-down.tsx +23 -0
- package/src/components/checkout/components/svg/arrow-left.tsx +23 -0
- package/src/components/checkout/components/svg/arrow-right.tsx +23 -0
- package/src/components/checkout/components/svg/cross.tsx +23 -0
- package/src/components/checkout/components/svg/discount.tsx +34 -0
- package/src/components/checkout/components/svg/external.tsx +101 -0
- package/src/components/checkout/components/svg/gift.tsx +40 -0
- package/src/components/checkout/components/svg/ikas.tsx +39 -0
- package/src/components/checkout/components/svg/lock.tsx +23 -0
- package/src/components/checkout/components/svg/shopping-cart.tsx +23 -0
- package/src/components/checkout/components/svg/success-circle.tsx +26 -0
- package/src/components/checkout/components/svg/tag.tsx +23 -0
- package/src/components/checkout/components/svg/warning.tsx +30 -0
- package/src/components/checkout/components/toggle/index.tsx +51 -0
- package/src/components/checkout/components/toggle/style.module.scss +75 -0
- package/src/components/checkout/components/tooltip/index.tsx +27 -0
- package/src/components/checkout/components/tooltip/style.module.scss +86 -0
- package/src/components/checkout/index.tsx +641 -0
- package/src/components/checkout/model.ts +1466 -0
- package/src/components/checkout/modelMasterPass.ts +1001 -0
- package/src/components/checkout/steps/step-info/index.tsx +85 -0
- package/src/components/checkout/steps/step-payment/billing-address/index.tsx +48 -0
- package/src/components/checkout/steps/step-payment/index.tsx +104 -0
- package/src/components/checkout/steps/step-payment/payment-gateways/index.tsx +218 -0
- package/src/components/checkout/steps/step-payment/payment-gateways/installments/index.tsx +54 -0
- package/src/components/checkout/steps/step-payment/payment-gateways/installments/style.module.scss +50 -0
- package/src/components/checkout/steps/step-payment/payment-gateways/style.module.scss +32 -0
- package/src/components/checkout/steps/step-payment/style.module.scss +32 -0
- package/src/components/checkout/steps/step-shipping/index.tsx +126 -0
- package/src/components/checkout/steps/step-shipping/style.module.scss +44 -0
- package/src/components/checkout/steps/step-success/index.tsx +366 -0
- package/src/components/checkout/steps/step-success/style.module.scss +161 -0
- package/src/components/checkout/style.module.scss +366 -0
- package/src/components/checkout/styles/common.module.scss +59 -0
- package/src/components/checkout/styles/variables.scss +40 -0
- package/src/components/image/index.tsx +43 -0
- package/src/components/index.ts +5 -0
- package/src/components/link/index.tsx +26 -0
- package/src/components/page/ThemeComponent.tsx +108 -0
- package/src/components/page/head.tsx +358 -0
- package/src/components/page/index.tsx +219 -0
- package/src/components/page-editor/ThemeComponentEditor.tsx +270 -0
- package/src/components/page-editor/error/index.tsx +18 -0
- package/src/components/page-editor/index.tsx +194 -0
- package/src/components/page-editor/loader/index.tsx +18 -0
- package/src/components/page-editor/loader/style.module.scss +59 -0
- package/src/components/page-editor/model.ts +847 -0
- package/src/index.ts +6 -0
- package/src/models/data/base/index.ts +15 -0
- package/src/models/data/blog/category/index.ts +36 -0
- package/src/models/data/blog/content/index.ts +16 -0
- package/src/models/data/blog/index.ts +75 -0
- package/src/models/data/blog/meta-data/index.ts +39 -0
- package/src/models/data/blog/tag/index.ts +16 -0
- package/src/models/data/blog/writer/index.ts +17 -0
- package/src/models/data/brand/index.ts +58 -0
- package/src/models/data/brand/translation/index.ts +16 -0
- package/src/models/data/campaign-offer/index.ts +79 -0
- package/src/models/data/campaign-offer/product/index.ts +69 -0
- package/src/models/data/cart/available-shipping-method/index.ts +25 -0
- package/src/models/data/cart/campaign-offer/index.ts +43 -0
- package/src/models/data/cart/index.ts +38 -0
- package/src/models/data/category/index.ts +69 -0
- package/src/models/data/category/init.ts +33 -0
- package/src/models/data/category/path-item/index.ts +42 -0
- package/src/models/data/category/translations/index.ts +16 -0
- package/src/models/data/checkout/index.ts +55 -0
- package/src/models/data/checkout-settings/index.ts +63 -0
- package/src/models/data/checkout-settings/option/index.ts +14 -0
- package/src/models/data/checkout-settings/price/index.ts +14 -0
- package/src/models/data/city/index.ts +34 -0
- package/src/models/data/contact-form/index.ts +20 -0
- package/src/models/data/country/index.ts +46 -0
- package/src/models/data/customer/address/city/index.ts +16 -0
- package/src/models/data/customer/address/country/index.ts +20 -0
- package/src/models/data/customer/address/district/index.ts +16 -0
- package/src/models/data/customer/address/index.tsx +136 -0
- package/src/models/data/customer/address/state/index.ts +16 -0
- package/src/models/data/customer/attribute/index.ts +61 -0
- package/src/models/data/customer/attribute/option/index.ts +20 -0
- package/src/models/data/customer/attribute/sales-channel/index.ts +24 -0
- package/src/models/data/customer/attribute/translation/index.ts +23 -0
- package/src/models/data/customer/attribute/translation/option/index.ts +16 -0
- package/src/models/data/customer/attribute/value/index.ts +29 -0
- package/src/models/data/customer/index.ts +122 -0
- package/src/models/data/customer/review/index.ts +70 -0
- package/src/models/data/customer/review/settings/index.ts +14 -0
- package/src/models/data/customer/review/summary/index.ts +29 -0
- package/src/models/data/customer/review/summary/star/index.ts +16 -0
- package/src/models/data/district/index.ts +36 -0
- package/src/models/data/favorite-product/index.ts +23 -0
- package/src/models/data/filter-category/index.ts +30 -0
- package/src/models/data/html-meta-data/index.ts +69 -0
- package/src/models/data/html-meta-data/translations/index.ts +16 -0
- package/src/models/data/image/index.ts +33 -0
- package/src/models/data/index.ts +192 -0
- package/src/models/data/last-viewed-product/index.ts +14 -0
- package/src/models/data/merchant-settings/index.ts +26 -0
- package/src/models/data/order/address/city/index.ts +16 -0
- package/src/models/data/order/address/country/index.ts +20 -0
- package/src/models/data/order/address/district/index.ts +16 -0
- package/src/models/data/order/address/index.ts +96 -0
- package/src/models/data/order/address/state/index.ts +16 -0
- package/src/models/data/order/adjustment/applied-order-line/index.ts +20 -0
- package/src/models/data/order/adjustment/index.ts +39 -0
- package/src/models/data/order/customer/index.ts +24 -0
- package/src/models/data/order/gift-line/index.ts +14 -0
- package/src/models/data/order/index.ts +241 -0
- package/src/models/data/order/invoice/index.ts +29 -0
- package/src/models/data/order/line-item/discount/index.ts +23 -0
- package/src/models/data/order/line-item/index.ts +153 -0
- package/src/models/data/order/line-item/option/index.ts +24 -0
- package/src/models/data/order/line-item/option/value/index.ts +16 -0
- package/src/models/data/order/line-item/variant/brand/index.ts +14 -0
- package/src/models/data/order/line-item/variant/category/index.ts +36 -0
- package/src/models/data/order/line-item/variant/index.ts +62 -0
- package/src/models/data/order/line-item/variant/price/index.ts +20 -0
- package/src/models/data/order/line-item/variant/value/index.ts +31 -0
- package/src/models/data/order/package/index.ts +41 -0
- package/src/models/data/order/package/tracking-info/index.ts +20 -0
- package/src/models/data/order/payment-method/index.ts +23 -0
- package/src/models/data/order/refund/index.ts +17 -0
- package/src/models/data/order/refund/line-item/index.ts +16 -0
- package/src/models/data/order/refund/settings/index.ts +16 -0
- package/src/models/data/order/shipping-line/index.ts +29 -0
- package/src/models/data/order/tax-line/index.ts +14 -0
- package/src/models/data/order/transaction/error/index.ts +16 -0
- package/src/models/data/order/transaction/index.ts +58 -0
- package/src/models/data/order/transaction/payment-method-detail/index.ts +33 -0
- package/src/models/data/order/transaction/payment-method-detail/installment-price/index.ts +22 -0
- package/src/models/data/payment-gateway/additional-price/index.ts +29 -0
- package/src/models/data/payment-gateway/index.ts +90 -0
- package/src/models/data/payment-gateway/settings/index.ts +21 -0
- package/src/models/data/payment-gateway/translation/index.ts +18 -0
- package/src/models/data/product/attribute/index.ts +37 -0
- package/src/models/data/product/attribute/option/index.ts +14 -0
- package/src/models/data/product/attribute/table-cell/index.ts +16 -0
- package/src/models/data/product/attribute/table-template/index.ts +19 -0
- package/src/models/data/product/attribute/translation/index.ts +39 -0
- package/src/models/data/product/attribute-value/index.ts +69 -0
- package/src/models/data/product/back-in-stock-settings/index.ts +14 -0
- package/src/models/data/product/campaign/data/index.ts +70 -0
- package/src/models/data/product/campaign/filter/index.ts +19 -0
- package/src/models/data/product/campaign/index.ts +15 -0
- package/src/models/data/product/campaign/product-buyx-then-gety/index.ts +57 -0
- package/src/models/data/product/campaign/product-campaign-date-range-field/index.ts +16 -0
- package/src/models/data/product/campaign/product-fixed-discount/index.ts +40 -0
- package/src/models/data/product/filter/index.ts +285 -0
- package/src/models/data/product/image/index.ts +22 -0
- package/src/models/data/product/index.ts +298 -0
- package/src/models/data/product/option-set/index.ts +94 -0
- package/src/models/data/product/option-set/option/index.ts +245 -0
- package/src/models/data/product/tag/index.ts +14 -0
- package/src/models/data/product/variant/index.ts +104 -0
- package/src/models/data/product/variant/price/index.ts +58 -0
- package/src/models/data/product/variant-type/index.ts +17 -0
- package/src/models/data/product/variant-type/init.ts +15 -0
- package/src/models/data/raffle/index.ts +155 -0
- package/src/models/data/sales-channel/index.ts +56 -0
- package/src/models/data/state/index.ts +18 -0
- package/src/models/data/stock-location/address/city/index.ts +16 -0
- package/src/models/data/stock-location/address/country/index.ts +18 -0
- package/src/models/data/stock-location/address/district/index.ts +18 -0
- package/src/models/data/stock-location/address/index.ts +34 -0
- package/src/models/data/stock-location/address/state/index.ts +18 -0
- package/src/models/data/stock-location/available/index.ts +22 -0
- package/src/models/data/stock-location/index.ts +35 -0
- package/src/models/data/storefront/domain/index.ts +20 -0
- package/src/models/data/storefront/index.ts +65 -0
- package/src/models/data/storefront/localization/index.tsx +18 -0
- package/src/models/data/storefront/routing/dynamic-currency/index.ts +16 -0
- package/src/models/data/storefront/routing/index.tsx +25 -0
- package/src/models/data/storefront/theme/index.tsx +25 -0
- package/src/models/data/storefront/theme-localization/index.tsx +31 -0
- package/src/models/data/theme-json/component/index.ts +41 -0
- package/src/models/data/theme-json/component/prop/index.ts +55 -0
- package/src/models/data/theme-json/custom-data/index.ts +132 -0
- package/src/models/data/theme-json/index.ts +210 -0
- package/src/models/data/theme-json/page/component/index.ts +22 -0
- package/src/models/data/theme-json/page/index.ts +54 -0
- package/src/models/data/theme-json/settings/color/index.ts +35 -0
- package/src/models/data/theme-json/settings/favicon/index.ts +12 -0
- package/src/models/data/theme-json/settings/font-family/index.ts +14 -0
- package/src/models/data/theme-json/settings/index.ts +30 -0
- package/src/models/data/variant-type/index.ts +44 -0
- package/src/models/data/variant-type/variant-value/index.ts +32 -0
- package/src/models/index.ts +2 -0
- package/src/models/ui/blog-category-list/index.ts +169 -0
- package/src/models/ui/blog-list/index.ts +175 -0
- package/src/models/ui/brand-list/index.ts +237 -0
- package/src/models/ui/category-list/index.ts +237 -0
- package/src/models/ui/component-renderer/index.ts +9 -0
- package/src/models/ui/customer-review-list/index.ts +173 -0
- package/src/models/ui/customer-review-summary-list/index.ts +175 -0
- package/src/models/ui/index.ts +40 -0
- package/src/models/ui/navigation-link/index.ts +23 -0
- package/src/models/ui/product-attribute-detail/index.ts +29 -0
- package/src/models/ui/product-attribute-list/index.ts +52 -0
- package/src/models/ui/product-list/index.ts +998 -0
- package/src/models/ui/raffle-list/index.ts +178 -0
- package/src/models/ui/validator/form/account-info.ts +167 -0
- package/src/models/ui/validator/form/address.ts +490 -0
- package/src/models/ui/validator/form/contact-form.ts +177 -0
- package/src/models/ui/validator/form/customer-review.ts +132 -0
- package/src/models/ui/validator/form/forgot-password.ts +96 -0
- package/src/models/ui/validator/form/login.ts +128 -0
- package/src/models/ui/validator/form/raffle-form.ts +276 -0
- package/src/models/ui/validator/form/recover-password.ts +148 -0
- package/src/models/ui/validator/form/register.ts +206 -0
- package/src/models/ui/validator/index.ts +121 -0
- package/src/models/ui/validator/rules/index.ts +310 -0
- package/src/page-data-init/index.ts +904 -0
- package/src/pages/404.tsx +10 -0
- package/src/pages/[slug]/index.tsx +9 -0
- package/src/pages/account/addresses.tsx +10 -0
- package/src/pages/account/favorite-products.tsx +9 -0
- package/src/pages/account/forgot-password.tsx +9 -0
- package/src/pages/account/index.tsx +9 -0
- package/src/pages/account/login.tsx +9 -0
- package/src/pages/account/orders/[id].tsx +9 -0
- package/src/pages/account/orders/index.tsx +9 -0
- package/src/pages/account/raffles.tsx +9 -0
- package/src/pages/account/recover-password.tsx +9 -0
- package/src/pages/account/register.tsx +9 -0
- package/src/pages/blog/[slug].tsx +9 -0
- package/src/pages/blog/index.tsx +9 -0
- package/src/pages/cart.tsx +9 -0
- package/src/pages/checkout.tsx +163 -0
- package/src/pages/editor.tsx +30 -0
- package/src/pages/home.tsx +10 -0
- package/src/pages/index.ts +22 -0
- package/src/pages/pages/[slug].tsx +9 -0
- package/src/pages/raffle/[slug].tsx +9 -0
- package/src/pages/raffle/index.tsx +9 -0
- package/src/pages/search.tsx +9 -0
- package/src/store/base.ts +238 -0
- package/src/store/blog/index.ts +49 -0
- package/src/store/brand/index.ts +16 -0
- package/src/store/cart/api.ts +58 -0
- package/src/store/cart/index.ts +311 -0
- package/src/store/category/index.ts +16 -0
- package/src/store/checkout/index.ts +92 -0
- package/src/store/customer/api.ts +273 -0
- package/src/store/customer/index.ts +658 -0
- package/src/store/html-meta-data/index.ts +16 -0
- package/src/store/index.ts +1 -0
- package/src/store/location/index.ts +56 -0
- package/src/store/merchant/index.ts +16 -0
- package/src/store/product/index.ts +113 -0
- package/src/store/raffle/index.ts +58 -0
- package/src/store/storefront/index.ts +18 -0
- package/src/typings/global.d.ts +7 -0
- package/src/utils/constants.ts +2 -0
- package/src/utils/currency.ts +250 -0
- package/src/utils/google-fonts.ts +52 -0
- package/src/utils/helper.ts +77 -0
- package/src/utils/i18n.ts +126 -0
- package/src/utils/index.ts +3 -0
- package/build/_virtual/_commonjsHelpers.js +0 -1
- package/build/_virtual/axios.js +0 -1
- package/build/_virtual/index.js +0 -1
- package/build/_virtual/index2.js +0 -1
- package/build/_virtual/index3.js +0 -1
- package/build/_virtual/react-is.development.js +0 -1
- package/build/_virtual/react-is.production.min.js +0 -1
- package/build/_virtual/react-stripe.umd.js +0 -1
- package/build/analytics/analytics.d.ts +0 -37
- package/build/analytics/analytics.js +0 -1
- package/build/analytics/events.d.ts +0 -37
- package/build/analytics/events.js +0 -1
- package/build/analytics/facebookPixel.d.ts +0 -15
- package/build/analytics/facebookPixel.js +0 -1
- package/build/analytics/googleAnalytics.d.ts +0 -13
- package/build/analytics/googleAnalytics.js +0 -1
- package/build/analytics/googleTagManager.d.ts +0 -203
- package/build/analytics/googleTagManager.js +0 -1
- package/build/analytics/googleUniversal.d.ts +0 -9
- package/build/analytics/googleUniversal.js +0 -1
- package/build/analytics/head/index.d.ts +0 -7
- package/build/analytics/head/index.js +0 -1
- package/build/analytics/ikas.d.ts +0 -134
- package/build/analytics/ikas.js +0 -1
- package/build/analytics/index.d.ts +0 -2
- package/build/analytics/tiktokPixel.d.ts +0 -13
- package/build/analytics/tiktokPixel.js +0 -1
- package/build/components/checkout/components/address-form/index.d.ts +0 -3
- package/build/components/checkout/components/address-form/index.js +0 -1
- package/build/components/checkout/components/address-form/model.d.ts +0 -87
- package/build/components/checkout/components/address-form/model.js +0 -1
- package/build/components/checkout/components/button/index.d.ts +0 -13
- package/build/components/checkout/components/button/index.js +0 -1
- package/build/components/checkout/components/button/style.module.scss.js +0 -1
- package/build/components/checkout/components/cart-summary/cart-item/index.d.ts +0 -10
- package/build/components/checkout/components/cart-summary/cart-item/index.js +0 -1
- package/build/components/checkout/components/cart-summary/cart-item/style.module.scss.js +0 -1
- package/build/components/checkout/components/cart-summary/index.d.ts +0 -8
- package/build/components/checkout/components/cart-summary/index.js +0 -1
- package/build/components/checkout/components/cart-summary/style.module.scss.js +0 -1
- package/build/components/checkout/components/checkbox/check.d.ts +0 -6
- package/build/components/checkout/components/checkbox/check.js +0 -1
- package/build/components/checkout/components/checkbox/index.d.ts +0 -10
- package/build/components/checkout/components/checkbox/index.js +0 -1
- package/build/components/checkout/components/checkbox/style.module.scss.js +0 -1
- package/build/components/checkout/components/credit-card-form/index.d.ts +0 -7
- package/build/components/checkout/components/credit-card-form/index.js +0 -1
- package/build/components/checkout/components/credit-card-form/model.d.ts +0 -26
- package/build/components/checkout/components/credit-card-form/model.js +0 -1
- package/build/components/checkout/components/credit-card-form/style.module.scss.js +0 -1
- package/build/components/checkout/components/credit-card-form/svg/amex.d.ts +0 -6
- package/build/components/checkout/components/credit-card-form/svg/amex.js +0 -1
- package/build/components/checkout/components/credit-card-form/svg/master-card.d.ts +0 -6
- package/build/components/checkout/components/credit-card-form/svg/master-card.js +0 -1
- package/build/components/checkout/components/credit-card-form/svg/troy.d.ts +0 -6
- package/build/components/checkout/components/credit-card-form/svg/troy.js +0 -1
- package/build/components/checkout/components/credit-card-form/svg/visa.d.ts +0 -6
- package/build/components/checkout/components/credit-card-form/svg/visa.js +0 -1
- package/build/components/checkout/components/customer-addresses/index.d.ts +0 -19
- package/build/components/checkout/components/customer-addresses/index.js +0 -1
- package/build/components/checkout/components/customer-addresses/model.d.ts +0 -21
- package/build/components/checkout/components/customer-addresses/model.js +0 -1
- package/build/components/checkout/components/customer-addresses/style.module.scss.js +0 -1
- package/build/components/checkout/components/delivery-methods/icon-button/index.d.ts +0 -10
- package/build/components/checkout/components/delivery-methods/icon-button/index.js +0 -1
- package/build/components/checkout/components/delivery-methods/icon-button/style.module.scss.js +0 -1
- package/build/components/checkout/components/delivery-methods/icons/box.d.ts +0 -6
- package/build/components/checkout/components/delivery-methods/icons/box.js +0 -1
- package/build/components/checkout/components/delivery-methods/icons/store.d.ts +0 -6
- package/build/components/checkout/components/delivery-methods/icons/store.js +0 -1
- package/build/components/checkout/components/delivery-methods/index.d.ts +0 -7
- package/build/components/checkout/components/delivery-methods/index.js +0 -1
- package/build/components/checkout/components/delivery-methods/style.module.scss.js +0 -1
- package/build/components/checkout/components/error/customer-login-required-error/index.d.ts +0 -8
- package/build/components/checkout/components/error/customer-login-required-error/index.js +0 -1
- package/build/components/checkout/components/error/index.d.ts +0 -7
- package/build/components/checkout/components/error/index.js +0 -1
- package/build/components/checkout/components/error/no-shipping-error/index.d.ts +0 -3
- package/build/components/checkout/components/error/no-shipping-error/index.js +0 -1
- package/build/components/checkout/components/error/payment-error/index.d.ts +0 -8
- package/build/components/checkout/components/error/payment-error/index.js +0 -1
- package/build/components/checkout/components/error/stock-error/index.d.ts +0 -8
- package/build/components/checkout/components/error/stock-error/index.js +0 -1
- package/build/components/checkout/components/error/stock-error/style.module.scss.js +0 -1
- package/build/components/checkout/components/error/unknown-error/index.d.ts +0 -8
- package/build/components/checkout/components/error/unknown-error/index.js +0 -1
- package/build/components/checkout/components/expandable-section/index.d.ts +0 -6
- package/build/components/checkout/components/expandable-section/index.js +0 -1
- package/build/components/checkout/components/expandable-section/style.module.scss.js +0 -1
- package/build/components/checkout/components/form-item/caret-down.d.ts +0 -6
- package/build/components/checkout/components/form-item/caret-down.js +0 -1
- package/build/components/checkout/components/form-item/index.d.ts +0 -3
- package/build/components/checkout/components/form-item/index.js +0 -1
- package/build/components/checkout/components/form-item/model.d.ts +0 -61
- package/build/components/checkout/components/form-item/model.js +0 -1
- package/build/components/checkout/components/form-item/style.module.scss.js +0 -1
- package/build/components/checkout/components/fullscreen-loading/index.d.ts +0 -2
- package/build/components/checkout/components/fullscreen-loading/index.js +0 -1
- package/build/components/checkout/components/fullscreen-loading/style.module.scss.js +0 -1
- package/build/components/checkout/components/input-with-button/index.d.ts +0 -11
- package/build/components/checkout/components/input-with-button/index.js +0 -1
- package/build/components/checkout/components/input-with-button/style.module.scss.js +0 -1
- package/build/components/checkout/components/klarna/index.d.ts +0 -7
- package/build/components/checkout/components/klarna/index.js +0 -1
- package/build/components/checkout/components/master-pass/credit-card-form/index.d.ts +0 -8
- package/build/components/checkout/components/master-pass/credit-card-form/index.js +0 -1
- package/build/components/checkout/components/master-pass/credit-card-form/style.module.scss.js +0 -1
- package/build/components/checkout/components/master-pass/modal/index.d.ts +0 -11
- package/build/components/checkout/components/master-pass/modal/index.js +0 -1
- package/build/components/checkout/components/master-pass/modal/style.module.scss.js +0 -1
- package/build/components/checkout/components/master-pass/modal/svg/modal-close.d.ts +0 -2
- package/build/components/checkout/components/master-pass/modal/svg/modal-close.js +0 -1
- package/build/components/checkout/components/master-pass/modal-link-card-to-client/index.d.ts +0 -10
- package/build/components/checkout/components/master-pass/modal-link-card-to-client/index.js +0 -1
- package/build/components/checkout/components/master-pass/modal-link-card-to-client/style.module.scss.js +0 -1
- package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/info-mark.d.ts +0 -2
- package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/info-mark.js +0 -1
- package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/master-pass-by-master-card-big.d.ts +0 -2
- package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/master-pass-by-master-card-big.js +0 -1
- package/build/components/checkout/components/master-pass/modal-otp/index.d.ts +0 -10
- package/build/components/checkout/components/master-pass/modal-otp/index.js +0 -1
- package/build/components/checkout/components/master-pass/modal-otp/style.module.scss.js +0 -1
- package/build/components/checkout/components/master-pass/modal-otp/svg/master-pass.d.ts +0 -2
- package/build/components/checkout/components/master-pass/modal-otp/svg/master-pass.js +0 -1
- package/build/components/checkout/components/master-pass/modal-response/index.d.ts +0 -9
- package/build/components/checkout/components/master-pass/modal-response/index.js +0 -1
- package/build/components/checkout/components/master-pass/modal-response/style.module.scss.js +0 -1
- package/build/components/checkout/components/master-pass/modal-success/index.d.ts +0 -10
- package/build/components/checkout/components/master-pass/modal-success/index.js +0 -1
- package/build/components/checkout/components/master-pass/modal-success/style.module.scss.js +0 -1
- package/build/components/checkout/components/master-pass/modal-success/svg/master-pass-by-master-card-small.d.ts +0 -2
- package/build/components/checkout/components/master-pass/modal-success/svg/master-pass-by-master-card-small.js +0 -1
- package/build/components/checkout/components/master-pass/modal-success/svg/success.d.ts +0 -2
- package/build/components/checkout/components/master-pass/modal-success/svg/success.js +0 -1
- package/build/components/checkout/components/master-pass/payment-gateway/svg/master-card.d.ts +0 -2
- package/build/components/checkout/components/master-pass/payment-gateway/svg/master-card.js +0 -1
- package/build/components/checkout/components/master-pass/svg/master-pass-by-master-card.d.ts +0 -3
- package/build/components/checkout/components/master-pass/svg/master-pass-by-master-card.js +0 -1
- package/build/components/checkout/components/modal/index.d.ts +0 -8
- package/build/components/checkout/components/modal/index.js +0 -1
- package/build/components/checkout/components/modal/style.module.scss.js +0 -1
- package/build/components/checkout/components/modal/useEscape.d.ts +0 -5
- package/build/components/checkout/components/modal/useEscape.js +0 -1
- package/build/components/checkout/components/notification-box/index.d.ts +0 -9
- package/build/components/checkout/components/notification-box/index.js +0 -1
- package/build/components/checkout/components/notification-box/style.module.scss.js +0 -1
- package/build/components/checkout/components/offer-product/index.d.ts +0 -8
- package/build/components/checkout/components/offer-product/index.js +0 -1
- package/build/components/checkout/components/offer-product/select/arrows.d.ts +0 -6
- package/build/components/checkout/components/offer-product/select/arrows.js +0 -1
- package/build/components/checkout/components/offer-product/select/index.d.ts +0 -11
- package/build/components/checkout/components/offer-product/select/index.js +0 -1
- package/build/components/checkout/components/offer-product/select/style.module.scss.js +0 -1
- package/build/components/checkout/components/offer-product/style.module.scss.js +0 -1
- package/build/components/checkout/components/phone-number-input/compare-strings.d.ts +0 -2
- package/build/components/checkout/components/phone-number-input/compare-strings.js +0 -1
- package/build/components/checkout/components/phone-number-input/get-countries.d.ts +0 -7
- package/build/components/checkout/components/phone-number-input/get-countries.js +0 -1
- package/build/components/checkout/components/phone-number-input/index.d.ts +0 -10
- package/build/components/checkout/components/phone-number-input/index.js +0 -1
- package/build/components/checkout/components/phone-number-input/style.module.scss.js +0 -1
- package/build/components/checkout/components/select-box/index.d.ts +0 -13
- package/build/components/checkout/components/select-box/index.js +0 -1
- package/build/components/checkout/components/select-box/style.module.scss.js +0 -1
- package/build/components/checkout/components/step-container/index.d.ts +0 -15
- package/build/components/checkout/components/step-container/index.js +0 -1
- package/build/components/checkout/components/step-container/style.module.scss.js +0 -1
- package/build/components/checkout/components/stripe/checkout-form.d.ts +0 -8
- package/build/components/checkout/components/stripe/checkout-form.js +0 -1
- package/build/components/checkout/components/stripe/index.d.ts +0 -9
- package/build/components/checkout/components/stripe/index.js +0 -1
- package/build/components/checkout/components/stripe/style.module.scss.js +0 -1
- package/build/components/checkout/components/svg/arrow-down.d.ts +0 -6
- package/build/components/checkout/components/svg/arrow-down.js +0 -1
- package/build/components/checkout/components/svg/arrow-left.d.ts +0 -6
- package/build/components/checkout/components/svg/arrow-right.d.ts +0 -6
- package/build/components/checkout/components/svg/cross.d.ts +0 -6
- package/build/components/checkout/components/svg/cross.js +0 -1
- package/build/components/checkout/components/svg/discount.d.ts +0 -6
- package/build/components/checkout/components/svg/external.d.ts +0 -6
- package/build/components/checkout/components/svg/external.js +0 -1
- package/build/components/checkout/components/svg/gift.d.ts +0 -7
- package/build/components/checkout/components/svg/gift.js +0 -1
- package/build/components/checkout/components/svg/ikas.d.ts +0 -6
- package/build/components/checkout/components/svg/ikas.js +0 -1
- package/build/components/checkout/components/svg/lock.d.ts +0 -6
- package/build/components/checkout/components/svg/lock.js +0 -1
- package/build/components/checkout/components/svg/shopping-cart.d.ts +0 -6
- package/build/components/checkout/components/svg/success-circle.d.ts +0 -6
- package/build/components/checkout/components/svg/success-circle.js +0 -1
- package/build/components/checkout/components/svg/tag.d.ts +0 -6
- package/build/components/checkout/components/svg/warning.d.ts +0 -6
- package/build/components/checkout/components/svg/warning.js +0 -1
- package/build/components/checkout/components/toggle/index.d.ts +0 -10
- package/build/components/checkout/components/toggle/index.js +0 -1
- package/build/components/checkout/components/toggle/style.module.scss.js +0 -1
- package/build/components/checkout/components/tooltip/index.d.ts +0 -8
- package/build/components/checkout/components/tooltip/index.js +0 -1
- package/build/components/checkout/components/tooltip/style.module.scss.js +0 -1
- package/build/components/checkout/index.d.ts +0 -34
- package/build/components/checkout/index.js +0 -1
- package/build/components/checkout/model.d.ts +0 -173
- package/build/components/checkout/model.js +0 -1
- package/build/components/checkout/modelMasterPass.d.ts +0 -201
- package/build/components/checkout/modelMasterPass.js +0 -1
- package/build/components/checkout/steps/step-info/index.d.ts +0 -7
- package/build/components/checkout/steps/step-info/index.js +0 -1
- package/build/components/checkout/steps/step-payment/billing-address/index.d.ts +0 -7
- package/build/components/checkout/steps/step-payment/billing-address/index.js +0 -1
- package/build/components/checkout/steps/step-payment/index.d.ts +0 -7
- package/build/components/checkout/steps/step-payment/index.js +0 -1
- package/build/components/checkout/steps/step-payment/payment-gateways/index.d.ts +0 -7
- package/build/components/checkout/steps/step-payment/payment-gateways/index.js +0 -1
- package/build/components/checkout/steps/step-payment/payment-gateways/installments/index.d.ts +0 -7
- package/build/components/checkout/steps/step-payment/payment-gateways/installments/index.js +0 -1
- package/build/components/checkout/steps/step-payment/payment-gateways/installments/style.module.scss.js +0 -1
- package/build/components/checkout/steps/step-payment/payment-gateways/style.module.scss.js +0 -1
- package/build/components/checkout/steps/step-payment/style.module.scss.js +0 -1
- package/build/components/checkout/steps/step-shipping/index.d.ts +0 -7
- package/build/components/checkout/steps/step-shipping/index.js +0 -1
- package/build/components/checkout/steps/step-shipping/style.module.scss.js +0 -1
- package/build/components/checkout/steps/step-success/index.d.ts +0 -7
- package/build/components/checkout/steps/step-success/index.js +0 -1
- package/build/components/checkout/steps/step-success/style.module.scss.js +0 -1
- package/build/components/checkout/style.module.scss.js +0 -1
- package/build/components/checkout/styles/common.module.scss.js +0 -1
- package/build/components/google-captcha/index.d.ts +0 -9
- package/build/components/google-captcha/index.js +0 -1
- package/build/components/image/index.d.ts +0 -10
- package/build/components/image/index.js +0 -1
- package/build/components/index.d.ts +0 -6
- package/build/components/link/index.d.ts +0 -16
- package/build/components/link/index.js +0 -1
- package/build/components/page/ThemeComponent.d.ts +0 -21
- package/build/components/page/ThemeComponent.js +0 -1
- package/build/components/page/head.d.ts +0 -15
- package/build/components/page/head.js +0 -1
- package/build/components/page/index.d.ts +0 -23
- package/build/components/page/index.js +0 -1
- package/build/components/page-editor/ThemeComponentEditor.d.ts +0 -32
- package/build/components/page-editor/ThemeComponentEditor.js +0 -1
- package/build/components/page-editor/error/index.d.ts +0 -4
- package/build/components/page-editor/error/index.js +0 -1
- package/build/components/page-editor/index.d.ts +0 -4
- package/build/components/page-editor/index.js +0 -1
- package/build/components/page-editor/loader/index.d.ts +0 -6
- package/build/components/page-editor/loader/index.js +0 -1
- package/build/components/page-editor/loader/style.module.scss.js +0 -1
- package/build/components/page-editor/model.d.ts +0 -75
- package/build/components/page-editor/model.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/_virtual/_commonjsHelpers.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/_virtual/axios-error-format.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/_virtual/core.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/_virtual/index.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/axios-error-format.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/core.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/index.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/index.mjs.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_Hash.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_ListCache.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_Map.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_MapCache.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_Symbol.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_assocIndexOf.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseGetTag.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseIsNative.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseToString.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_coreJsData.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_defineProperty.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_freeGlobal.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getMapData.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getNative.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getRawTag.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getValue.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashClear.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashDelete.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashGet.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashHas.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashSet.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_isKeyable.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_isMasked.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheClear.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheDelete.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheGet.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheHas.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheSet.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheClear.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheDelete.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheGet.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheHas.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheSet.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_memoizeCapped.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_nativeCreate.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_objectToString.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_root.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_stringToPath.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/_toSource.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/eq.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/isFunction.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/isObject.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/ext/lodash/memoize.js +0 -1
- package/build/ext/@ikas/fe-api-client/build/utils/api.js +0 -1
- package/build/ext/@stripe/react-stripe-js/dist/react-stripe.umd.js +0 -1
- package/build/ext/@stripe/stripe-js/dist/stripe.esm.js +0 -1
- package/build/ext/axios/index.js +0 -1
- package/build/ext/axios/lib/adapters/xhr.js +0 -1
- package/build/ext/axios/lib/axios.js +0 -1
- package/build/ext/axios/lib/cancel/Cancel.js +0 -1
- package/build/ext/axios/lib/cancel/CancelToken.js +0 -1
- package/build/ext/axios/lib/cancel/isCancel.js +0 -1
- package/build/ext/axios/lib/core/Axios.js +0 -1
- package/build/ext/axios/lib/core/InterceptorManager.js +0 -1
- package/build/ext/axios/lib/core/buildFullPath.js +0 -1
- package/build/ext/axios/lib/core/createError.js +0 -1
- package/build/ext/axios/lib/core/dispatchRequest.js +0 -1
- package/build/ext/axios/lib/core/enhanceError.js +0 -1
- package/build/ext/axios/lib/core/mergeConfig.js +0 -1
- package/build/ext/axios/lib/core/settle.js +0 -1
- package/build/ext/axios/lib/core/transformData.js +0 -1
- package/build/ext/axios/lib/defaults/index.js +0 -1
- package/build/ext/axios/lib/defaults/transitional.js +0 -1
- package/build/ext/axios/lib/env/data.js +0 -1
- package/build/ext/axios/lib/helpers/bind.js +0 -1
- package/build/ext/axios/lib/helpers/buildURL.js +0 -1
- package/build/ext/axios/lib/helpers/combineURLs.js +0 -1
- package/build/ext/axios/lib/helpers/cookies.js +0 -1
- package/build/ext/axios/lib/helpers/isAbsoluteURL.js +0 -1
- package/build/ext/axios/lib/helpers/isAxiosError.js +0 -1
- package/build/ext/axios/lib/helpers/isURLSameOrigin.js +0 -1
- package/build/ext/axios/lib/helpers/normalizeHeaderName.js +0 -1
- package/build/ext/axios/lib/helpers/parseHeaders.js +0 -1
- package/build/ext/axios/lib/helpers/spread.js +0 -1
- package/build/ext/axios/lib/helpers/validator.js +0 -1
- package/build/ext/axios/lib/utils.js +0 -1
- package/build/ext/libphonenumber-js/es6/AsYouType.js +0 -1
- package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.PatternMatcher.js +0 -1
- package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.complete.js +0 -1
- package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.js +0 -1
- package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.util.js +0 -1
- package/build/ext/libphonenumber-js/es6/AsYouTypeParser.js +0 -1
- package/build/ext/libphonenumber-js/es6/AsYouTypeState.js +0 -1
- package/build/ext/libphonenumber-js/es6/ParseError.js +0 -1
- package/build/ext/libphonenumber-js/es6/PhoneNumber.js +0 -1
- package/build/ext/libphonenumber-js/es6/PhoneNumberMatcher.js +0 -1
- package/build/ext/libphonenumber-js/es6/constants.js +0 -1
- package/build/ext/libphonenumber-js/es6/findNumbers/LRUCache.js +0 -1
- package/build/ext/libphonenumber-js/es6/findNumbers/Leniency.js +0 -1
- package/build/ext/libphonenumber-js/es6/findNumbers/RegExpCache.js +0 -1
- package/build/ext/libphonenumber-js/es6/findNumbers/isValidCandidate.js +0 -1
- package/build/ext/libphonenumber-js/es6/findNumbers/isValidPreCandidate.js +0 -1
- package/build/ext/libphonenumber-js/es6/findNumbers/parsePreCandidate.js +0 -1
- package/build/ext/libphonenumber-js/es6/findNumbers/utf-8.js +0 -1
- package/build/ext/libphonenumber-js/es6/findNumbers/util.js +0 -1
- package/build/ext/libphonenumber-js/es6/findPhoneNumbers_.js +0 -1
- package/build/ext/libphonenumber-js/es6/formatIncompletePhoneNumber.js +0 -1
- package/build/ext/libphonenumber-js/es6/format_.js +0 -1
- package/build/ext/libphonenumber-js/es6/getCountries.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/RFC3966.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/applyInternationalSeparatorStyle.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/checkNumberLength.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/extension/createExtensionPattern.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/extension/extractExtension.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/extractCountryCallingCode.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/extractCountryCallingCodeFromInternationalNumberWithoutPlusSign.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/extractNationalNumber.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/extractNationalNumberFromPossiblyIncompleteNumber.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/formatNationalNumberUsingFormat.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/getCountryByCallingCode.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/getIddPrefix.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/getNumberType.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/isViablePhoneNumber.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/matchesEntirely.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/mergeArrays.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/parseDigits.js +0 -1
- package/build/ext/libphonenumber-js/es6/helpers/stripIddPrefix.js +0 -1
- package/build/ext/libphonenumber-js/es6/isPossibleNumber_.js +0 -1
- package/build/ext/libphonenumber-js/es6/metadata.js +0 -1
- package/build/ext/libphonenumber-js/es6/parseIncompletePhoneNumber.js +0 -1
- package/build/ext/libphonenumber-js/es6/parsePhoneNumber.js +0 -1
- package/build/ext/libphonenumber-js/es6/parsePhoneNumberFromString.js +0 -1
- package/build/ext/libphonenumber-js/es6/parsePhoneNumberFromString_.js +0 -1
- package/build/ext/libphonenumber-js/es6/parsePhoneNumber_.js +0 -1
- package/build/ext/libphonenumber-js/es6/parse_.js +0 -1
- package/build/ext/libphonenumber-js/es6/tools/semver-compare.js +0 -1
- package/build/ext/libphonenumber-js/es6/validate_.js +0 -1
- package/build/ext/libphonenumber-js/index.es6.exports/PhoneNumberSearch.js +0 -1
- package/build/ext/libphonenumber-js/metadata.min.json.js +0 -1
- package/build/ext/libphonenumber-js/min/exports/AsYouType.js +0 -1
- package/build/ext/libphonenumber-js/min/exports/Metadata.js +0 -1
- package/build/ext/libphonenumber-js/min/exports/PhoneNumberMatcher.js +0 -1
- package/build/ext/libphonenumber-js/min/exports/formatIncompletePhoneNumber.js +0 -1
- package/build/ext/libphonenumber-js/min/exports/getCountries.js +0 -1
- package/build/ext/libphonenumber-js/min/exports/getCountryCallingCode.js +0 -1
- package/build/ext/libphonenumber-js/min/exports/parsePhoneNumberFromString.js +0 -1
- package/build/ext/libphonenumber-js/min/exports/withMetadataArgument.js +0 -1
- package/build/ext/object-assign/index.js +0 -6
- package/build/ext/prop-types/checkPropTypes.js +0 -1
- package/build/ext/prop-types/factoryWithThrowingShims.js +0 -1
- package/build/ext/prop-types/factoryWithTypeCheckers.js +0 -1
- package/build/ext/prop-types/index.js +0 -1
- package/build/ext/prop-types/lib/ReactPropTypesSecret.js +0 -1
- package/build/ext/prop-types/lib/has.js +0 -1
- package/build/ext/react-is/cjs/react-is.development.js +0 -9
- package/build/ext/react-is/cjs/react-is.production.min.js +0 -9
- package/build/ext/react-is/index.js +0 -1
- package/build/ext/react-tooltip/dist/index.es.js +0 -1
- package/build/ext/style-inject/dist/style-inject.es.js +0 -1
- package/build/ext/tslib/tslib.es6.js +0 -1
- package/build/ext/uuid/dist/esm-browser/bytesToUuid.js +0 -1
- package/build/ext/uuid/dist/esm-browser/md5.js +0 -1
- package/build/ext/uuid/dist/esm-browser/rng.js +0 -1
- package/build/ext/uuid/dist/esm-browser/sha1.js +0 -1
- package/build/ext/uuid/dist/esm-browser/v3.js +0 -1
- package/build/ext/uuid/dist/esm-browser/v35.js +0 -1
- package/build/ext/uuid/dist/esm-browser/v4.js +0 -1
- package/build/ext/uuid/dist/esm-browser/v5.js +0 -1
- package/build/index.d.ts +0 -6
- package/build/index.js +0 -1
- package/build/models/data/base/index.d.ts +0 -8
- package/build/models/data/base/index.js +0 -1
- package/build/models/data/blog/category/index.d.ts +0 -12
- package/build/models/data/blog/category/index.js +0 -1
- package/build/models/data/blog/content/index.d.ts +0 -6
- package/build/models/data/blog/content/index.js +0 -1
- package/build/models/data/blog/index.d.ts +0 -27
- package/build/models/data/blog/index.js +0 -1
- package/build/models/data/blog/meta-data/index.d.ts +0 -16
- package/build/models/data/blog/meta-data/index.js +0 -1
- package/build/models/data/blog/tag/index.d.ts +0 -6
- package/build/models/data/blog/tag/index.js +0 -1
- package/build/models/data/blog/writer/index.d.ts +0 -6
- package/build/models/data/blog/writer/index.js +0 -1
- package/build/models/data/brand/index.d.ts +0 -26
- package/build/models/data/brand/index.js +0 -1
- package/build/models/data/brand/translation/index.d.ts +0 -7
- package/build/models/data/brand/translation/index.js +0 -1
- package/build/models/data/campaign-offer/index.d.ts +0 -21
- package/build/models/data/campaign-offer/index.js +0 -1
- package/build/models/data/campaign-offer/product/index.d.ts +0 -24
- package/build/models/data/campaign-offer/product/index.js +0 -1
- package/build/models/data/cart/available-shipping-method/index.d.ts +0 -10
- package/build/models/data/cart/available-shipping-method/index.js +0 -1
- package/build/models/data/cart/campaign-offer/index.d.ts +0 -16
- package/build/models/data/cart/campaign-offer/index.js +0 -1
- package/build/models/data/cart/index.d.ts +0 -13
- package/build/models/data/cart/index.js +0 -1
- package/build/models/data/category/index.d.ts +0 -22
- package/build/models/data/category/index.js +0 -1
- package/build/models/data/category/path-item/index.d.ts +0 -14
- package/build/models/data/category/path-item/index.js +0 -1
- package/build/models/data/category/translations/index.d.ts +0 -7
- package/build/models/data/category/translations/index.js +0 -1
- package/build/models/data/checkout/index.d.ts +0 -22
- package/build/models/data/checkout/index.js +0 -1
- package/build/models/data/checkout-settings/index.d.ts +0 -20
- package/build/models/data/checkout-settings/index.js +0 -1
- package/build/models/data/checkout-settings/option/index.d.ts +0 -6
- package/build/models/data/checkout-settings/option/index.js +0 -1
- package/build/models/data/checkout-settings/price/index.d.ts +0 -7
- package/build/models/data/checkout-settings/price/index.js +0 -1
- package/build/models/data/city/index.d.ts +0 -12
- package/build/models/data/city/index.js +0 -1
- package/build/models/data/contact-form/index.d.ts +0 -9
- package/build/models/data/contact-form/index.js +0 -1
- package/build/models/data/country/index.d.ts +0 -18
- package/build/models/data/country/index.js +0 -1
- package/build/models/data/country/location-translations/index.d.ts +0 -7
- package/build/models/data/customer/address/city/index.d.ts +0 -7
- package/build/models/data/customer/address/city/index.js +0 -1
- package/build/models/data/customer/address/country/index.d.ts +0 -9
- package/build/models/data/customer/address/country/index.js +0 -1
- package/build/models/data/customer/address/district/index.d.ts +0 -7
- package/build/models/data/customer/address/district/index.js +0 -1
- package/build/models/data/customer/address/index.d.ts +0 -40
- package/build/models/data/customer/address/index.js +0 -1
- package/build/models/data/customer/address/state/index.d.ts +0 -7
- package/build/models/data/customer/address/state/index.js +0 -1
- package/build/models/data/customer/attribute/index.d.ts +0 -17
- package/build/models/data/customer/attribute/index.js +0 -1
- package/build/models/data/customer/attribute/option/index.d.ts +0 -9
- package/build/models/data/customer/attribute/option/index.js +0 -1
- package/build/models/data/customer/attribute/sales-channel/index.d.ts +0 -8
- package/build/models/data/customer/attribute/sales-channel/index.js +0 -1
- package/build/models/data/customer/attribute/translation/index.d.ts +0 -9
- package/build/models/data/customer/attribute/translation/index.js +0 -1
- package/build/models/data/customer/attribute/translation/option/index.d.ts +0 -6
- package/build/models/data/customer/attribute/translation/option/index.js +0 -1
- package/build/models/data/customer/attribute/value/index.d.ts +0 -11
- package/build/models/data/customer/attribute/value/index.js +0 -1
- package/build/models/data/customer/index.d.ts +0 -38
- package/build/models/data/customer/index.js +0 -1
- package/build/models/data/customer/review/index.d.ts +0 -22
- package/build/models/data/customer/review/index.js +0 -1
- package/build/models/data/customer/review/settings/index.d.ts +0 -6
- package/build/models/data/customer/review/settings/index.js +0 -1
- package/build/models/data/customer/review/summary/index.d.ts +0 -10
- package/build/models/data/customer/review/summary/index.js +0 -1
- package/build/models/data/customer/review/summary/star/index.d.ts +0 -6
- package/build/models/data/customer/review/summary/star/index.js +0 -1
- package/build/models/data/district/index.d.ts +0 -12
- package/build/models/data/district/index.js +0 -1
- package/build/models/data/favorite-product/index.d.ts +0 -7
- package/build/models/data/favorite-product/index.js +0 -1
- package/build/models/data/filter-category/index.d.ts +0 -12
- package/build/models/data/filter-category/index.js +0 -1
- package/build/models/data/html-meta-data/index.d.ts +0 -28
- package/build/models/data/html-meta-data/index.js +0 -1
- package/build/models/data/html-meta-data/translations/index.d.ts +0 -7
- package/build/models/data/html-meta-data/translations/index.js +0 -1
- package/build/models/data/image/index.d.ts +0 -9
- package/build/models/data/image/index.js +0 -1
- package/build/models/data/index.d.ts +0 -136
- package/build/models/data/last-viewed-product/index.d.ts +0 -6
- package/build/models/data/last-viewed-product/index.js +0 -1
- package/build/models/data/merchant-settings/index.d.ts +0 -12
- package/build/models/data/merchant-settings/index.js +0 -1
- package/build/models/data/order/address/city/index.d.ts +0 -7
- package/build/models/data/order/address/city/index.js +0 -1
- package/build/models/data/order/address/country/index.d.ts +0 -9
- package/build/models/data/order/address/country/index.js +0 -1
- package/build/models/data/order/address/district/index.d.ts +0 -7
- package/build/models/data/order/address/district/index.js +0 -1
- package/build/models/data/order/address/index.d.ts +0 -37
- package/build/models/data/order/address/index.js +0 -1
- package/build/models/data/order/address/state/index.d.ts +0 -7
- package/build/models/data/order/address/state/index.js +0 -1
- package/build/models/data/order/adjustment/applied-order-line/index.d.ts +0 -8
- package/build/models/data/order/adjustment/applied-order-line/index.js +0 -1
- package/build/models/data/order/adjustment/index.d.ts +0 -15
- package/build/models/data/order/adjustment/index.js +0 -1
- package/build/models/data/order/customer/index.d.ts +0 -11
- package/build/models/data/order/customer/index.js +0 -1
- package/build/models/data/order/gift-line/index.d.ts +0 -6
- package/build/models/data/order/gift-line/index.js +0 -1
- package/build/models/data/order/index.d.ts +0 -68
- package/build/models/data/order/index.js +0 -1
- package/build/models/data/order/invoice/index.d.ts +0 -12
- package/build/models/data/order/invoice/index.js +0 -1
- package/build/models/data/order/line-item/base-unit/index.d.ts +0 -9
- package/build/models/data/order/line-item/base-unit/index.js +0 -1
- package/build/models/data/order/line-item/base-unit/unit-type/index.d.ts +0 -6
- package/build/models/data/order/line-item/base-unit/unit-type/index.js +0 -1
- package/build/models/data/order/line-item/discount/index.d.ts +0 -11
- package/build/models/data/order/line-item/discount/index.js +0 -1
- package/build/models/data/order/line-item/index.d.ts +0 -45
- package/build/models/data/order/line-item/index.js +0 -1
- package/build/models/data/order/line-item/option/index.d.ts +0 -10
- package/build/models/data/order/line-item/option/index.js +0 -1
- package/build/models/data/order/line-item/option/value/index.d.ts +0 -7
- package/build/models/data/order/line-item/option/value/index.js +0 -1
- package/build/models/data/order/line-item/variant/brand/index.d.ts +0 -6
- package/build/models/data/order/line-item/variant/brand/index.js +0 -1
- package/build/models/data/order/line-item/variant/category/index.d.ts +0 -12
- package/build/models/data/order/line-item/variant/category/index.js +0 -1
- package/build/models/data/order/line-item/variant/index.d.ts +0 -30
- package/build/models/data/order/line-item/variant/index.js +0 -1
- package/build/models/data/order/line-item/variant/price/index.d.ts +0 -10
- package/build/models/data/order/line-item/variant/price/index.js +0 -1
- package/build/models/data/order/line-item/variant/unit/index.d.ts +0 -6
- package/build/models/data/order/line-item/variant/unit/index.js +0 -1
- package/build/models/data/order/line-item/variant/value/index.d.ts +0 -11
- package/build/models/data/order/line-item/variant/value/index.js +0 -1
- package/build/models/data/order/package/index.d.ts +0 -14
- package/build/models/data/order/package/index.js +0 -1
- package/build/models/data/order/package/tracking-info/index.d.ts +0 -9
- package/build/models/data/order/package/tracking-info/index.js +0 -1
- package/build/models/data/order/payment-method/index.d.ts +0 -9
- package/build/models/data/order/payment-method/index.js +0 -1
- package/build/models/data/order/refund/index.d.ts +0 -7
- package/build/models/data/order/refund/index.js +0 -1
- package/build/models/data/order/refund/line-item/index.d.ts +0 -6
- package/build/models/data/order/refund/line-item/index.js +0 -1
- package/build/models/data/order/refund/settings/index.d.ts +0 -7
- package/build/models/data/order/refund/settings/index.js +0 -1
- package/build/models/data/order/shipping-line/index.d.ts +0 -12
- package/build/models/data/order/shipping-line/index.js +0 -1
- package/build/models/data/order/tax-line/index.d.ts +0 -6
- package/build/models/data/order/tax-line/index.js +0 -1
- package/build/models/data/order/transaction/error/index.d.ts +0 -7
- package/build/models/data/order/transaction/error/index.js +0 -1
- package/build/models/data/order/transaction/index.d.ts +0 -25
- package/build/models/data/order/transaction/index.js +0 -1
- package/build/models/data/order/transaction/payment-method-detail/index.d.ts +0 -13
- package/build/models/data/order/transaction/payment-method-detail/index.js +0 -1
- package/build/models/data/order/transaction/payment-method-detail/installment-price/index.d.ts +0 -9
- package/build/models/data/order/transaction/payment-method-detail/installment-price/index.js +0 -1
- package/build/models/data/payment-gateway/additional-price/index.d.ts +0 -9
- package/build/models/data/payment-gateway/additional-price/index.js +0 -1
- package/build/models/data/payment-gateway/index.d.ts +0 -31
- package/build/models/data/payment-gateway/index.js +0 -1
- package/build/models/data/payment-gateway/settings/index.d.ts +0 -10
- package/build/models/data/payment-gateway/settings/index.js +0 -1
- package/build/models/data/payment-gateway/translation/index.d.ts +0 -7
- package/build/models/data/payment-gateway/translation/index.js +0 -1
- package/build/models/data/product/attribute/index.d.ts +0 -15
- package/build/models/data/product/attribute/index.js +0 -1
- package/build/models/data/product/attribute/option/index.d.ts +0 -6
- package/build/models/data/product/attribute/option/index.js +0 -1
- package/build/models/data/product/attribute/table-cell/index.d.ts +0 -6
- package/build/models/data/product/attribute/table-cell/index.js +0 -1
- package/build/models/data/product/attribute/table-template/index.d.ts +0 -7
- package/build/models/data/product/attribute/table-template/index.js +0 -1
- package/build/models/data/product/attribute/translation/index.d.ts +0 -13
- package/build/models/data/product/attribute/translation/index.js +0 -1
- package/build/models/data/product/attribute-value/index.d.ts +0 -28
- package/build/models/data/product/attribute-value/index.js +0 -1
- package/build/models/data/product/back-in-stock-settings/index.d.ts +0 -5
- package/build/models/data/product/back-in-stock-settings/index.js +0 -1
- package/build/models/data/product/base-unit/index.d.ts +0 -12
- package/build/models/data/product/base-unit/index.js +0 -1
- package/build/models/data/product/campaign/data/index.d.ts +0 -27
- package/build/models/data/product/campaign/data/index.js +0 -1
- package/build/models/data/product/campaign/filter/index.d.ts +0 -7
- package/build/models/data/product/campaign/filter/index.js +0 -1
- package/build/models/data/product/campaign/index.d.ts +0 -7
- package/build/models/data/product/campaign/index.js +0 -1
- package/build/models/data/product/campaign/product-buyx-then-gety/index.d.ts +0 -20
- package/build/models/data/product/campaign/product-buyx-then-gety/index.js +0 -1
- package/build/models/data/product/campaign/product-campaign-date-range-field/index.d.ts +0 -6
- package/build/models/data/product/campaign/product-campaign-date-range-field/index.js +0 -1
- package/build/models/data/product/campaign/product-fixed-discount/index.d.ts +0 -14
- package/build/models/data/product/campaign/product-fixed-discount/index.js +0 -1
- package/build/models/data/product/filter/index.d.ts +0 -84
- package/build/models/data/product/filter/index.js +0 -1
- package/build/models/data/product/image/index.d.ts +0 -10
- package/build/models/data/product/image/index.js +0 -1
- package/build/models/data/product/index.d.ts +0 -62
- package/build/models/data/product/index.js +0 -1
- package/build/models/data/product/option-set/index.d.ts +0 -29
- package/build/models/data/product/option-set/index.js +0 -1
- package/build/models/data/product/option-set/option/index.d.ts +0 -72
- package/build/models/data/product/option-set/option/index.js +0 -1
- package/build/models/data/product/tag/index.d.ts +0 -6
- package/build/models/data/product/tag/index.js +0 -1
- package/build/models/data/product/variant/index.d.ts +0 -31
- package/build/models/data/product/variant/index.js +0 -1
- package/build/models/data/product/variant/price/index.d.ts +0 -19
- package/build/models/data/product/variant/price/index.js +0 -1
- package/build/models/data/product/variant/unit/index.d.ts +0 -6
- package/build/models/data/product/variant/unit/index.js +0 -1
- package/build/models/data/product/variant-type/index.d.ts +0 -8
- package/build/models/data/product/variant-type/index.js +0 -1
- package/build/models/data/product/variant-type/init.d.ts +0 -2
- package/build/models/data/raffle/index.d.ts +0 -63
- package/build/models/data/raffle/index.js +0 -1
- package/build/models/data/sales-channel/index.d.ts +0 -19
- package/build/models/data/sales-channel/index.js +0 -1
- package/build/models/data/state/index.d.ts +0 -8
- package/build/models/data/state/index.js +0 -1
- package/build/models/data/stock-location/address/city/index.d.ts +0 -7
- package/build/models/data/stock-location/address/city/index.js +0 -1
- package/build/models/data/stock-location/address/country/index.d.ts +0 -7
- package/build/models/data/stock-location/address/country/index.js +0 -1
- package/build/models/data/stock-location/address/district/index.d.ts +0 -7
- package/build/models/data/stock-location/address/district/index.js +0 -1
- package/build/models/data/stock-location/address/index.d.ts +0 -15
- package/build/models/data/stock-location/address/index.js +0 -1
- package/build/models/data/stock-location/address/state/index.d.ts +0 -7
- package/build/models/data/stock-location/address/state/index.js +0 -1
- package/build/models/data/stock-location/available/index.d.ts +0 -10
- package/build/models/data/stock-location/available/index.js +0 -1
- package/build/models/data/stock-location/index.d.ts +0 -14
- package/build/models/data/stock-location/index.js +0 -1
- package/build/models/data/storefront/domain/index.d.ts +0 -9
- package/build/models/data/storefront/domain/index.js +0 -1
- package/build/models/data/storefront/index.d.ts +0 -30
- package/build/models/data/storefront/index.js +0 -1
- package/build/models/data/storefront/localization/index.d.ts +0 -8
- package/build/models/data/storefront/localization/index.js +0 -1
- package/build/models/data/storefront/meta-templates/index.d.ts +0 -8
- package/build/models/data/storefront/meta-templates/index.js +0 -1
- package/build/models/data/storefront/routing/dynamic-currency/index.d.ts +0 -6
- package/build/models/data/storefront/routing/dynamic-currency/index.js +0 -1
- package/build/models/data/storefront/routing/index.d.ts +0 -14
- package/build/models/data/storefront/routing/index.js +0 -1
- package/build/models/data/storefront/theme/index.d.ts +0 -10
- package/build/models/data/storefront/theme/index.js +0 -1
- package/build/models/data/storefront/theme-localization/index.d.ts +0 -15
- package/build/models/data/storefront/theme-localization/index.js +0 -1
- package/build/models/data/theme-json/component/index.d.ts +0 -20
- package/build/models/data/theme-json/component/index.js +0 -1
- package/build/models/data/theme-json/component/prop/index.d.ts +0 -26
- package/build/models/data/theme-json/component/prop/index.js +0 -1
- package/build/models/data/theme-json/custom-data/index.d.ts +0 -43
- package/build/models/data/theme-json/custom-data/index.js +0 -1
- package/build/models/data/theme-json/index.d.ts +0 -16
- package/build/models/data/theme-json/index.js +0 -1
- package/build/models/data/theme-json/page/component/index.d.ts +0 -7
- package/build/models/data/theme-json/page/component/index.js +0 -1
- package/build/models/data/theme-json/page/index.d.ts +0 -21
- package/build/models/data/theme-json/page/index.js +0 -1
- package/build/models/data/theme-json/settings/color/index.d.ts +0 -15
- package/build/models/data/theme-json/settings/color/index.js +0 -1
- package/build/models/data/theme-json/settings/favicon/index.d.ts +0 -5
- package/build/models/data/theme-json/settings/favicon/index.js +0 -1
- package/build/models/data/theme-json/settings/font-family/index.d.ts +0 -6
- package/build/models/data/theme-json/settings/font-family/index.js +0 -1
- package/build/models/data/theme-json/settings/index.d.ts +0 -13
- package/build/models/data/theme-json/settings/index.js +0 -1
- package/build/models/data/variant-type/index.d.ts +0 -13
- package/build/models/data/variant-type/index.js +0 -1
- package/build/models/data/variant-type/variant-value/index.d.ts +0 -12
- package/build/models/data/variant-type/variant-value/index.js +0 -1
- package/build/models/index.d.ts +0 -2
- package/build/models/ui/blog-category-list/index.d.ts +0 -51
- package/build/models/ui/blog-category-list/index.js +0 -1
- package/build/models/ui/blog-list/index.d.ts +0 -55
- package/build/models/ui/blog-list/index.js +0 -1
- package/build/models/ui/brand-list/index.d.ts +0 -61
- package/build/models/ui/brand-list/index.js +0 -1
- package/build/models/ui/category-list/index.d.ts +0 -61
- package/build/models/ui/category-list/index.js +0 -1
- package/build/models/ui/component-renderer/index.d.ts +0 -7
- package/build/models/ui/component-renderer/index.js +0 -1
- package/build/models/ui/customer-review-list/index.d.ts +0 -43
- package/build/models/ui/customer-review-list/index.js +0 -1
- package/build/models/ui/customer-review-summary-list/index.d.ts +0 -43
- package/build/models/ui/customer-review-summary-list/index.js +0 -1
- package/build/models/ui/index.d.ts +0 -25
- package/build/models/ui/navigation-link/index.d.ts +0 -8
- package/build/models/ui/navigation-link/index.js +0 -1
- package/build/models/ui/product-attribute-detail/index.d.ts +0 -8
- package/build/models/ui/product-attribute-detail/index.js +0 -1
- package/build/models/ui/product-attribute-list/index.d.ts +0 -8
- package/build/models/ui/product-attribute-list/index.js +0 -1
- package/build/models/ui/product-list/index.d.ts +0 -138
- package/build/models/ui/product-list/index.js +0 -1
- package/build/models/ui/raffle-list/index.d.ts +0 -53
- package/build/models/ui/raffle-list/index.js +0 -1
- package/build/models/ui/validator/form/account-info.d.ts +0 -39
- package/build/models/ui/validator/form/account-info.js +0 -1
- package/build/models/ui/validator/form/address.d.ts +0 -75
- package/build/models/ui/validator/form/address.js +0 -1
- package/build/models/ui/validator/form/contact-form.d.ts +0 -42
- package/build/models/ui/validator/form/contact-form.js +0 -1
- package/build/models/ui/validator/form/customer-review.d.ts +0 -34
- package/build/models/ui/validator/form/customer-review.js +0 -1
- package/build/models/ui/validator/form/forgot-password.d.ts +0 -26
- package/build/models/ui/validator/form/forgot-password.js +0 -1
- package/build/models/ui/validator/form/login.d.ts +0 -32
- package/build/models/ui/validator/form/login.js +0 -1
- package/build/models/ui/validator/form/raffle-form.d.ts +0 -62
- package/build/models/ui/validator/form/raffle-form.js +0 -1
- package/build/models/ui/validator/form/recover-password.d.ts +0 -33
- package/build/models/ui/validator/form/recover-password.js +0 -1
- package/build/models/ui/validator/form/register.d.ts +0 -49
- package/build/models/ui/validator/form/register.js +0 -1
- package/build/models/ui/validator/index.d.ts +0 -27
- package/build/models/ui/validator/index.js +0 -1
- package/build/models/ui/validator/rules/index.d.ts +0 -101
- package/build/models/ui/validator/rules/index.js +0 -1
- package/build/page-data-init/index.d.ts +0 -40
- package/build/page-data-init/index.js +0 -1
- package/build/pages/404.d.ts +0 -4
- package/build/pages/404.js +0 -1
- package/build/pages/[slug]/index.d.ts +0 -4
- package/build/pages/_slug_/index.js +0 -1
- package/build/pages/account/addresses.d.ts +0 -4
- package/build/pages/account/addresses.js +0 -1
- package/build/pages/account/favorite-products.d.ts +0 -4
- package/build/pages/account/favorite-products.js +0 -1
- package/build/pages/account/forgot-password.d.ts +0 -4
- package/build/pages/account/forgot-password.js +0 -1
- package/build/pages/account/index.d.ts +0 -4
- package/build/pages/account/index.js +0 -1
- package/build/pages/account/login.d.ts +0 -4
- package/build/pages/account/login.js +0 -1
- package/build/pages/account/orders/[id].d.ts +0 -4
- package/build/pages/account/orders/_id_.js +0 -1
- package/build/pages/account/orders/index.d.ts +0 -4
- package/build/pages/account/orders/index.js +0 -1
- package/build/pages/account/raffles.d.ts +0 -4
- package/build/pages/account/raffles.js +0 -1
- package/build/pages/account/recover-password.d.ts +0 -4
- package/build/pages/account/recover-password.js +0 -1
- package/build/pages/account/register.d.ts +0 -4
- package/build/pages/account/register.js +0 -1
- package/build/pages/blog/[slug].d.ts +0 -4
- package/build/pages/blog/_slug_.js +0 -1
- package/build/pages/blog/index.d.ts +0 -4
- package/build/pages/blog/index.js +0 -1
- package/build/pages/cart.d.ts +0 -4
- package/build/pages/cart.js +0 -1
- package/build/pages/checkout.d.ts +0 -18
- package/build/pages/checkout.js +0 -1
- package/build/pages/editor.d.ts +0 -10
- package/build/pages/editor.js +0 -1
- package/build/pages/home.d.ts +0 -4
- package/build/pages/home.js +0 -1
- package/build/pages/index.d.ts +0 -22
- package/build/pages/pages/[slug].d.ts +0 -4
- package/build/pages/pages/_slug_.js +0 -1
- package/build/pages/raffle/[slug].d.ts +0 -4
- package/build/pages/raffle/_slug_.js +0 -1
- package/build/pages/raffle/index.d.ts +0 -4
- package/build/pages/raffle/index.js +0 -1
- package/build/pages/search.d.ts +0 -4
- package/build/pages/search.js +0 -1
- package/build/store/base.d.ts +0 -44
- package/build/store/base.js +0 -1
- package/build/store/blog/index.d.ts +0 -26
- package/build/store/blog/index.js +0 -1
- package/build/store/brand/index.d.ts +0 -12
- package/build/store/brand/index.js +0 -1
- package/build/store/cart/api.d.ts +0 -10
- package/build/store/cart/api.js +0 -1
- package/build/store/cart/index.d.ts +0 -27
- package/build/store/cart/index.js +0 -1
- package/build/store/category/index.d.ts +0 -12
- package/build/store/category/index.js +0 -1
- package/build/store/checkout/index.d.ts +0 -15
- package/build/store/checkout/index.js +0 -1
- package/build/store/customer/api.d.ts +0 -54
- package/build/store/customer/api.js +0 -1
- package/build/store/customer/index.d.ts +0 -79
- package/build/store/customer/index.js +0 -1
- package/build/store/html-meta-data/index.d.ts +0 -6
- package/build/store/html-meta-data/index.js +0 -1
- package/build/store/index.d.ts +0 -3
- package/build/store/location/index.d.ts +0 -9
- package/build/store/location/index.js +0 -1
- package/build/store/merchant/index.d.ts +0 -6
- package/build/store/product/index.d.ts +0 -37
- package/build/store/product/index.js +0 -1
- package/build/store/raffle/index.d.ts +0 -15
- package/build/store/raffle/index.js +0 -1
- package/build/store/storefront/index.d.ts +0 -5
- package/build/utils/constants.d.ts +0 -2
- package/build/utils/constants.js +0 -1
- package/build/utils/currency.d.ts +0 -7
- package/build/utils/currency.js +0 -1
- package/build/utils/google-fonts.d.ts +0 -2
- package/build/utils/google-fonts.js +0 -1
- package/build/utils/helper.d.ts +0 -4
- package/build/utils/helper.js +0 -1
- package/build/utils/i18n.d.ts +0 -11
- package/build/utils/i18n.js +0 -1
- package/build/utils/index.d.ts +0 -3
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { IkasOrderAddressFunctions } from "@ikas/storefront-model-functions";
|
|
2
|
-
import { IkasOrderAddress as IOrderAddress } from "@ikas/storefront-models";
|
|
3
|
-
import { IkasCheckoutSettings } from "../../checkout-settings";
|
|
4
|
-
import { IkasOrderAddressCity } from "./city";
|
|
5
|
-
import { IkasOrderAddressCountry } from "./country";
|
|
6
|
-
import { IkasOrderAddressDistrict } from "./district";
|
|
7
|
-
import { IkasOrderAddressState } from "./state";
|
|
8
|
-
declare type IkasOrderAddressConstructorData = {
|
|
9
|
-
checkoutSettings?: IkasCheckoutSettings | null;
|
|
10
|
-
isDistrictRequired?: boolean;
|
|
11
|
-
} & IOrderAddress;
|
|
12
|
-
export declare class IkasOrderAddress implements IOrderAddress {
|
|
13
|
-
addressLine1: string;
|
|
14
|
-
addressLine2: string | null;
|
|
15
|
-
company: string | null;
|
|
16
|
-
firstName: string;
|
|
17
|
-
id: string | null;
|
|
18
|
-
identityNumber: string | null;
|
|
19
|
-
isDefault: boolean;
|
|
20
|
-
lastName: string;
|
|
21
|
-
phone: string | null;
|
|
22
|
-
postalCode: string | null;
|
|
23
|
-
taxNumber: string | null;
|
|
24
|
-
taxOffice: string | null;
|
|
25
|
-
country: IkasOrderAddressCountry | null;
|
|
26
|
-
state: IkasOrderAddressState | null;
|
|
27
|
-
city: IkasOrderAddressCity | null;
|
|
28
|
-
district: IkasOrderAddressDistrict | null;
|
|
29
|
-
checkoutSettings?: IkasCheckoutSettings | null;
|
|
30
|
-
isDistrictRequired?: boolean;
|
|
31
|
-
constructor(data?: Partial<IkasOrderAddressConstructorData>);
|
|
32
|
-
get addressText(): string;
|
|
33
|
-
get validationResult(): IkasOrderAddressFunctions.IkasOrderAddressValidationResult | undefined;
|
|
34
|
-
get isValid(): boolean;
|
|
35
|
-
toJSON(): this;
|
|
36
|
-
}
|
|
37
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{__assign as t}from'./../../../../ext/tslib/tslib.es6.js';import{IkasOrderAddressFunctions as i}from"@ikas/storefront-model-functions";import{makeAutoObservable as e}from"mobx";import{IkasCheckoutSettings as s}from"../../checkout-settings/index.js";var n=function(){function n(t){void 0===t&&(t={}),this.addressLine2=null,this.company=null,this.id=null,this.identityNumber=null,this.phone=null,this.postalCode=null,this.taxNumber=null,this.taxOffice=null,this.country=null,this.state=null,this.city=null,this.district=null,this.checkoutSettings=null,this.addressLine1=t.addressLine1||"",this.addressLine2=t.addressLine2||null,this.company=t.company||null,this.firstName=t.firstName||"",this.id=t.id||null,this.identityNumber=t.identityNumber||null,this.isDefault=t.isDefault||!1,this.lastName=t.lastName||"",this.phone=t.phone||null,this.postalCode=t.postalCode||null,this.taxNumber=t.taxNumber||null,this.taxOffice=t.taxOffice||null,this.country=t.country||null,this.state=t.state||null,this.city=t.city||null,this.district=t.district||null,this.checkoutSettings=t.checkoutSettings?new s(t.checkoutSettings):null,this.isDistrictRequired=t.isDistrictRequired||!1,e(this)}return Object.defineProperty(n.prototype,"addressText",{get:function(){return i.getAddressText(this)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"validationResult",{get:function(){if(this.checkoutSettings)return i.getValidationResult(this,this.checkoutSettings,this.isDistrictRequired||!1)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isValid",{get:function(){return!!this.checkoutSettings&&i.isValidAddress(this,this.checkoutSettings,this.isDistrictRequired||!1)},enumerable:!1,configurable:!0}),n.prototype.toJSON=function(){var i=t({},this);return delete i.checkoutSettings,delete i.isDistrictRequired,i},n}();export{n as IkasOrderAddress};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { IkasOrderAddressState as IOrderAddressState } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasOrderAddressState implements IOrderAddressState {
|
|
3
|
-
code: string | null;
|
|
4
|
-
id: string | null;
|
|
5
|
-
name: string | null;
|
|
6
|
-
constructor(data: IOrderAddressState);
|
|
7
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as i}from"mobx";var n=function(n){this.code=n.code||null,this.id=n.id||null,this.name=n.name||null,i(this)};export{n as IkasOrderAddressState};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IkasOrderAdjustmentAppliedOrderLine as IOrderAdjustmentAppliedOrderLine } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasOrderAdjustmentAppliedOrderLine implements IOrderAdjustmentAppliedOrderLine {
|
|
3
|
-
amount: number;
|
|
4
|
-
appliedQuantity: number;
|
|
5
|
-
isAutoCreated: boolean | null;
|
|
6
|
-
orderLineId: string;
|
|
7
|
-
constructor(data: IOrderAdjustmentAppliedOrderLine);
|
|
8
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as t}from"mobx";var i=function(i){this.isAutoCreated=null,this.amount=i.amount,this.appliedQuantity=i.appliedQuantity,this.isAutoCreated=i.isAutoCreated,this.orderLineId=i.orderLineId,t(this)};export{i as IkasOrderAdjustmentAppliedOrderLine};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { IkasOrderAdjustment as IOrderAdjustment, IkasAmountType, IkasAdjustmentType, IkasCampaignType } from "@ikas/storefront-models";
|
|
2
|
-
import { IkasOrderAdjustmentAppliedOrderLine } from "./applied-order-line";
|
|
3
|
-
export declare class IkasOrderAdjustment implements IOrderAdjustment {
|
|
4
|
-
amount: number;
|
|
5
|
-
appliedOrderLines: IkasOrderAdjustmentAppliedOrderLine[] | null;
|
|
6
|
-
campaignId: string | null;
|
|
7
|
-
couponId: string | null;
|
|
8
|
-
name: string;
|
|
9
|
-
order: number;
|
|
10
|
-
amountType: IkasAmountType;
|
|
11
|
-
type: IkasAdjustmentType;
|
|
12
|
-
campaignType: IkasCampaignType | null;
|
|
13
|
-
constructor(data: IOrderAdjustment);
|
|
14
|
-
}
|
|
15
|
-
export { IkasAmountType, IkasAdjustmentType, IkasCampaignType };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export{IkasAdjustmentType,IkasAmountType,IkasCampaignType}from"@ikas/storefront-models";import{makeAutoObservable as n}from"mobx";import{IkasOrderAdjustmentAppliedOrderLine as i}from"./applied-order-line/index.js";var e=function(e){var p;this.appliedOrderLines=null,this.campaignId=null,this.couponId=null,this.campaignType=null,this.amount=e.amount,this.appliedOrderLines=(null===(p=e.appliedOrderLines)||void 0===p?void 0:p.map((function(n){return new i(n)})))||null,this.campaignId=e.campaignId||null,this.couponId=e.couponId||null,this.name=e.name,this.order=e.order,this.amountType=e.amountType,this.type=e.type,this.campaignType=e.campaignType||null,n(this)};export{e as IkasOrderAdjustment};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { IkasOrderCustomer as IOrderCustomer } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasOrderCustomer implements IOrderCustomer {
|
|
3
|
-
email: string | null;
|
|
4
|
-
firstName: string | null;
|
|
5
|
-
fullName: string | null;
|
|
6
|
-
id: string | null;
|
|
7
|
-
isGuestCheckout: boolean | null;
|
|
8
|
-
lastName: string | null;
|
|
9
|
-
notificationsAccepted: boolean | null;
|
|
10
|
-
constructor(data?: Partial<IOrderCustomer>);
|
|
11
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as l}from"mobx";var i=function(i){void 0===i&&(i={}),this.email=null,this.firstName=null,this.fullName=null,this.id=null,this.isGuestCheckout=null,this.lastName=null,this.notificationsAccepted=null,this.email=i.email||null,this.firstName=i.firstName||null,this.fullName=i.fullName||null,this.id=i.id||null,this.isGuestCheckout=i.isGuestCheckout||null,this.lastName=i.lastName||null,this.notificationsAccepted=i.notificationsAccepted||null,l(this)};export{i as IkasOrderCustomer};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as t}from"mobx";var i=function(i){this.taxValue=null,this.price=i.price,this.taxValue=i.taxValue||null,t(this)};export{i as IkasOrderGiftPackageLine};
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import { IkasOrderAddress } from "./address";
|
|
2
|
-
import { IkasOrderShippingLine } from "./shipping-line";
|
|
3
|
-
import { IkasOrderLineItem } from "./line-item";
|
|
4
|
-
import { IkasOrderRefundSettings } from "./refund/settings";
|
|
5
|
-
import { IkasOrderCustomer } from "./customer";
|
|
6
|
-
import { IkasOrderGiftPackageLine } from "./gift-line";
|
|
7
|
-
import { IkasInvoice } from "./invoice";
|
|
8
|
-
import { IkasOrderPaymentMethod } from "./payment-method";
|
|
9
|
-
import { IkasOrderAdjustment } from "./adjustment";
|
|
10
|
-
import { IkasOrderPackage } from "./package";
|
|
11
|
-
import { IkasOrderTaxLine } from "./tax-line";
|
|
12
|
-
import { IkasBaseModel } from "../base";
|
|
13
|
-
import { IkasOrderCancelReason, IkasOrderPackageStatus, IkasOrderPaymentStatus, IkasOrderShippingMethod, IkasOrderStatus } from "@ikas/storefront-models";
|
|
14
|
-
import { IkasOrder as IOrder } from "@ikas/storefront-models";
|
|
15
|
-
declare type IOrderConstructorData = {
|
|
16
|
-
refundSettings?: IkasOrderRefundSettings | null;
|
|
17
|
-
} & IOrder;
|
|
18
|
-
export declare class IkasOrder extends IkasBaseModel implements IOrder {
|
|
19
|
-
billingAddress: IkasOrderAddress | null;
|
|
20
|
-
cancelReason: IkasOrderCancelReason | null;
|
|
21
|
-
cancelledAt: number | null;
|
|
22
|
-
currencyCode: string;
|
|
23
|
-
currencySymbol: string | null;
|
|
24
|
-
customer: IkasOrderCustomer | null;
|
|
25
|
-
customerId: string | null;
|
|
26
|
-
giftPackageLines: IkasOrderGiftPackageLine[] | null;
|
|
27
|
-
giftPackageNote: string | null;
|
|
28
|
-
invoices: IkasInvoice[] | null;
|
|
29
|
-
isGiftPackage: boolean | null;
|
|
30
|
-
note: string | null;
|
|
31
|
-
orderAdjustments: IkasOrderAdjustment[] | null;
|
|
32
|
-
orderLineItems: IkasOrderLineItem[];
|
|
33
|
-
orderNumber: string | null;
|
|
34
|
-
orderPackageStatus: IkasOrderPackageStatus | null;
|
|
35
|
-
orderPackages: IkasOrderPackage[] | null;
|
|
36
|
-
orderPaymentStatus: IkasOrderPaymentStatus | null;
|
|
37
|
-
orderedAt: number | null;
|
|
38
|
-
paymentMethods: IkasOrderPaymentMethod[] | null;
|
|
39
|
-
shippingAddress: IkasOrderAddress | null;
|
|
40
|
-
shippingLines: IkasOrderShippingLine[] | null;
|
|
41
|
-
shippingMethod: IkasOrderShippingMethod;
|
|
42
|
-
status: IkasOrderStatus;
|
|
43
|
-
taxLines: IkasOrderTaxLine[] | null;
|
|
44
|
-
totalFinalPrice: number;
|
|
45
|
-
totalPrice: number;
|
|
46
|
-
refundSettings?: IkasOrderRefundSettings | null;
|
|
47
|
-
constructor(data: Partial<IOrderConstructorData>);
|
|
48
|
-
get items(): IkasOrderLineItem[];
|
|
49
|
-
get itemCount(): number;
|
|
50
|
-
get itemQuantity(): number;
|
|
51
|
-
get refundableItems(): IkasOrderLineItem[];
|
|
52
|
-
get unfullfilledItems(): IkasOrderLineItem[];
|
|
53
|
-
get refundedItems(): IkasOrderLineItem[];
|
|
54
|
-
get totalTax(): number;
|
|
55
|
-
get formattedTotalTax(): string;
|
|
56
|
-
get shippingTotal(): number;
|
|
57
|
-
get formattedShippingTotal(): string;
|
|
58
|
-
get formattedTotalFinalPrice(): string;
|
|
59
|
-
get formattedTotalPrice(): string;
|
|
60
|
-
get hasCustomer(): boolean;
|
|
61
|
-
get hasValidCustomerEmail(): boolean;
|
|
62
|
-
get customerFullName(): string;
|
|
63
|
-
get formattedDate(): string;
|
|
64
|
-
get couponAdjustment(): IkasOrderAdjustment;
|
|
65
|
-
get nonCouponAdjustments(): IkasOrderAdjustment[];
|
|
66
|
-
get isRefundEnabled(): boolean;
|
|
67
|
-
}
|
|
68
|
-
export { IkasOrderCancelReason, IkasOrderPackageStatus, IkasOrderPaymentStatus, IkasOrderShippingMethod, IkasOrderStatus, };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{__extends as e}from'./../../../ext/tslib/tslib.es6.js';import{IkasOrderAddress as t}from"./address/index.js";import{IkasOrderShippingLine as n}from"./shipping-line/index.js";import{IkasOrderLineItem as r}from"./line-item/index.js";import{IkasOrderCustomer as o}from"./customer/index.js";import{IkasOrderGiftPackageLine as i}from"./gift-line/index.js";import{IkasInvoice as u}from"./invoice/index.js";import{IkasOrderPaymentMethod as l}from"./payment-method/index.js";import{IkasOrderAdjustment as a}from"./adjustment/index.js";import{IkasOrderPackage as s}from"./package/index.js";import{IkasOrderTaxLine as d}from"./tax-line/index.js";import{IkasBaseModel as c}from"../base/index.js";import{IkasOrderShippingMethod as m,IkasOrderStatus as f}from"@ikas/storefront-models";export{IkasOrderCancelReason,IkasOrderPackageStatus,IkasOrderPaymentStatus,IkasOrderShippingMethod,IkasOrderStatus}from"@ikas/storefront-models";import{makeObservable as p,observable as g,computed as b}from"mobx";import{IkasOrderFunctions as y}from"@ikas/storefront-model-functions";import{formatCurrency as h}from"../../../utils/currency.js";var P=function(c){function P(e){var y,h,P,j,k,A,S,v,x,I,O=this;return(O=c.call(this,e)||this).billingAddress=null,O.cancelReason=null,O.cancelledAt=null,O.currencySymbol=null,O.customer=null,O.customerId=null,O.giftPackageLines=null,O.giftPackageNote=null,O.invoices=null,O.isGiftPackage=null,O.note=null,O.orderAdjustments=null,O.orderNumber=null,O.orderPackageStatus=null,O.orderPackages=null,O.orderPaymentStatus=null,O.orderedAt=null,O.paymentMethods=null,O.shippingAddress=null,O.shippingLines=null,O.taxLines=null,O.billingAddress=e.billingAddress?new t(e.billingAddress):null,O.cancelReason=e.cancelReason||null,O.cancelledAt=e.cancelledAt||null,O.currencyCode=e.currencyCode||"",O.currencySymbol=e.currencySymbol||null,O.customer=e.customer?new o(e.customer):null,O.customerId=e.customerId||null,O.giftPackageLines=(null===(y=e.giftPackageLines)||void 0===y?void 0:y.map((function(e){return new i(e)})))||null,O.giftPackageNote=e.giftPackageNote||null,O.invoices=(null===(h=e.invoices)||void 0===h?void 0:h.map((function(e){return new u(e)})))||null,O.isGiftPackage=e.isGiftPackage||null,O.note=e.note||null,O.orderAdjustments=(null===(P=e.orderAdjustments)||void 0===P?void 0:P.map((function(e){return new a(e)})))||null,O.orderLineItems=(null===(j=e.orderLineItems)||void 0===j?void 0:j.map((function(e){return new r(e)})).filter((function(e){return!e.deleted})))||[],O.orderNumber=e.orderNumber||null,O.orderPackageStatus=e.orderPackageStatus||null,O.orderPackages=(null===(k=e.orderPackages)||void 0===k?void 0:k.map((function(e){return new s(e)})))||null,O.orderPaymentStatus=e.orderPaymentStatus||null,O.orderedAt=e.orderedAt||null,O.paymentMethods=(null===(A=e.paymentMethods)||void 0===A?void 0:A.map((function(e){return new l(e)})))||null,O.shippingAddress=e.shippingAddress?new t(e.shippingAddress):null,O.shippingLines=(null===(S=e.shippingLines)||void 0===S?void 0:S.map((function(e){return new n(e)})))||null,O.shippingMethod=e.shippingMethod||m.SHIPMENT,O.status=e.status||f.CREATED,O.taxLines=(null===(v=e.taxLines)||void 0===v?void 0:v.map((function(e){return new d(e)})))||null,O.totalFinalPrice=null!==(x=e.totalFinalPrice)&&void 0!==x?x:0,O.totalPrice=null!==(I=e.totalPrice)&&void 0!==I?I:0,O.refundSettings=e.refundSettings,p(O,{billingAddress:g,cancelReason:g,cancelledAt:g,currencyCode:g,currencySymbol:g,customer:g,customerId:g,giftPackageLines:g,giftPackageNote:g,invoices:g,isGiftPackage:g,note:g,orderAdjustments:g,orderLineItems:g,orderNumber:g,orderPackageStatus:g,orderPackages:g,orderPaymentStatus:g,orderedAt:g,paymentMethods:g,shippingAddress:g,shippingLines:g,shippingMethod:g,status:g,taxLines:g,totalFinalPrice:g,totalPrice:g,refundSettings:g,items:b,itemCount:b,refundableItems:b,unfullfilledItems:b,refundedItems:b,totalTax:b,formattedTotalTax:b,shippingTotal:b,formattedShippingTotal:b,formattedTotalFinalPrice:b,formattedTotalPrice:b,hasCustomer:b,hasValidCustomerEmail:b,customerFullName:b,formattedDate:b,couponAdjustment:b,nonCouponAdjustments:b}),O}return e(P,c),Object.defineProperty(P.prototype,"items",{get:function(){return this.orderLineItems},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"itemCount",{get:function(){var e;return(null===(e=this.items)||void 0===e?void 0:e.length)||0},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"itemQuantity",{get:function(){return this.items.reduce((function(e,t){return e+t.quantity}),0)},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"refundableItems",{get:function(){return this.refundSettings?y.getRefundableItems(this,this.refundSettings):[]},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"unfullfilledItems",{get:function(){return y.getUnfullfilledItems(this)},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"refundedItems",{get:function(){return y.getRefundedItems(this)},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"totalTax",{get:function(){return y.getTotalTax(this)},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"formattedTotalTax",{get:function(){return h(this.totalTax,this.currencyCode,this.currencySymbol||"")},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"shippingTotal",{get:function(){return y.getShippingTotal(this)},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"formattedShippingTotal",{get:function(){return h(this.shippingTotal,this.currencyCode,this.currencySymbol||"")},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"formattedTotalFinalPrice",{get:function(){return h(this.totalFinalPrice,this.currencyCode,this.currencySymbol||"")},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"formattedTotalPrice",{get:function(){return h(this.totalPrice,this.currencyCode,this.currencySymbol||"")},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"hasCustomer",{get:function(){return y.hasCustomer(this)},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"hasValidCustomerEmail",{get:function(){return y.hasValidCustomerEmail(this)},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"customerFullName",{get:function(){return y.getCustomerFullName(this)},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"formattedDate",{get:function(){return y.getFormattedDate(this)},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"couponAdjustment",{get:function(){return y.getCouponAdjustment(this)},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"nonCouponAdjustments",{get:function(){return y.getNonCouponAdjustments(this)},enumerable:!1,configurable:!0}),Object.defineProperty(P.prototype,"isRefundEnabled",{get:function(){return!this.refundableItems.some((function(e){return null===e.refundQuantity}))},enumerable:!1,configurable:!0}),P}(c);export{P as IkasOrder};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { IkasInvoice as IInvoice, IkasInvoiceType } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasInvoice implements IInvoice {
|
|
3
|
-
appId: string;
|
|
4
|
-
appName: string;
|
|
5
|
-
createdAt: number | null;
|
|
6
|
-
id: string;
|
|
7
|
-
invoiceNumber: string;
|
|
8
|
-
storeAppId: string;
|
|
9
|
-
type: IkasInvoiceType;
|
|
10
|
-
constructor(data: IInvoice);
|
|
11
|
-
}
|
|
12
|
-
export { IkasInvoiceType };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export{IkasInvoiceType}from"@ikas/storefront-models";import{makeAutoObservable as t}from"mobx";var e=function(e){this.createdAt=null,this.appId=e.appId,this.appName=e.appName,this.createdAt=e.createdAt||null,this.id=e.id,this.invoiceNumber=e.invoiceNumber,this.storeAppId=e.storeAppId,this.type=e.type,t(this)};export{e as IkasInvoice};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { IkasProductUnitType, IkasOrderLineBaseUnit as IOrderLineBaseUnit } from "@ikas/storefront-models";
|
|
2
|
-
import { IkasOrderLineVariantUnitType } from "./unit-type";
|
|
3
|
-
export declare class IkasOrderLineBaseUnit implements IOrderLineBaseUnit {
|
|
4
|
-
baseAmount: number;
|
|
5
|
-
type: IkasProductUnitType;
|
|
6
|
-
unit: IkasOrderLineVariantUnitType | null;
|
|
7
|
-
constructor(data: IOrderLineBaseUnit);
|
|
8
|
-
}
|
|
9
|
-
export { IkasProductUnitType };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export{IkasProductUnitType}from"@ikas/storefront-models";import{makeAutoObservable as t}from"mobx";import{IkasOrderLineVariantUnitType as o}from"./unit-type/index.js";var i=function(i){this.baseAmount=i.baseAmount,this.type=i.type,this.unit=i.unit?new o(i.unit):null,t(this)};export{i as IkasOrderLineBaseUnit};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { IkasOrderLineVariantUnitType as IOrderLineVariantUnitType } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasOrderLineVariantUnitType implements IOrderLineVariantUnitType {
|
|
3
|
-
id: string;
|
|
4
|
-
name: string;
|
|
5
|
-
constructor(data: IOrderLineVariantUnitType);
|
|
6
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as i}from"mobx";var t=function(t){this.id=t.id,this.name=t.name,i(this)};export{t as IkasOrderLineVariantUnitType};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { IkasOrderLineDiscount as IOrderLineDiscount } from "@ikas/storefront-models";
|
|
2
|
-
import { IkasAmountType } from "../../adjustment";
|
|
3
|
-
export declare class IkasOrderLineDiscount implements IOrderLineDiscount {
|
|
4
|
-
amount: number;
|
|
5
|
-
amountType: IkasAmountType;
|
|
6
|
-
campaignOfferId: string | null;
|
|
7
|
-
campaignOfferProductId: string | null;
|
|
8
|
-
maxApplicableQuantity: number | null;
|
|
9
|
-
reason: string | null;
|
|
10
|
-
constructor(data: IOrderLineDiscount);
|
|
11
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as a}from"mobx";var t=function(t){this.campaignOfferId=null,this.campaignOfferProductId=null,this.maxApplicableQuantity=null,this.reason=null,this.amount=t.amount,this.amountType=t.amountType,this.campaignOfferId=t.campaignOfferId||null,this.campaignOfferProductId=t.campaignOfferProductId||null,this.maxApplicableQuantity=t.maxApplicableQuantity||null,this.reason=t.reason||null,a(this)};export{t as IkasOrderLineDiscount};
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { IkasOrderLineItem as IOrderLineItem, IkasOrderLineItemStatus } from "@ikas/storefront-models";
|
|
2
|
-
import { IkasOrderLineDiscount } from "./discount";
|
|
3
|
-
import { IkasOrderLineVariant } from "./variant";
|
|
4
|
-
import { IkasOrderLineItemOption } from "./option";
|
|
5
|
-
import { IkasBaseModel } from "../../base";
|
|
6
|
-
declare type IOrderLineItemConstructorParams = {
|
|
7
|
-
refundQuantity?: number;
|
|
8
|
-
} & IOrderLineItem;
|
|
9
|
-
export declare class IkasOrderLineItem extends IkasBaseModel implements IOrderLineItem {
|
|
10
|
-
currencyCode: string | null;
|
|
11
|
-
currencySymbol: string | null;
|
|
12
|
-
discount: IkasOrderLineDiscount | null;
|
|
13
|
-
discountPrice: number | null;
|
|
14
|
-
finalPrice: number | null;
|
|
15
|
-
finalUnitPrice: number | null;
|
|
16
|
-
options: IkasOrderLineItemOption[] | null;
|
|
17
|
-
originalOrderLineItemId: string | null;
|
|
18
|
-
price: number;
|
|
19
|
-
quantity: number;
|
|
20
|
-
status: IkasOrderLineItemStatus;
|
|
21
|
-
statusUpdatedAt: number | null;
|
|
22
|
-
stockLocationId: string | null;
|
|
23
|
-
taxValue: number | null;
|
|
24
|
-
unitPrice: number | null;
|
|
25
|
-
variant: IkasOrderLineVariant;
|
|
26
|
-
orderedAt: number;
|
|
27
|
-
private _refundQuantity;
|
|
28
|
-
constructor(data: IOrderLineItemConstructorParams);
|
|
29
|
-
get priceWithQuantity(): number;
|
|
30
|
-
get formattedPriceWithQuantity(): string;
|
|
31
|
-
get overridenPriceWithQuantity(): number;
|
|
32
|
-
get formattedOverridenPriceWithQuantity(): string;
|
|
33
|
-
get formattedFinalPrice(): string;
|
|
34
|
-
get formattedUnitPrice(): string;
|
|
35
|
-
get formattedFinalUnitPrice(): string;
|
|
36
|
-
get unitPriceText(): string | undefined;
|
|
37
|
-
get formattedDiscountPrice(): string;
|
|
38
|
-
get finalPriceWithQuantity(): number;
|
|
39
|
-
get formattedFinalPriceWithQuantity(): string;
|
|
40
|
-
get tax(): number;
|
|
41
|
-
get formattedTax(): string;
|
|
42
|
-
get refundQuantity(): number | null | undefined;
|
|
43
|
-
set refundQuantity(value: number | null | undefined);
|
|
44
|
-
}
|
|
45
|
-
export { IkasOrderLineItemStatus };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{__extends as t}from'./../../../../ext/tslib/tslib.es6.js';export{IkasOrderLineItemStatus}from"@ikas/storefront-models";import{IkasOrderLineDiscount as e}from"./discount/index.js";import{IkasOrderLineVariant as i}from"./variant/index.js";import{IkasOrderLineItemOption as r}from"./option/index.js";import{IkasBaseModel as n}from"../../base/index.js";import{makeObservable as o,observable as u,computed as c}from"mobx";import{IkasOrderLineItemFunctions as a}from"@ikas/storefront-model-functions";import{formatCurrency as l}from"../../../../utils/currency.js";var d=function(n){function d(t){var a,l,d,s,y,f=this;return(f=n.call(this,t)||this).currencyCode=null,f.discount=null,f.discountPrice=null,f.finalPrice=null,f.options=null,f.originalOrderLineItemId=null,f.statusUpdatedAt=null,f.stockLocationId=null,f.taxValue=null,f._refundQuantity=null,f.currencyCode=t.currencyCode||null,f.currencySymbol=t.currencySymbol||null,f.discount=t.discount?new e(t.discount):null,f.discountPrice=null!==(a=t.discountPrice)&&void 0!==a?a:null,f.finalPrice=null!==(l=t.finalPrice)&&void 0!==l?l:null,f.finalUnitPrice=null!==(d=t.finalUnitPrice)&&void 0!==d?d:null,f.options=(null===(s=t.options)||void 0===s?void 0:s.map((function(t){return new r(t)})))||null,f.originalOrderLineItemId=t.originalOrderLineItemId||null,f.price=t.price,f.quantity=t.quantity,f.status=t.status,f.statusUpdatedAt=t.statusUpdatedAt,f.stockLocationId=t.stockLocationId,f.taxValue=t.taxValue,f.unitPrice=null!==(y=t.unitPrice)&&void 0!==y?y:null,f.variant=new i(t.variant),f.orderedAt=t.orderedAt,f.refundQuantity=t.refundQuantity,o(f,{currencyCode:u,currencySymbol:u,discount:u,discountPrice:u,finalPrice:u,finalUnitPrice:u,options:u,originalOrderLineItemId:u,price:u,quantity:u,status:u,statusUpdatedAt:u,stockLocationId:u,taxValue:u,unitPrice:u,variant:u,orderedAt:u,_refundQuantity:u,priceWithQuantity:c,formattedPriceWithQuantity:c,overridenPriceWithQuantity:c,formattedOverridenPriceWithQuantity:c,formattedFinalPrice:c,formattedUnitPrice:c,formattedFinalUnitPrice:c,formattedDiscountPrice:c,finalPriceWithQuantity:c,formattedFinalPriceWithQuantity:c,tax:c,formattedTax:c,refundQuantity:c}),f}return t(d,n),Object.defineProperty(d.prototype,"priceWithQuantity",{get:function(){return a.getPriceWithQuantity(this)},enumerable:!1,configurable:!0}),Object.defineProperty(d.prototype,"formattedPriceWithQuantity",{get:function(){return l(this.priceWithQuantity,this.currencyCode||"",this.currencySymbol||"")},enumerable:!1,configurable:!0}),Object.defineProperty(d.prototype,"overridenPriceWithQuantity",{get:function(){return a.getOverridenPriceWithQuantity(this)},enumerable:!1,configurable:!0}),Object.defineProperty(d.prototype,"formattedOverridenPriceWithQuantity",{get:function(){return l(this.overridenPriceWithQuantity||0,this.currencyCode||"",this.currencySymbol||"")},enumerable:!1,configurable:!0}),Object.defineProperty(d.prototype,"formattedFinalPrice",{get:function(){return l(this.finalPrice||0,this.currencyCode||"",this.currencySymbol||"")},enumerable:!1,configurable:!0}),Object.defineProperty(d.prototype,"formattedUnitPrice",{get:function(){return l(this.unitPrice||0,this.currencyCode||"",this.currencySymbol||"")},enumerable:!1,configurable:!0}),Object.defineProperty(d.prototype,"formattedFinalUnitPrice",{get:function(){return l(this.finalUnitPrice||0,this.currencyCode||"",this.currencySymbol||"")},enumerable:!1,configurable:!0}),Object.defineProperty(d.prototype,"unitPriceText",{get:function(){var t,e,i;if(null!==this.finalUnitPrice)return"".concat(l(this.finalUnitPrice,this.currencyCode||"",this.currencySymbol||"")," / ").concat((null===(e=null===(t=this.variant.baseUnit)||void 0===t?void 0:t.unit)||void 0===e?void 0:e.name)||(null===(i=this.variant.baseUnit)||void 0===i?void 0:i.type))},enumerable:!1,configurable:!0}),Object.defineProperty(d.prototype,"formattedDiscountPrice",{get:function(){return l(this.discountPrice||0,this.currencyCode||"",this.currencySymbol||"")},enumerable:!1,configurable:!0}),Object.defineProperty(d.prototype,"finalPriceWithQuantity",{get:function(){return a.getFinalPriceWithQuantity(this)},enumerable:!1,configurable:!0}),Object.defineProperty(d.prototype,"formattedFinalPriceWithQuantity",{get:function(){return l(this.finalPriceWithQuantity||0,this.currencyCode||"",this.currencySymbol||"")},enumerable:!1,configurable:!0}),Object.defineProperty(d.prototype,"tax",{get:function(){return a.getTax(this)},enumerable:!1,configurable:!0}),Object.defineProperty(d.prototype,"formattedTax",{get:function(){return l(this.tax,this.currencyCode||"",this.currencySymbol||"")},enumerable:!1,configurable:!0}),Object.defineProperty(d.prototype,"refundQuantity",{get:function(){return this._refundQuantity},set:function(t){t?(t>this.quantity&&(t=this.quantity),t<=0&&(t=null),this._refundQuantity=t):this._refundQuantity=null},enumerable:!1,configurable:!0}),d}(n);export{d as IkasOrderLineItem};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { IkasOrderLineItemOption as IOrderLineItemOption, IkasProductOptionType } from "@ikas/storefront-models";
|
|
2
|
-
import { IkasOrderLineItemOptionValue } from "./value";
|
|
3
|
-
export declare class IkasOrderLineItemOption implements IOrderLineItemOption {
|
|
4
|
-
name: string;
|
|
5
|
-
productOptionId: string;
|
|
6
|
-
productOptionsSetId: string;
|
|
7
|
-
type: IkasProductOptionType;
|
|
8
|
-
values: IkasOrderLineItemOptionValue[];
|
|
9
|
-
constructor(data: IOrderLineItemOption);
|
|
10
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as t}from"mobx";import{IkasOrderLineItemOptionValue as o}from"./value/index.js";var i=function(i){this.name=i.name,this.productOptionId=i.productOptionId,this.productOptionsSetId=i.productOptionsSetId,this.type=i.type,this.values=i.values.map((function(t){return new o(t)})),t(this)};export{i as IkasOrderLineItemOption};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { IkasOrderLineItemOptionValue as IOrderLineItemOptionValue } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasOrderLineItemOptionValue implements IOrderLineItemOptionValue {
|
|
3
|
-
name: string | null;
|
|
4
|
-
price: number | null;
|
|
5
|
-
value: string;
|
|
6
|
-
constructor(data: IOrderLineItemOptionValue);
|
|
7
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as i}from"mobx";var l=function(l){this.name=null,this.price=null,this.name=l.name||null,this.price=l.price||null,this.value=l.value,i(this)};export{l as IkasOrderLineItemOptionValue};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as i}from"mobx";var t=function(t){this.id=t.id,this.name=t.name,i(this)};export{t as IkasOrderLineVariantBrand};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { IkasOrderLineVariantCategory as IOrderLineVariantCategory, IkasOrderLineVariantCategoryPath as IOrderLineVariantCategoryPath } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasOrderLineVariantCategory implements IOrderLineVariantCategory {
|
|
3
|
-
categoryPath: IkasOrderLineVariantCategoryPath[] | null;
|
|
4
|
-
id: string;
|
|
5
|
-
name: string;
|
|
6
|
-
constructor(data: IOrderLineVariantCategory);
|
|
7
|
-
}
|
|
8
|
-
export declare class IkasOrderLineVariantCategoryPath implements IOrderLineVariantCategoryPath {
|
|
9
|
-
id: string;
|
|
10
|
-
name: string;
|
|
11
|
-
constructor(data: IOrderLineVariantCategoryPath);
|
|
12
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as t}from"mobx";var i=function(i){var a;this.categoryPath=null,this.categoryPath=(null===(a=i.categoryPath)||void 0===a?void 0:a.map((function(t){return new n(t)})))||null,this.id=i.id,this.name=i.name,t(this)},n=function(i){this.id=i.id,this.name=i.name,t(this)};export{i as IkasOrderLineVariantCategory,n as IkasOrderLineVariantCategoryPath};
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { IkasOrderLineVariant as IOrderLineVariant } from "@ikas/storefront-models";
|
|
2
|
-
import { IkasImage } from "../../../../../models/data/image";
|
|
3
|
-
import { IkasOrderLineVariantVariantValue } from "./value";
|
|
4
|
-
import { IkasOrderLineVariantBrand } from "./brand";
|
|
5
|
-
import { IkasOrderLineVariantCategory } from "./category";
|
|
6
|
-
import { IkasOrderLineVariantPrice } from "./price";
|
|
7
|
-
import { IkasOrderLineVariantUnit } from "./unit";
|
|
8
|
-
import { IkasOrderLineBaseUnit } from "../base-unit";
|
|
9
|
-
export declare class IkasOrderLineVariant implements IOrderLineVariant {
|
|
10
|
-
barcodeList: string[] | null;
|
|
11
|
-
baseUnit: IkasOrderLineBaseUnit | null;
|
|
12
|
-
brand: IkasOrderLineVariantBrand | null;
|
|
13
|
-
categories: IkasOrderLineVariantCategory[] | null;
|
|
14
|
-
id: string | null;
|
|
15
|
-
mainImageId: string | null;
|
|
16
|
-
name: string;
|
|
17
|
-
prices: IkasOrderLineVariantPrice[] | null;
|
|
18
|
-
productId: string | null;
|
|
19
|
-
sku: string | null;
|
|
20
|
-
slug: string | null;
|
|
21
|
-
tagIds: string[] | null;
|
|
22
|
-
taxValue: number | null;
|
|
23
|
-
type: number | null;
|
|
24
|
-
unit: IkasOrderLineVariantUnit | null;
|
|
25
|
-
weight: number | null;
|
|
26
|
-
variantValues: IkasOrderLineVariantVariantValue[] | null;
|
|
27
|
-
mainImage?: IkasImage | null;
|
|
28
|
-
constructor(data: IOrderLineVariant);
|
|
29
|
-
get href(): string | undefined;
|
|
30
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{IkasOrderLineItemVariantFunctions as i}from"@ikas/storefront-model-functions";import{IkasImage as n}from"../../../image/index.js";import{IkasOrderLineVariantVariantValue as t}from"./value/index.js";import{IkasOrderLineVariantBrand as l}from"./brand/index.js";import{IkasOrderLineVariantCategory as e}from"./category/index.js";import{IkasOrderLineVariantPrice as s}from"./price/index.js";import{makeAutoObservable as u}from"mobx";import{IkasOrderLineVariantUnit as r}from"./unit/index.js";import{IkasOrderLineBaseUnit as a}from"../base-unit/index.js";var o=function(){function o(i){var o,d,m;this.barcodeList=null,this.brand=null,this.categories=null,this.id=null,this.mainImageId=null,this.prices=null,this.productId=null,this.sku=null,this.slug=null,this.tagIds=null,this.taxValue=null,this.type=null,this.weight=null,this.variantValues=null,this.mainImage=null,this.barcodeList=i.barcodeList||null,this.baseUnit=i.baseUnit?new a(i.baseUnit):null,this.brand=i.brand?new l(i.brand):null,this.categories=(null===(o=i.categories)||void 0===o?void 0:o.map((function(i){return new e(i)})))||null,this.id=i.id||null,this.mainImageId=i.mainImageId||null,this.name=i.name,this.prices=(null===(d=i.prices)||void 0===d?void 0:d.map((function(i){return new s(i)})))||null,this.productId=i.productId||null,this.sku=i.sku||null,this.slug=i.slug||null,this.tagIds=i.tagIds||null,this.taxValue=i.taxValue||null,this.type=i.type||null,this.unit=i.unit?new r(i.unit):null,this.weight=i.weight||null,this.variantValues=(null===(m=i.variantValues)||void 0===m?void 0:m.map((function(i){return new t(i)})))||null,this.mainImage=i.mainImageId?new n({id:i.mainImageId,isVideo:!1}):null,u(this)}return Object.defineProperty(o.prototype,"href",{get:function(){return i.getIkasOrderLineVariantHref(this)},enumerable:!1,configurable:!0}),o}();export{o as IkasOrderLineVariant};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { IkasOrderLineVariantPrice as IOrderLineVariantPrice } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasOrderLineVariantPrice implements IOrderLineVariantPrice {
|
|
3
|
-
buyPrice: number | null;
|
|
4
|
-
currency: string | null;
|
|
5
|
-
discountPrice: number | null;
|
|
6
|
-
priceListId: string | null;
|
|
7
|
-
sellPrice: number;
|
|
8
|
-
unitPrice: number | null;
|
|
9
|
-
constructor(data: IOrderLineVariantPrice);
|
|
10
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as i}from"mobx";var c=function(c){this.buyPrice=null,this.currency=null,this.discountPrice=null,this.priceListId=null,this.buyPrice=c.buyPrice||null,this.currency=c.currency||null,this.discountPrice=c.discountPrice||null,this.priceListId=c.priceListId||null,this.sellPrice=c.sellPrice,this.unitPrice=c.unitPrice,i(this)};export{c as IkasOrderLineVariantPrice};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { IkasProductUnitType, IkasOrderLineVariantUnit as IOrderLineVariantUnit } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasOrderLineVariantUnit implements IOrderLineVariantUnit {
|
|
3
|
-
amount: number;
|
|
4
|
-
type: IkasProductUnitType;
|
|
5
|
-
constructor(data: IOrderLineVariantUnit);
|
|
6
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as t}from"mobx";var o=function(o){this.amount=o.amount,this.type=o.type,t(this)};export{o as IkasOrderLineVariantUnit};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { IkasOrderLineVariantVariantValue as IOrderLineVariantVariantValue } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasOrderLineVariantVariantValue implements IOrderLineVariantVariantValue {
|
|
3
|
-
order: number;
|
|
4
|
-
variantTypeId: string;
|
|
5
|
-
variantTypeName: string | null;
|
|
6
|
-
variantValueId: string;
|
|
7
|
-
variantValueName: string | null;
|
|
8
|
-
constructor(data: IOrderLineVariantVariantValue);
|
|
9
|
-
get variantTypeSlug(): string;
|
|
10
|
-
get variantNameSlug(): string;
|
|
11
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{IkasOrderLineItemVariantValueFunctions as e}from"@ikas/storefront-model-functions";import{makeAutoObservable as a}from"mobx";var t=function(){function t(e){this.variantTypeName=null,this.variantValueName=null,this.order=e.order,this.variantTypeId=e.variantTypeId,this.variantTypeName=e.variantTypeName||null,this.variantValueId=e.variantValueId,this.variantValueName=e.variantValueName||null,a(this)}return Object.defineProperty(t.prototype,"variantTypeSlug",{get:function(){return e.getIkasVariantTypeSlug(this)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"variantNameSlug",{get:function(){return e.getIkasVariantNameSlug(this)},enumerable:!1,configurable:!0}),t}();export{t as IkasOrderLineVariantVariantValue};
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { IkasOrderPackage as IOrderPackage, IkasOrderPackageFullfillStatus } from "@ikas/storefront-models";
|
|
2
|
-
import { IkasBaseModel } from "../../base";
|
|
3
|
-
import { IkasTrackingInfo } from "./tracking-info";
|
|
4
|
-
export declare class IkasOrderPackage extends IkasBaseModel implements IOrderPackage {
|
|
5
|
-
errorMessage: string | null;
|
|
6
|
-
note: string | null;
|
|
7
|
-
orderLineItemIds: string[];
|
|
8
|
-
orderPackageFulfillStatus: IkasOrderPackageFullfillStatus;
|
|
9
|
-
orderPackageNumber: string;
|
|
10
|
-
stockLocationId: string;
|
|
11
|
-
trackingInfo: IkasTrackingInfo | null;
|
|
12
|
-
constructor(data: IOrderPackage);
|
|
13
|
-
}
|
|
14
|
-
export { IkasOrderPackageFullfillStatus };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{__extends as r}from'./../../../../ext/tslib/tslib.es6.js';export{IkasOrderPackageFullfillStatus}from"@ikas/storefront-models";import{makeObservable as e,observable as o}from"mobx";import{IkasBaseModel as t}from"../../base/index.js";var a=function(t){function a(r){var a=t.call(this,r)||this;return a.errorMessage=null,a.note=null,a.trackingInfo=null,a.errorMessage=r.errorMessage||null,a.note=r.note||null,a.orderLineItemIds=r.orderLineItemIds||[],a.orderPackageFulfillStatus=r.orderPackageFulfillStatus,a.orderPackageNumber=r.orderPackageNumber,a.stockLocationId=r.stockLocationId,a.trackingInfo=r.trackingInfo||null,e(a,{errorMessage:o,note:o,orderLineItemIds:o,orderPackageFulfillStatus:o,orderPackageNumber:o,stockLocationId:o,trackingInfo:o}),a}return r(a,t),a}(t);export{a as IkasOrderPackage};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { IkasTrackingInfo as ITrackingInfo } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasTrackingInfo implements ITrackingInfo {
|
|
3
|
-
barcode: string | null;
|
|
4
|
-
cargoCompany: string | null;
|
|
5
|
-
isSendNotification: boolean | null;
|
|
6
|
-
trackingLink: string | null;
|
|
7
|
-
trackingNumber: string | null;
|
|
8
|
-
constructor(data: ITrackingInfo);
|
|
9
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as i}from"mobx";var n=function(n){this.barcode=null,this.cargoCompany=null,this.isSendNotification=null,this.trackingLink=null,this.trackingNumber=null,this.barcode=n.barcode||null,this.cargoCompany=n.cargoCompany||null,this.isSendNotification=n.isSendNotification||null,this.trackingLink=n.trackingLink||null,this.trackingNumber=n.trackingNumber||null,i(this)};export{n as IkasTrackingInfo};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { IkasOrderPaymentMethod as IOrderPaymentMethod, IkasPaymentMethodType } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasOrderPaymentMethod implements IOrderPaymentMethod {
|
|
3
|
-
paymentGatewayCode: string | null;
|
|
4
|
-
paymentGatewayId: string | null;
|
|
5
|
-
paymentGatewayName: string | null;
|
|
6
|
-
price: number;
|
|
7
|
-
type: IkasPaymentMethodType;
|
|
8
|
-
constructor(data: IOrderPaymentMethod);
|
|
9
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as t}from"mobx";var a=function(a){this.paymentGatewayCode=null,this.paymentGatewayId=null,this.paymentGatewayName=null,this.paymentGatewayCode=a.paymentGatewayCode||null,this.paymentGatewayId=a.paymentGatewayId||null,this.paymentGatewayName=a.paymentGatewayName||null,this.price=a.price,this.type=a.type,t(this)};export{a as IkasOrderPaymentMethod};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { IkasRefund as IRefund } from "@ikas/storefront-models";
|
|
2
|
-
import { IkasOrderRefundOrderLineInput } from "./line-item";
|
|
3
|
-
export declare class IkasRefund implements IRefund {
|
|
4
|
-
orderId: string;
|
|
5
|
-
orderLineItems: IkasOrderRefundOrderLineInput[];
|
|
6
|
-
constructor(data: IRefund);
|
|
7
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as r}from"mobx";import{IkasOrderRefundOrderLineInput as e}from"./line-item/index.js";var i=function(i){this.orderId=i.orderId,this.orderLineItems=i.orderLineItems.map((function(r){return new e(r)})),r(this)};export{i as IkasRefund};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { IkasOrderRefundOrderLineInput as IOrderRefundOrderLineInput } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasOrderRefundOrderLineInput implements IOrderRefundOrderLineInput {
|
|
3
|
-
orderLineItemId: string;
|
|
4
|
-
quantity: number;
|
|
5
|
-
constructor(data: IOrderRefundOrderLineInput);
|
|
6
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as t}from"mobx";var i=function(i){this.orderLineItemId=i.orderLineItemId,this.quantity=i.quantity,t(this)};export{i as IkasOrderRefundOrderLineInput};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { IkasOrderRefundSettings as IOrderRefundSettings } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasOrderRefundSettings implements IOrderRefundSettings {
|
|
3
|
-
isActiveRefundSection: boolean;
|
|
4
|
-
orderRefundDayLimit: number | null;
|
|
5
|
-
refundDesc: string;
|
|
6
|
-
constructor(data: IOrderRefundSettings);
|
|
7
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as i}from"mobx";var e=function(e){this.orderRefundDayLimit=null,this.isActiveRefundSection=e.isActiveRefundSection,this.orderRefundDayLimit=e.orderRefundDayLimit,this.refundDesc=e.refundDesc,i(this)};export{e as IkasOrderRefundSettings};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { IkasPaymentMethodType, IkasOrderShippingLine as IOrderShippingLine } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasOrderShippingLine implements IOrderShippingLine {
|
|
3
|
-
finalPrice: number;
|
|
4
|
-
isRefunded: boolean | null;
|
|
5
|
-
paymentMethod: IkasPaymentMethodType | null;
|
|
6
|
-
price: number;
|
|
7
|
-
shippingSettingsId: string | null;
|
|
8
|
-
shippingZoneRateId: string | null;
|
|
9
|
-
taxValue: number | null;
|
|
10
|
-
title: string;
|
|
11
|
-
constructor(data: IOrderShippingLine);
|
|
12
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as i}from"mobx";var t=function(t){this.isRefunded=null,this.paymentMethod=null,this.shippingSettingsId=null,this.shippingZoneRateId=null,this.taxValue=null,this.finalPrice=t.finalPrice,this.isRefunded=t.isRefunded||null,this.paymentMethod=t.paymentMethod||null,this.price=t.price,this.shippingSettingsId=t.shippingSettingsId||null,this.shippingZoneRateId=t.shippingZoneRateId||null,this.taxValue=t.taxValue||null,this.title=t.title,i(this)};export{t as IkasOrderShippingLine};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as r}from"mobx";var t=function(t){this.price=t.price,this.rate=t.rate,r(this)};export{t as IkasOrderTaxLine};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { IkasTransactionError as ITransactionError } from "@ikas/storefront-models";
|
|
2
|
-
export declare class IkasTransactionError implements ITransactionError {
|
|
3
|
-
code: string | null;
|
|
4
|
-
declineCode: string | null;
|
|
5
|
-
message: string | null;
|
|
6
|
-
constructor(data: ITransactionError);
|
|
7
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{makeAutoObservable as e}from"mobx";var l=function(l){this.code=null,this.declineCode=null,this.message=null,this.code=l.code||null,this.declineCode=l.declineCode||null,this.message=l.message||null,e(this)};export{l as IkasTransactionError};
|