@liquidcommerce/elements-sdk 2.6.0-beta.6 → 2.6.0-beta.60
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/README.md +83 -2519
- package/dist/index.checkout.esm.js +16576 -0
- package/dist/index.esm.js +23616 -21095
- package/dist/ssr-stub.checkout.esm.js +18 -0
- package/dist/ssr-stub.esm.js +270 -0
- package/dist/types/auto-initialize/checkout.d.ts +2 -0
- package/dist/types/auto-initialize/shared-utils.d.ts +46 -0
- package/dist/types/{elements-base-client.d.ts → clients/base.d.ts} +15 -2
- package/dist/types/clients/builder.d.ts +3 -0
- package/dist/types/clients/checkout.d.ts +6 -0
- package/dist/types/{elements-client-helper.d.ts → clients/helpers.d.ts} +2 -1
- package/dist/types/clients/main.d.ts +3 -0
- package/dist/types/constants/core.constant.d.ts +2 -6
- package/dist/types/core/api/api-client.service.d.ts +21 -20
- package/dist/types/core/api/api-result.d.ts +19 -0
- package/dist/types/core/api/auth-client.service.d.ts +40 -13
- package/dist/types/core/api/http-client.service.d.ts +0 -1
- package/dist/types/core/base-component.service.d.ts +2 -1
- package/dist/types/core/client/actions/base-action.service.d.ts +15 -0
- package/dist/types/core/client/actions/client-address-action.service.d.ts +18 -0
- package/dist/types/core/client/actions/client-cart-action.service.d.ts +37 -0
- package/dist/types/core/client/actions/client-checkout-action.service.d.ts +56 -0
- package/dist/types/core/client/actions/client-product-action.service.d.ts +15 -0
- package/dist/types/core/client/client-action.service.d.ts +6 -70
- package/dist/types/core/client/client-config.service.d.ts +8 -2
- package/dist/types/core/command/common-command.service.d.ts +2 -1
- package/dist/types/core/google-tag-manager.service.d.ts +4 -1
- package/dist/types/core/logger/logger.service.d.ts +1 -1
- package/dist/types/core/pubsub/interfaces/cart.interface.d.ts +27 -64
- package/dist/types/core/pubsub/interfaces/checkout.interface.d.ts +45 -50
- package/dist/types/core/pubsub/interfaces/core.interface.d.ts +9 -4
- package/dist/types/core/pubsub/interfaces/product.interface.d.ts +16 -75
- package/dist/types/core/pubsub/pubsub.service.d.ts +1 -2
- package/dist/types/core/singleton-manager.service.d.ts +12 -8
- package/dist/types/core/store/interfaces/cart.interface.d.ts +16 -56
- package/dist/types/core/store/interfaces/checkout.interface.d.ts +17 -108
- package/dist/types/core/store/interfaces/core.interface.d.ts +14 -3
- package/dist/types/core/store/interfaces/metadata.interface.d.ts +11 -0
- package/dist/types/core/store/interfaces/product-list.interface.d.ts +30 -0
- package/dist/types/core/store/interfaces/product.interface.d.ts +1 -0
- package/dist/types/core/store/store.constant.d.ts +5 -0
- package/dist/types/core/store/store.service.d.ts +1 -0
- package/dist/types/core/telemetry/telemetry.service.d.ts +1 -0
- package/dist/types/enums/core.enum.d.ts +39 -1
- package/dist/types/enums/index.d.ts +0 -1
- package/dist/types/index.checkout.d.ts +8 -0
- package/dist/types/index.checkout.umd.d.ts +4 -0
- package/dist/types/index.d.ts +8 -3
- package/dist/types/interfaces/api/cart.interface.d.ts +95 -0
- package/dist/types/interfaces/api/checkout.interface.d.ts +238 -0
- package/dist/types/interfaces/api/index.d.ts +5 -0
- package/dist/types/interfaces/api/product-list.interface.d.ts +39 -0
- package/dist/types/interfaces/api/product.interface.d.ts +9 -4
- package/dist/types/interfaces/client.interface.d.ts +72 -0
- package/dist/types/interfaces/component.interface.d.ts +7 -0
- package/dist/types/interfaces/config.interface.d.ts +41 -0
- package/dist/types/interfaces/configs/address.interface.d.ts +1 -1
- package/dist/types/interfaces/configs/cart.interface.d.ts +1 -1
- package/dist/types/interfaces/configs/checkout.interface.d.ts +2 -1
- package/dist/types/interfaces/configs/global.interface.d.ts +5 -3
- package/dist/types/interfaces/configs/index.d.ts +1 -0
- package/dist/types/interfaces/configs/product-list.interface.d.ts +47 -0
- package/dist/types/interfaces/configs/product.interface.d.ts +2 -1
- package/dist/types/interfaces/injection.interface.d.ts +47 -0
- package/dist/types/modules/address/address.command.d.ts +2 -1
- package/dist/types/modules/address/styles/register-styles.d.ts +1 -0
- package/dist/types/modules/cart/cart.commands.d.ts +4 -5
- package/dist/types/modules/cart/components/cart-body.component.d.ts +2 -1
- package/dist/types/modules/cart/components/cart-footer.component.d.ts +0 -1
- package/dist/types/modules/cart/components/cart-fulfillment.component.d.ts +0 -2
- package/dist/types/modules/cart/styles/register-styles.d.ts +1 -0
- package/dist/types/modules/checkout/checkout.commands.d.ts +23 -9
- package/dist/types/modules/checkout/checkout.component.d.ts +2 -0
- package/dist/types/modules/checkout/components/checkout-billing.component.d.ts +2 -2
- package/dist/types/modules/checkout/components/checkout-completed.component.d.ts +3 -0
- package/dist/types/modules/checkout/components/checkout-header.component.d.ts +1 -0
- package/dist/types/modules/checkout/components/checkout-items.component.d.ts +4 -3
- package/dist/types/modules/checkout/components/checkout-presale-countdown.component.d.ts +14 -1
- package/dist/types/modules/checkout/components/checkout-presale-expired.component.d.ts +7 -1
- package/dist/types/modules/checkout/components/checkout-stripe-form.component.d.ts +2 -1
- package/dist/types/modules/checkout/components/checkout-tips.component.d.ts +2 -2
- package/dist/types/modules/checkout/components/promo-pc-gc.component.d.ts +0 -2
- package/dist/types/modules/checkout/constant.d.ts +3 -0
- package/dist/types/modules/checkout/styles/register-styles.d.ts +1 -0
- package/dist/types/modules/product/components/product-image-carousel.component.d.ts +3 -0
- package/dist/types/modules/product/components/product-retailers-carousel.component.d.ts +3 -0
- package/dist/types/modules/product/components/product-retailers-popup-list.component.d.ts +5 -2
- package/dist/types/modules/product/product.commands.d.ts +2 -3
- package/dist/types/modules/product/styles/register-styles.d.ts +1 -0
- package/dist/types/modules/product-list/components/card-components/index.d.ts +5 -0
- package/dist/types/modules/product-list/components/card-components/product-badge.d.ts +9 -0
- package/dist/types/modules/product-list/components/card-components/product-button.d.ts +9 -0
- package/dist/types/modules/product-list/components/card-components/product-price-and-personalization.d.ts +13 -0
- package/dist/types/modules/product-list/components/card-components/product-quantity-selector.d.ts +9 -0
- package/dist/types/modules/product-list/components/card-components/product-sizes-list.d.ts +13 -0
- package/dist/types/modules/product-list/components/filter-components/index.d.ts +7 -0
- package/dist/types/modules/product-list/components/filter-components/product-list-apply-filter-button.d.ts +1 -0
- package/dist/types/modules/product-list/components/filter-components/product-list-chip.d.ts +5 -0
- package/dist/types/modules/product-list/components/filter-components/product-list-filters-chips.d.ts +13 -0
- package/dist/types/modules/product-list/components/filter-components/product-list-fulfillment-filter.d.ts +14 -0
- package/dist/types/modules/product-list/components/{product-list-filters-subcomponents/product-list-price-filter.components.d.ts → filter-components/product-list-price-filter.d.ts} +1 -1
- package/dist/types/modules/product-list/components/filter-components/product-list-toggle-filters.d.ts +7 -0
- package/dist/types/modules/product-list/components/index.d.ts +6 -2
- package/dist/types/modules/product-list/components/product-list-card-loading.component.d.ts +2 -1
- package/dist/types/modules/product-list/components/product-list-card.component.d.ts +27 -30
- package/dist/types/modules/product-list/components/product-list-engraving.component.d.ts +12 -0
- package/dist/types/modules/product-list/components/product-list-filters.component.d.ts +55 -36
- package/dist/types/modules/product-list/components/product-list-product-engraving-lines.component.d.ts +22 -0
- package/dist/types/modules/product-list/components/product-list-product-pre-cart.component.d.ts +46 -0
- package/dist/types/modules/product-list/components/{product-list-filters-subcomponents/product-list-search.component.d.ts → product-list-search.component.d.ts} +11 -4
- package/dist/types/modules/product-list/product-list-filter.utils.d.ts +8 -0
- package/dist/types/modules/product-list/product-list.commands.d.ts +23 -8
- package/dist/types/modules/product-list/product-list.component.d.ts +11 -45
- package/dist/types/modules/product-list/product-list.constants.d.ts +38 -0
- package/dist/types/modules/product-list/product-list.interface.d.ts +20 -35
- package/dist/types/modules/product-list/styles/product-list-card.style.d.ts +1 -0
- package/dist/types/modules/product-list/styles/product-list-filters.style.d.ts +1 -0
- package/dist/types/modules/product-list/styles/register-styles.d.ts +1 -0
- package/dist/types/modules/theme-provider/constants/component-groupings.d.ts +1 -0
- package/dist/types/modules/theme-provider/constants/css-variable-mappings.d.ts +1 -1
- package/dist/types/modules/theme-provider/services/style-registry.service.d.ts +16 -0
- package/dist/types/modules/theme-provider/services/stylesheet-generator.service.d.ts +0 -1
- package/dist/types/modules/theme-provider/styles/register-styles.d.ts +1 -0
- package/dist/types/modules/theme-provider/theme-provider.service.d.ts +2 -2
- package/dist/types/modules/ui-components/drawer/drawer.component.d.ts +1 -0
- package/dist/types/modules/ui-components/engraving/engraving-form.component.d.ts +6 -1
- package/dist/types/modules/ui-components/engraving/engraving-view.component.d.ts +5 -1
- package/dist/types/modules/ui-components/input/index.d.ts +0 -1
- package/dist/types/modules/ui-components/input/input.component.d.ts +8 -1
- package/dist/types/modules/ui-components/lce-element/lce-element.component.d.ts +2 -1
- package/dist/types/modules/ui-components/promo-code-ticker/promo-code-ticker.component.d.ts +1 -1
- package/dist/types/modules/ui-components/purchase-min-alert/index.d.ts +0 -1
- package/dist/types/modules/ui-components/ui.commands.d.ts +5 -1
- package/dist/types/ssr/stub.checkout.d.ts +6 -0
- package/dist/types/ssr/stub.d.ts +10 -0
- package/dist/types/static/icon/check.icon.d.ts +2 -0
- package/dist/types/static/icon/index.d.ts +1 -0
- package/dist/types/utils/dom-compat.d.ts +2 -0
- package/dist/types/utils/format.d.ts +0 -14
- package/dist/types/utils/product-selection.d.ts +16 -0
- package/dist/types/utils/product.d.ts +10 -0
- package/docs/v1/README.md +210 -0
- package/docs/v1/api/actions/address-actions.md +281 -0
- package/docs/v1/api/actions/cart-actions.md +337 -0
- package/docs/v1/api/actions/checkout-actions.md +387 -0
- package/docs/v1/api/actions/product-actions.md +115 -0
- package/docs/v1/api/client.md +482 -0
- package/docs/v1/api/configuration.md +1 -0
- package/docs/v1/api/injection-methods.md +247 -0
- package/docs/v1/api/typescript-types.md +1 -0
- package/docs/v1/api/ui-helpers.md +200 -0
- package/docs/v1/examples/advanced-patterns.md +96 -0
- package/docs/v1/examples/checkout-flow.md +91 -0
- package/docs/v1/examples/custom-theming.md +63 -0
- package/docs/v1/examples/multi-product-page.md +90 -0
- package/docs/v1/examples/simple-product-page.md +89 -0
- package/docs/v1/getting-started/concepts.md +507 -0
- package/docs/v1/getting-started/installation.md +328 -0
- package/docs/v1/getting-started/quick-start.md +405 -0
- package/docs/v1/guides/address-component.md +431 -0
- package/docs/v1/guides/best-practices.md +324 -0
- package/docs/v1/guides/cart-component.md +737 -0
- package/docs/v1/guides/checkout-component.md +672 -0
- package/docs/v1/guides/events.md +926 -0
- package/docs/v1/guides/product-component.md +686 -0
- package/docs/v1/guides/product-list-component.md +598 -0
- package/docs/v1/guides/theming.md +216 -0
- package/docs/v1/integration/angular.md +39 -0
- package/docs/v1/integration/laravel.md +41 -0
- package/docs/v1/integration/nextjs.md +69 -0
- package/docs/v1/integration/proxy-setup.md +89 -0
- package/docs/v1/integration/react.md +64 -0
- package/docs/v1/integration/vanilla-js.md +84 -0
- package/docs/v1/integration/vue.md +58 -0
- package/docs/v1/reference/browser-support.md +44 -0
- package/docs/v1/reference/error-handling.md +70 -0
- package/docs/v1/reference/performance.md +54 -0
- package/docs/v1/reference/troubleshooting.md +72 -0
- package/package.json +28 -17
- package/dist/types/elements-builder-client.d.ts +0 -2
- package/dist/types/elements-client.d.ts +0 -2
- package/dist/types/enums/cloud.enum.d.ts +0 -106
- package/dist/types/interfaces/cloud/cart.interface.d.ts +0 -132
- package/dist/types/interfaces/cloud/catalog.interface.d.ts +0 -42
- package/dist/types/interfaces/cloud/checkout.interface.d.ts +0 -211
- package/dist/types/interfaces/cloud/core.interface.d.ts +0 -22
- package/dist/types/interfaces/cloud/index.d.ts +0 -5
- package/dist/types/interfaces/cloud/retailer.interface.d.ts +0 -67
- package/dist/types/interfaces/cloud/user.interface.d.ts +0 -100
- package/dist/types/interfaces/core.interface.d.ts +0 -111
- package/dist/types/modules/cart/cart.commands.helper.d.ts +0 -9
- package/dist/types/modules/checkout/components/checkout.type.d.ts +0 -4
- package/dist/types/modules/product-list/components/product-list-filters-subcomponents/index.d.ts +0 -6
- package/dist/types/modules/product-list/components/product-list-filters-subcomponents/product-list-apply-filter-button.component.d.ts +0 -1
- package/dist/types/modules/product-list/components/product-list-filters-subcomponents/product-list-delivery-options-filter.components.d.ts +0 -16
- package/dist/types/modules/product-list/components/product-list-filters-subcomponents/product-list-toggle-filters.components.d.ts +0 -18
- package/dist/types/modules/theme-provider/styles/address/index.d.ts +0 -1
- package/dist/types/modules/theme-provider/styles/cart/index.d.ts +0 -1
- package/dist/types/modules/theme-provider/styles/checkout/index.d.ts +0 -1
- package/dist/types/modules/theme-provider/styles/product/index.d.ts +0 -3
- package/dist/types/modules/theme-provider/styles/product-list/index.d.ts +0 -1
- package/dist/types/modules/theme-provider/styles/ui/index.d.ts +0 -3
- package/dist/types/modules/ui-components/input/birthdate-input.component.d.ts +0 -53
- package/dist/types/modules/ui-components/purchase-min-alert/helpers.d.ts +0 -7
- package/dist/types/utils/helper.d.ts +0 -27
- package/docs/ACTIONS.md +0 -1300
- package/docs/BROWSER_SUPPORT.md +0 -279
- package/docs/CONFIGURATION.md +0 -853
- package/docs/DOCUMENTATION_INDEX.md +0 -311
- package/docs/EVENTS.md +0 -798
- package/docs/PROXY.md +0 -228
- package/docs/THEMING.md +0 -592
- package/docs/TROUBLESHOOTING.md +0 -793
- package/umd/elements.js +0 -1
- /package/dist/types/{auto-initialize.d.ts → auto-initialize/main.d.ts} +0 -0
- /package/dist/types/modules/{theme-provider/styles/address → address/styles}/address.style.d.ts +0 -0
- /package/dist/types/modules/{theme-provider/styles/cart → cart/styles}/cart.style.d.ts +0 -0
- /package/dist/types/modules/{theme-provider/styles/checkout → checkout/styles}/checkout.style.d.ts +0 -0
- /package/dist/types/modules/{theme-provider/styles/product → product/styles}/image-carousel.style.d.ts +0 -0
- /package/dist/types/modules/{theme-provider/styles/product → product/styles}/product.style.d.ts +0 -0
- /package/dist/types/modules/{theme-provider/styles/product → product/styles}/retailers.style.d.ts +0 -0
- /package/dist/types/modules/product-list/components/{product-list-filters-subcomponents/product-list-checkbox-filter.components.d.ts → filter-components/product-list-checkbox-filter.d.ts} +0 -0
- /package/dist/types/modules/{theme-provider/styles/product-list → product-list/styles}/product-list.style.d.ts +0 -0
- /package/dist/types/modules/{theme-provider/styles/ui → ui-components/styles}/drawer.style.d.ts +0 -0
- /package/dist/types/modules/{theme-provider/styles/ui → ui-components/styles}/loading.style.d.ts +0 -0
- /package/dist/types/modules/{theme-provider/styles/ui → ui-components/styles}/promo-code-ticker.style.d.ts +0 -0
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# Error Handling
|
|
2
|
+
|
|
3
|
+
The SDK emits errors as events and (when applicable) throws a custom `SDKError`. Your app should handle both.
|
|
4
|
+
|
|
5
|
+
## SDKError
|
|
6
|
+
|
|
7
|
+
All SDK errors use a custom error class:
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
class SDKError extends Error {
|
|
11
|
+
constructor(message: string, reThrow?: boolean);
|
|
12
|
+
name: 'SDKError';
|
|
13
|
+
isSdk: boolean;
|
|
14
|
+
reThrow: boolean;
|
|
15
|
+
}
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Catching Errors
|
|
19
|
+
|
|
20
|
+
```javascript
|
|
21
|
+
try {
|
|
22
|
+
await window.LiquidCommerce.elements.injectProductElement([
|
|
23
|
+
{ containerId: 'product', identifier: 'invalid_id' }
|
|
24
|
+
]);
|
|
25
|
+
} catch (error) {
|
|
26
|
+
if (error.name === 'SDKError') {
|
|
27
|
+
console.error('SDK Error:', error);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Error Isolation
|
|
33
|
+
|
|
34
|
+
The SDK catches and contains its own errors so your app keeps running:
|
|
35
|
+
|
|
36
|
+
```javascript
|
|
37
|
+
window.LiquidCommerce.elements.actions.cart.addProduct([/* invalid */]);
|
|
38
|
+
console.log('App still working');
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Error Events
|
|
42
|
+
|
|
43
|
+
Listen for failure events to show user-friendly messages or trigger retries:
|
|
44
|
+
|
|
45
|
+
```javascript
|
|
46
|
+
// Cart add failed
|
|
47
|
+
window.addEventListener('lce:actions.cart_product_add_failed', (event) => {
|
|
48
|
+
console.error('Failed to add:', event.detail.data.error);
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
// Address failed
|
|
52
|
+
window.addEventListener('lce:actions.address_failed', (event) => {
|
|
53
|
+
console.error('Address error:', event.detail.data.error);
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
// Checkout submit failed
|
|
57
|
+
window.addEventListener('lce:actions.checkout_submit_failed', (event) => {
|
|
58
|
+
console.error('Checkout failed:', event.detail.data.error);
|
|
59
|
+
});
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## UI Errors
|
|
63
|
+
|
|
64
|
+
When a component fails to load, the SDK renders an error view inside the container and logs details to the console.
|
|
65
|
+
|
|
66
|
+
## Related Docs
|
|
67
|
+
|
|
68
|
+
- [Events Guide](../guides/events.md)
|
|
69
|
+
- [Client API](../api/client.md)
|
|
70
|
+
- [Troubleshooting](./troubleshooting.md)
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Performance Guide
|
|
2
|
+
|
|
3
|
+
The SDK is optimized out of the box. These tweaks help reduce load time and layout shift.
|
|
4
|
+
|
|
5
|
+
## 1) Load Non-Blocking
|
|
6
|
+
|
|
7
|
+
```html
|
|
8
|
+
<script defer data-liquid-commerce-elements ...></script>
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## 2) Use the Checkout-Only Build When Appropriate
|
|
12
|
+
|
|
13
|
+
If you only need checkout, use the tree-shaken build:
|
|
14
|
+
|
|
15
|
+
```javascript
|
|
16
|
+
import { ElementsCheckout } from '@liquidcommerce/elements-sdk/checkout';
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## 3) Inject Components When Needed
|
|
20
|
+
|
|
21
|
+
Inject above-the-fold products first, then load the rest:
|
|
22
|
+
|
|
23
|
+
```javascript
|
|
24
|
+
await client.injectProductElement([
|
|
25
|
+
{ containerId: 'hero-product', identifier: '001' }
|
|
26
|
+
]);
|
|
27
|
+
|
|
28
|
+
setTimeout(async () => {
|
|
29
|
+
await client.injectProductElement([
|
|
30
|
+
{ containerId: 'related-1', identifier: '002' },
|
|
31
|
+
{ containerId: 'related-2', identifier: '003' }
|
|
32
|
+
]);
|
|
33
|
+
}, 1000);
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## 4) Reserve Space to Prevent Layout Shift
|
|
37
|
+
|
|
38
|
+
```css
|
|
39
|
+
#product {
|
|
40
|
+
min-height: 600px;
|
|
41
|
+
}
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## 5) Let the SDK Handle Media Optimization
|
|
45
|
+
|
|
46
|
+
The SDK automatically:
|
|
47
|
+
- Lazy loads images
|
|
48
|
+
- Uses responsive image sizes
|
|
49
|
+
- Virtualizes carousel images
|
|
50
|
+
|
|
51
|
+
## Related Docs
|
|
52
|
+
|
|
53
|
+
- [Best Practices](../guides/best-practices.md)
|
|
54
|
+
- [Product Component](../guides/product-component.md)
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# Troubleshooting
|
|
2
|
+
|
|
3
|
+
Common setup issues and how to resolve them.
|
|
4
|
+
|
|
5
|
+
## SDK Script Not Loading
|
|
6
|
+
|
|
7
|
+
**Symptoms:** 404/CORS in Network tab, `window.LiquidCommerce.elements` is undefined.
|
|
8
|
+
|
|
9
|
+
**Fixes:**
|
|
10
|
+
- Verify the script URL and that the tag includes `data-liquid-commerce-elements`.
|
|
11
|
+
- Check ad blockers; proxy the API if needed.
|
|
12
|
+
- Confirm `data-env` is set correctly.
|
|
13
|
+
|
|
14
|
+
## Web Components Error
|
|
15
|
+
|
|
16
|
+
**Symptoms:** Console logs about Custom Elements or Shadow DOM.
|
|
17
|
+
|
|
18
|
+
**Fix:** Add the Web Components polyfill before the SDK:
|
|
19
|
+
|
|
20
|
+
```html
|
|
21
|
+
<script src="https://cdn.jsdelivr.net/npm/@webcomponents/webcomponentsjs@2/webcomponents-bundle.js"></script>
|
|
22
|
+
<script defer data-liquid-commerce-elements ...></script>
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Product Not Showing
|
|
26
|
+
|
|
27
|
+
**Symptoms:** Empty container or error view.
|
|
28
|
+
|
|
29
|
+
**Fixes:**
|
|
30
|
+
- Confirm the container ID matches your HTML.
|
|
31
|
+
- Verify the product identifier exists.
|
|
32
|
+
- Check for errors in the console or network tab.
|
|
33
|
+
|
|
34
|
+
## Cart Drawer Not Opening
|
|
35
|
+
|
|
36
|
+
**Symptoms:** Add to cart works but cart stays closed.
|
|
37
|
+
|
|
38
|
+
**Fixes:**
|
|
39
|
+
- Ensure a cart button is configured or call `window.LiquidCommerce.elements.actions.cart.openCart()`.
|
|
40
|
+
- Check for JavaScript errors in the console.
|
|
41
|
+
|
|
42
|
+
## Checkout Issues
|
|
43
|
+
|
|
44
|
+
**Symptoms:** Checkout fails to load or submit.
|
|
45
|
+
|
|
46
|
+
**Fixes:**
|
|
47
|
+
- Verify you are on a supported browser.
|
|
48
|
+
- Look for `checkout_*_failed` events in the console.
|
|
49
|
+
- Check for Stripe-related errors in the browser console.
|
|
50
|
+
|
|
51
|
+
## Address/Availability Problems
|
|
52
|
+
|
|
53
|
+
**Symptoms:** Products show unavailable or address prompts fail.
|
|
54
|
+
|
|
55
|
+
**Fixes:**
|
|
56
|
+
- Make sure the address is set and valid.
|
|
57
|
+
- Listen for `lce:actions.address_failed` to surface errors.
|
|
58
|
+
|
|
59
|
+
## SSR / Server-Side Rendering
|
|
60
|
+
|
|
61
|
+
**Symptoms:** Console warning "This SDK is designed for the browser. Calls made during SSR return null."
|
|
62
|
+
|
|
63
|
+
This is expected behavior. The SDK ships an SSR stub that is automatically resolved when bundled for Node.js (via the `node` export condition in `package.json`). The stub exports all types and enums for TypeScript compatibility and returns `null` from factory functions (`Elements`, `ElementsBuilder`, `ElementsCheckout`).
|
|
64
|
+
|
|
65
|
+
**No action required** — initialize the SDK in a client-only lifecycle hook (`useEffect`, `onMounted`, etc.) and the real client will activate in the browser.
|
|
66
|
+
|
|
67
|
+
## Related Docs
|
|
68
|
+
|
|
69
|
+
- [Installation](../getting-started/installation.md)
|
|
70
|
+
- [Browser Support](./browser-support.md)
|
|
71
|
+
- [Error Handling](./error-handling.md)
|
|
72
|
+
- [Proxy Setup](../integration/proxy-setup.md)
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "LiquidCommerce Elements SDK",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": "LiquidCommerce Team",
|
|
6
|
-
"version": "2.6.0-beta.
|
|
6
|
+
"version": "2.6.0-beta.60",
|
|
7
7
|
"homepage": "https://docs.liquidcommerce.co/elements-sdk",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -13,22 +13,28 @@
|
|
|
13
13
|
"url": "https://github.com/liquidcommerce/elements-sdk/issues"
|
|
14
14
|
},
|
|
15
15
|
"module": "./dist/index.esm.js",
|
|
16
|
-
"browser": "./umd/elements.js",
|
|
17
16
|
"types": "./dist/types/index.d.ts",
|
|
18
17
|
"packageManager": "pnpm@10.0.0",
|
|
19
18
|
"exports": {
|
|
20
19
|
".": {
|
|
21
20
|
"types": "./dist/types/index.d.ts",
|
|
21
|
+
"node": "./dist/ssr-stub.esm.js",
|
|
22
|
+
"browser": "./dist/index.esm.js",
|
|
22
23
|
"import": "./dist/index.esm.js",
|
|
23
|
-
"browser": "./umd/elements.js",
|
|
24
24
|
"default": "./dist/index.esm.js"
|
|
25
25
|
},
|
|
26
|
+
"./checkout": {
|
|
27
|
+
"types": "./dist/types/index.checkout.d.ts",
|
|
28
|
+
"node": "./dist/ssr-stub.checkout.esm.js",
|
|
29
|
+
"browser": "./dist/index.checkout.esm.js",
|
|
30
|
+
"import": "./dist/index.checkout.esm.js",
|
|
31
|
+
"default": "./dist/index.checkout.esm.js"
|
|
32
|
+
},
|
|
26
33
|
"./package.json": "./package.json"
|
|
27
34
|
},
|
|
28
35
|
"files": [
|
|
29
36
|
"dist",
|
|
30
|
-
"
|
|
31
|
-
"docs",
|
|
37
|
+
"docs/v1",
|
|
32
38
|
"README.md",
|
|
33
39
|
"LICENSE"
|
|
34
40
|
],
|
|
@@ -39,21 +45,26 @@
|
|
|
39
45
|
"type": "module",
|
|
40
46
|
"sideEffects": [
|
|
41
47
|
"dist/index.esm.js",
|
|
48
|
+
"dist/index.checkout.esm.js",
|
|
42
49
|
"umd/elements.js",
|
|
50
|
+
"umd/elements-checkout.js",
|
|
43
51
|
"src/index.ts",
|
|
44
|
-
"src/index.umd.ts"
|
|
52
|
+
"src/index.umd.ts",
|
|
53
|
+
"src/index.checkout.ts",
|
|
54
|
+
"src/index.checkout.umd.ts"
|
|
45
55
|
],
|
|
46
56
|
"scripts": {
|
|
47
57
|
"build": "rollup -c",
|
|
48
|
-
"build:
|
|
58
|
+
"build:checkout": "rollup -c rollup.config.checkout.mjs",
|
|
59
|
+
"build:all": "pnpm build && pnpm build:checkout",
|
|
49
60
|
"dev": "rollup -c -w",
|
|
50
61
|
"type-check": "tsc --noEmit",
|
|
51
62
|
"lint": "pnpm biome lint --write",
|
|
52
63
|
"format": "biome format --write",
|
|
53
64
|
"check": "pnpm biome check --write .",
|
|
54
|
-
"fl": "pnpm check && pnpm
|
|
65
|
+
"fl": "pnpm check && pnpm tsc --noEmit",
|
|
55
66
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
|
|
56
|
-
"clean": "rm -rf dist umd node_modules && pnpm install && pnpm build",
|
|
67
|
+
"clean": "rm -rf dist umd node_modules && pnpm install && pnpm build:all",
|
|
57
68
|
"prepublishOnly": "pnpm run build",
|
|
58
69
|
"deprecate:old": "npm deprecate @liquidcommerceteam/elements-sdk@\"*\" \"Package moved to @liquidcommerce/elements-sdk\"",
|
|
59
70
|
"prepare": "husky"
|
|
@@ -70,9 +81,9 @@
|
|
|
70
81
|
"embeddable commerce"
|
|
71
82
|
],
|
|
72
83
|
"devDependencies": {
|
|
73
|
-
"@biomejs/biome": "2.
|
|
74
|
-
"@commitlint/cli": "^20.
|
|
75
|
-
"@commitlint/config-conventional": "^20.
|
|
84
|
+
"@biomejs/biome": "^2.4.4",
|
|
85
|
+
"@commitlint/cli": "^20.4.2",
|
|
86
|
+
"@commitlint/config-conventional": "^20.4.2",
|
|
76
87
|
"@rollup/plugin-alias": "^6.0.0",
|
|
77
88
|
"@rollup/plugin-commonjs": "^29.0.0",
|
|
78
89
|
"@rollup/plugin-json": "^6.1.0",
|
|
@@ -82,18 +93,18 @@
|
|
|
82
93
|
"@semantic-release/changelog": "^6.0.3",
|
|
83
94
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
84
95
|
"@semantic-release/git": "^10.0.1",
|
|
85
|
-
"@semantic-release/github": "^12.0.
|
|
86
|
-
"@semantic-release/npm": "^13.1.
|
|
96
|
+
"@semantic-release/github": "^12.0.6",
|
|
97
|
+
"@semantic-release/npm": "^13.1.4",
|
|
87
98
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
88
99
|
"@types/core-js": "^2.5.8",
|
|
89
|
-
"@types/node": "^
|
|
100
|
+
"@types/node": "^25.3.0",
|
|
90
101
|
"conventional-changelog-cli": "^5.0.0",
|
|
91
102
|
"husky": "^9.1.7",
|
|
92
103
|
"process": "^0.11.10",
|
|
93
|
-
"rollup": "^4.
|
|
104
|
+
"rollup": "^4.59.0",
|
|
94
105
|
"rollup-obfuscator": "^4.1.1",
|
|
95
106
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
96
|
-
"semantic-release": "^25.0.
|
|
107
|
+
"semantic-release": "^25.0.3",
|
|
97
108
|
"ts-node": "^10.9.2",
|
|
98
109
|
"typescript": "^5.9.3"
|
|
99
110
|
},
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
import type { ILiquidCommerceElementsBuilderClient, ILiquidCommerceElementsBuilderConfig } from '@/interfaces/core.interface';
|
|
2
|
-
export declare function ElementsBuilder(apiKey: string, config: ILiquidCommerceElementsBuilderConfig): Promise<ILiquidCommerceElementsBuilderClient | null>;
|
|
@@ -1,106 +0,0 @@
|
|
|
1
|
-
export declare enum DAYS_OF_WEEK {
|
|
2
|
-
MONDAY = "monday",
|
|
3
|
-
TUESDAY = "tuesday",
|
|
4
|
-
WEDNESDAY = "wednesday",
|
|
5
|
-
THURSDAY = "thursday",
|
|
6
|
-
FRIDAY = "friday",
|
|
7
|
-
SATURDAY = "saturday",
|
|
8
|
-
SUNDAY = "sunday"
|
|
9
|
-
}
|
|
10
|
-
export declare const CART_EVENT_ENUM: {
|
|
11
|
-
readonly OOS: "OutOfStock";
|
|
12
|
-
readonly ITEMS_NOT_ADDED: "ItemsNotAdded";
|
|
13
|
-
readonly ITEMS_REQUESTED_NOT_ADDED: "ItemsRequestedNotAdded";
|
|
14
|
-
readonly ITEM_NOT_ENGRAVED: "ItemEngravingError";
|
|
15
|
-
readonly ADDRESS_CHANGE: "AddressChange";
|
|
16
|
-
readonly LOCATION_AVAILABILITY: "LocationAvailability";
|
|
17
|
-
readonly PARTNER_PRODUCT_CONFIGS: "PartnerProductConfigs";
|
|
18
|
-
readonly REMOVED_EXISTING_ITEMS: "RemovedExistingCartItems";
|
|
19
|
-
readonly RETAILER_MIN: "RetailerMinNotMet";
|
|
20
|
-
readonly NO_ITEMS_IN_CART: "NoItemsInCart";
|
|
21
|
-
readonly INVALID_ID: "InvalidId";
|
|
22
|
-
readonly NO_ID: "NoId";
|
|
23
|
-
readonly CART_CHECKOUT_PROCESSED: "CartCheckoutProcessed";
|
|
24
|
-
readonly NEW_CART: "NewCart";
|
|
25
|
-
readonly DEFAULT: "CartError";
|
|
26
|
-
readonly ITEM_QTY_CHANGE: "ItemQuantityChange";
|
|
27
|
-
readonly ITEM_ID_NOT_FOUND: "ItemIdNotFound";
|
|
28
|
-
readonly ITEMS_REMOVED: "ItemsRemoved";
|
|
29
|
-
readonly COUPON_PROCESSING_ERROR: "CouponProcessingError";
|
|
30
|
-
readonly COUPON_NOT_FOUND: "CouponNotFound";
|
|
31
|
-
readonly COUPON_EXPIRED: "CouponExpired";
|
|
32
|
-
readonly NO_APPLICABLE_DISCOUNT: "NoApplicableDiscount";
|
|
33
|
-
readonly COUPON_NOT_STARTED: "CouponNotStarted";
|
|
34
|
-
readonly MINIMUM_ORDER_VALUE_NOT_MET: "MinimumOrderValueNotMet";
|
|
35
|
-
readonly MINIMUM_ORDER_UNITS_NOT_MET: "MinimumOrderUnitsNotMet";
|
|
36
|
-
readonly MINIMUM_DISTINCT_ITEMS_NOT_MET: "MinimumDistinctItemsNotMet";
|
|
37
|
-
readonly QUOTA_EXCEEDED: "QuotaExceeded";
|
|
38
|
-
readonly USER_LIMIT_EXCEEDED: "UserLimitExceeded";
|
|
39
|
-
readonly NOT_FIRST_PURCHASE: "NotFirstPurchase";
|
|
40
|
-
readonly INVALID_COUPON: "InvalidCoupon";
|
|
41
|
-
readonly INVALID_MEMBERSHIP: "InvalidMembership";
|
|
42
|
-
readonly INVALID_DOMAIN: "InvalidDomain";
|
|
43
|
-
readonly INVALID_REQUIREMENTS: "InvalidRequirements";
|
|
44
|
-
readonly INVALID_ORGANIZATION: "InvalidOrganization";
|
|
45
|
-
readonly PRODUCT_NOT_ELIGIBLE: "ProductNotEligible";
|
|
46
|
-
readonly NOT_ENOUGH_PREVIOUS_ORDERS: "NotEnoughPreviousOrders";
|
|
47
|
-
readonly PRESALE_ITEMS_NOT_ALLOWED: "PresaleItemsNotAllowed";
|
|
48
|
-
readonly PRESALE_LIMIT_EXCEEDED: "PresaleLimitExceeded";
|
|
49
|
-
readonly PRESALE_NOT_STARTED: "PresaleNotStarted";
|
|
50
|
-
readonly PRESALE_EXPIRED: "PresaleExpired";
|
|
51
|
-
readonly PRESALE_MIXED_CART: "PresaleMixedCart";
|
|
52
|
-
readonly RETAILER_DOES_NOT_ALLOW_PROMOS: "RetailerDoesNotAllowPromos";
|
|
53
|
-
readonly RETAILERS_DO_NOT_ALLOW_PROMOS: "RetailersDoNotAllowPromos";
|
|
54
|
-
};
|
|
55
|
-
export type CartEventEnum = (typeof CART_EVENT_ENUM)[keyof typeof CART_EVENT_ENUM];
|
|
56
|
-
export declare const CHECKOUT_EVENT_ENUM: {
|
|
57
|
-
readonly ERROR_PROCESSING_GIFT_CARDS: "ErrorProcessingGiftCards";
|
|
58
|
-
readonly INVALID_GIFT_CARD_CODE: "InvalidGiftCardCodes";
|
|
59
|
-
readonly INVALID_GIFT_CARD_PARTNER: "InvalidGiftCardPartner";
|
|
60
|
-
readonly INACTIVE_GIFT_CARD: "InactiveGiftCard";
|
|
61
|
-
readonly GIFT_CARD_ALREADY_IN_USE: "GiftCardAlreadyInUse";
|
|
62
|
-
readonly GIFT_CARD_EXPIRED: "GiftCardExpired";
|
|
63
|
-
readonly GIFT_CARD_BALANCE_DEPLETED: "GiftCardBalanceDepleted";
|
|
64
|
-
readonly RETAILER_ONDEMAND_HOURS_NOT_AVAILABLE: "RetailerOnDemandHoursNotAvailable";
|
|
65
|
-
readonly ITEM_QTY_CHANGE: "ItemQuantityChange";
|
|
66
|
-
readonly MAX_QUANTITY_PER_ORDER_EXCEEDED: "MaxQuantityPerOrderExceeded";
|
|
67
|
-
readonly RETAILER_DOES_NOT_ALLOW_PROMOS: "RetailerDoesNotAllowPromos";
|
|
68
|
-
readonly RETAILERS_DO_NOT_ALLOW_PROMOS: "RetailersDoNotAllowPromos";
|
|
69
|
-
readonly RETAILER_DOES_NOT_ALLOW_GIFT_CARDS: "RetailerDoesNotAllowGiftCards";
|
|
70
|
-
readonly RETAILERS_DO_NOT_ALLOW_GIFT_CARDS: "RetailersDoNotAllowGiftCards";
|
|
71
|
-
};
|
|
72
|
-
export type CheckoutEventEnum = (typeof CHECKOUT_EVENT_ENUM)[keyof typeof CHECKOUT_EVENT_ENUM];
|
|
73
|
-
export declare const ENUM_ADDRESS_TYPE: {
|
|
74
|
-
readonly SHIPPING: "shipping";
|
|
75
|
-
readonly BILLING: "billing";
|
|
76
|
-
};
|
|
77
|
-
export type AddressType = (typeof ENUM_ADDRESS_TYPE)[keyof typeof ENUM_ADDRESS_TYPE];
|
|
78
|
-
export declare enum ENUM_FILTER_KEYS {
|
|
79
|
-
BRANDS = "brands",
|
|
80
|
-
FLAVOR = "flavor",
|
|
81
|
-
FULFILLMENT = "fulfillment",
|
|
82
|
-
TAGS = "tags",
|
|
83
|
-
REGION = "region",
|
|
84
|
-
VARIETY = "variety",
|
|
85
|
-
ENGRAVING = "engraving",
|
|
86
|
-
PRICE = "price",
|
|
87
|
-
PRESALE = "presale",
|
|
88
|
-
AVAILABILITY = "availability",
|
|
89
|
-
CATEGORIES = "categories",
|
|
90
|
-
SIZES = "sizes",
|
|
91
|
-
COLORS = "colors",
|
|
92
|
-
APPELLATION = "appellation",
|
|
93
|
-
COUNTRY = "country",
|
|
94
|
-
VINTAGE = "vintage",
|
|
95
|
-
MATERIALS = "materials",
|
|
96
|
-
COLLECTION_TAGS = "collectionTags"
|
|
97
|
-
}
|
|
98
|
-
export interface IFilterValue {
|
|
99
|
-
value: string;
|
|
100
|
-
count: number;
|
|
101
|
-
}
|
|
102
|
-
export type FacetFilterKeys = ENUM_FILTER_KEYS.BRANDS | ENUM_FILTER_KEYS.FLAVOR | ENUM_FILTER_KEYS.REGION | ENUM_FILTER_KEYS.VARIETY | ENUM_FILTER_KEYS.ENGRAVING | ENUM_FILTER_KEYS.PRESALE | ENUM_FILTER_KEYS.PRICE | ENUM_FILTER_KEYS.AVAILABILITY | ENUM_FILTER_KEYS.CATEGORIES | ENUM_FILTER_KEYS.SIZES | ENUM_FILTER_KEYS.COLORS | ENUM_FILTER_KEYS.APPELLATION | ENUM_FILTER_KEYS.COUNTRY | ENUM_FILTER_KEYS.VINTAGE | ENUM_FILTER_KEYS.MATERIALS | ENUM_FILTER_KEYS.TAGS;
|
|
103
|
-
export interface IFilterSchema {
|
|
104
|
-
filterCategory: FacetFilterKeys;
|
|
105
|
-
filterValues: IFilterValue[];
|
|
106
|
-
}
|
|
@@ -1,132 +0,0 @@
|
|
|
1
|
-
import type { CartEventEnum } from '@/enums';
|
|
2
|
-
import type { ILocation } from '@/interfaces/api/address.interface';
|
|
3
|
-
import type { IProduct, IProductPresale } from '@/interfaces/api/product.interface';
|
|
4
|
-
import type { IRetailer } from './retailer.interface';
|
|
5
|
-
export interface ICartItemEngraving {
|
|
6
|
-
isEngravable: boolean;
|
|
7
|
-
hasEngraving: boolean;
|
|
8
|
-
fee: number;
|
|
9
|
-
maxCharsPerLine: number;
|
|
10
|
-
maxLines: number;
|
|
11
|
-
location: string;
|
|
12
|
-
lines: string[];
|
|
13
|
-
}
|
|
14
|
-
export interface ICartItemGiftCart {
|
|
15
|
-
sender: string;
|
|
16
|
-
message: string;
|
|
17
|
-
recipients: string[];
|
|
18
|
-
sendDate: string;
|
|
19
|
-
}
|
|
20
|
-
export interface ICartItemAttributes {
|
|
21
|
-
engraving: ICartItemEngraving;
|
|
22
|
-
presale: IProductPresale;
|
|
23
|
-
giftCard: ICartItemGiftCart;
|
|
24
|
-
}
|
|
25
|
-
export interface ICartItem extends Partial<Omit<IProduct, 'attributes'>> {
|
|
26
|
-
id: string;
|
|
27
|
-
retailerId: string;
|
|
28
|
-
fulfillmentId: string;
|
|
29
|
-
variantId: string;
|
|
30
|
-
liquidId: string;
|
|
31
|
-
salsifyGrouping: string;
|
|
32
|
-
salsifyPid?: string;
|
|
33
|
-
partNumber: string;
|
|
34
|
-
upc: string;
|
|
35
|
-
sku: string;
|
|
36
|
-
name: string;
|
|
37
|
-
brand: string;
|
|
38
|
-
size: string;
|
|
39
|
-
volume: string;
|
|
40
|
-
uom: string;
|
|
41
|
-
abv: string;
|
|
42
|
-
proof: string;
|
|
43
|
-
catPath: string;
|
|
44
|
-
pack: boolean;
|
|
45
|
-
packDesc: string;
|
|
46
|
-
container: string;
|
|
47
|
-
containerType: string;
|
|
48
|
-
quantity: number;
|
|
49
|
-
maxQuantity: number;
|
|
50
|
-
unitPrice: number;
|
|
51
|
-
price: number;
|
|
52
|
-
scheduledFor: string | Date;
|
|
53
|
-
availableAt: string | Date;
|
|
54
|
-
images: string[];
|
|
55
|
-
mainImage: string;
|
|
56
|
-
attributes: ICartItemAttributes;
|
|
57
|
-
}
|
|
58
|
-
export interface ICartAttributesPromoCode {
|
|
59
|
-
value: string;
|
|
60
|
-
discount: number;
|
|
61
|
-
freeDelivery: boolean;
|
|
62
|
-
freeServiceFee: boolean;
|
|
63
|
-
freeShipping: boolean;
|
|
64
|
-
}
|
|
65
|
-
export interface ICartAttributesAmountsFees {
|
|
66
|
-
shipping: number;
|
|
67
|
-
onDemand: number;
|
|
68
|
-
}
|
|
69
|
-
export interface ICartAttributesAmountsDiscounts {
|
|
70
|
-
shipping: number;
|
|
71
|
-
onDemand: number;
|
|
72
|
-
engraving: number;
|
|
73
|
-
service: number;
|
|
74
|
-
products: number;
|
|
75
|
-
}
|
|
76
|
-
export interface ICartAttributesAmounts {
|
|
77
|
-
fees: ICartAttributesAmountsFees;
|
|
78
|
-
discounts: ICartAttributesAmountsDiscounts;
|
|
79
|
-
}
|
|
80
|
-
export interface ICartAttributes {
|
|
81
|
-
promoCode: ICartAttributesPromoCode;
|
|
82
|
-
amounts: ICartAttributesAmounts;
|
|
83
|
-
}
|
|
84
|
-
export interface ICartRetailer extends IRetailer {
|
|
85
|
-
platformFee: number;
|
|
86
|
-
engravingFee: number;
|
|
87
|
-
deliveryFee: number;
|
|
88
|
-
shippingFee: number;
|
|
89
|
-
subtotal: number;
|
|
90
|
-
total: number;
|
|
91
|
-
}
|
|
92
|
-
export interface ICartEvent {
|
|
93
|
-
type: CartEventEnum;
|
|
94
|
-
message: string;
|
|
95
|
-
items?: Array<Partial<ICartItem>>;
|
|
96
|
-
}
|
|
97
|
-
export interface ICart {
|
|
98
|
-
id: string;
|
|
99
|
-
quantity: number;
|
|
100
|
-
platformFee: number;
|
|
101
|
-
deliveryFee: number;
|
|
102
|
-
engravingFee: number;
|
|
103
|
-
shippingFee: number;
|
|
104
|
-
discounts: number;
|
|
105
|
-
giftCardTotal: number;
|
|
106
|
-
subtotal: number;
|
|
107
|
-
total: number;
|
|
108
|
-
isPresaleLocked: boolean;
|
|
109
|
-
presaleExpiresAt: string | null;
|
|
110
|
-
createdAt: string | Date;
|
|
111
|
-
updatedAt: string | Date;
|
|
112
|
-
items: ICartItem[];
|
|
113
|
-
loc: ILocation;
|
|
114
|
-
retailers: ICartRetailer[];
|
|
115
|
-
attributes: ICartAttributes;
|
|
116
|
-
events: ICartEvent[];
|
|
117
|
-
}
|
|
118
|
-
export interface ICartUpdateItem {
|
|
119
|
-
id?: string;
|
|
120
|
-
upc?: string;
|
|
121
|
-
partNumber: string;
|
|
122
|
-
sku?: string;
|
|
123
|
-
quantity: number;
|
|
124
|
-
fulfillmentId: string;
|
|
125
|
-
engravingLines?: string[];
|
|
126
|
-
scheduledFor?: string | Date;
|
|
127
|
-
}
|
|
128
|
-
export interface ICartUpdateParams {
|
|
129
|
-
id: string;
|
|
130
|
-
items: ICartUpdateItem[];
|
|
131
|
-
promoCode?: string;
|
|
132
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import type { IProduct, IRetailer } from '@/interfaces/api/product.interface';
|
|
2
|
-
export declare enum ENUM_NAVIGATION_ORDER_DIRECTION_TYPE {
|
|
3
|
-
ASC = "asc",
|
|
4
|
-
DESC = "desc"
|
|
5
|
-
}
|
|
6
|
-
export declare enum ENUM_ORDER_BY {
|
|
7
|
-
PRICE = "price"
|
|
8
|
-
}
|
|
9
|
-
export interface ICatalogParams {
|
|
10
|
-
search?: string;
|
|
11
|
-
pageToken?: string;
|
|
12
|
-
entity?: string;
|
|
13
|
-
page?: number;
|
|
14
|
-
perPage?: number;
|
|
15
|
-
visitorId?: string;
|
|
16
|
-
retailers?: string[];
|
|
17
|
-
orderBy?: ENUM_ORDER_BY;
|
|
18
|
-
orderDirection?: ENUM_NAVIGATION_ORDER_DIRECTION_TYPE;
|
|
19
|
-
filters?: Array<Record<any, any>>;
|
|
20
|
-
[key: string]: any;
|
|
21
|
-
}
|
|
22
|
-
export interface ICatalog {
|
|
23
|
-
retailers: Record<string, IRetailer>;
|
|
24
|
-
products?: IProduct[];
|
|
25
|
-
navigation?: INavigationSchema;
|
|
26
|
-
}
|
|
27
|
-
export interface ICursorSchema {
|
|
28
|
-
nextPageToken: string;
|
|
29
|
-
previousPageToken: string;
|
|
30
|
-
}
|
|
31
|
-
export interface INavigationSchema {
|
|
32
|
-
id: string;
|
|
33
|
-
correctedQuery: string;
|
|
34
|
-
attributionToken: string;
|
|
35
|
-
currentPage: number;
|
|
36
|
-
totalPages: number;
|
|
37
|
-
totalCount: number;
|
|
38
|
-
availableOrderBy: ENUM_ORDER_BY[];
|
|
39
|
-
availableOrderDirection: ENUM_NAVIGATION_ORDER_DIRECTION_TYPE[];
|
|
40
|
-
cursor: ICursorSchema;
|
|
41
|
-
filters: any[];
|
|
42
|
-
}
|