@behio/storefront-sdk 0.15.0 → 0.16.0
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/dist/{chunk-ZHXAVH3M.mjs → chunk-IVTS3F3H.mjs} +1 -1
- package/dist/{chunk-6FFVJLRP.js → chunk-WNJ72O66.js} +1 -1
- package/dist/{client-CN2K8H7h.d.mts → client-M8hW9taR.d.mts} +16 -1
- package/dist/{client-CN2K8H7h.d.ts → client-M8hW9taR.d.ts} +16 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +1 -1
- package/dist/next.d.mts +1 -1
- package/dist/next.d.ts +1 -1
- package/dist/next.js +2 -2
- package/dist/next.mjs +1 -1
- package/dist/react.d.mts +2 -2
- package/dist/react.d.ts +2 -2
- package/dist/react.js +2 -2
- package/dist/react.mjs +1 -1
- package/package.json +1 -1
|
@@ -633,7 +633,7 @@ var CartModule = class {
|
|
|
633
633
|
/** Add item to cart */
|
|
634
634
|
async addItem(input) {
|
|
635
635
|
const res = await this.client.request("POST", "/cart/items", {
|
|
636
|
-
body: {
|
|
636
|
+
body: { productId: input.productId, quantity: input.quantity }
|
|
637
637
|
});
|
|
638
638
|
if (res.error) return res;
|
|
639
639
|
if (res.data.newSessionToken) {
|
|
@@ -633,7 +633,7 @@ var CartModule = class {
|
|
|
633
633
|
/** Add item to cart */
|
|
634
634
|
async addItem(input) {
|
|
635
635
|
const res = await this.client.request("POST", "/cart/items", {
|
|
636
|
-
body: {
|
|
636
|
+
body: { productId: input.productId, quantity: input.quantity }
|
|
637
637
|
});
|
|
638
638
|
if (res.error) return res;
|
|
639
639
|
if (res.data.newSessionToken) {
|
|
@@ -109,6 +109,11 @@ interface ProductVolumePrice {
|
|
|
109
109
|
currency?: string;
|
|
110
110
|
}
|
|
111
111
|
interface ProductVariant {
|
|
112
|
+
/**
|
|
113
|
+
* Eshop product ID of this variant (each variant is its own sellable eshop
|
|
114
|
+
* product). Pass it straight to `cart.addItem({productId: variant.id})` to add
|
|
115
|
+
* the chosen variant.
|
|
116
|
+
*/
|
|
112
117
|
id: string;
|
|
113
118
|
sku: string;
|
|
114
119
|
name: string;
|
|
@@ -319,6 +324,12 @@ interface CartItemProduct {
|
|
|
319
324
|
}
|
|
320
325
|
interface CartItem {
|
|
321
326
|
id: string;
|
|
327
|
+
/**
|
|
328
|
+
* Eshop product ID of the sellable unit on this line. A variant is its own
|
|
329
|
+
* product, so this is the exact product/variant the customer added — use it
|
|
330
|
+
* to deep-link back to the product page.
|
|
331
|
+
*/
|
|
332
|
+
productId: string;
|
|
322
333
|
product: CartItemProduct;
|
|
323
334
|
quantity: number;
|
|
324
335
|
unitPrice: number;
|
|
@@ -353,7 +364,11 @@ interface GiftCardSummary {
|
|
|
353
364
|
currency: string;
|
|
354
365
|
}
|
|
355
366
|
interface AddToCartInput {
|
|
356
|
-
/**
|
|
367
|
+
/**
|
|
368
|
+
* Eshop product ID of the sellable unit. A variant is its own eshop product,
|
|
369
|
+
* so to add a chosen variant just pass that variant's `id` (from
|
|
370
|
+
* `ProductDetail.variants[].id`) here — there is no separate variant field.
|
|
371
|
+
*/
|
|
357
372
|
productId: string;
|
|
358
373
|
quantity: number;
|
|
359
374
|
}
|
|
@@ -109,6 +109,11 @@ interface ProductVolumePrice {
|
|
|
109
109
|
currency?: string;
|
|
110
110
|
}
|
|
111
111
|
interface ProductVariant {
|
|
112
|
+
/**
|
|
113
|
+
* Eshop product ID of this variant (each variant is its own sellable eshop
|
|
114
|
+
* product). Pass it straight to `cart.addItem({productId: variant.id})` to add
|
|
115
|
+
* the chosen variant.
|
|
116
|
+
*/
|
|
112
117
|
id: string;
|
|
113
118
|
sku: string;
|
|
114
119
|
name: string;
|
|
@@ -319,6 +324,12 @@ interface CartItemProduct {
|
|
|
319
324
|
}
|
|
320
325
|
interface CartItem {
|
|
321
326
|
id: string;
|
|
327
|
+
/**
|
|
328
|
+
* Eshop product ID of the sellable unit on this line. A variant is its own
|
|
329
|
+
* product, so this is the exact product/variant the customer added — use it
|
|
330
|
+
* to deep-link back to the product page.
|
|
331
|
+
*/
|
|
332
|
+
productId: string;
|
|
322
333
|
product: CartItemProduct;
|
|
323
334
|
quantity: number;
|
|
324
335
|
unitPrice: number;
|
|
@@ -353,7 +364,11 @@ interface GiftCardSummary {
|
|
|
353
364
|
currency: string;
|
|
354
365
|
}
|
|
355
366
|
interface AddToCartInput {
|
|
356
|
-
/**
|
|
367
|
+
/**
|
|
368
|
+
* Eshop product ID of the sellable unit. A variant is its own eshop product,
|
|
369
|
+
* so to add a chosen variant just pass that variant's `id` (from
|
|
370
|
+
* `ProductDetail.variants[].id`) here — there is no separate variant field.
|
|
371
|
+
*/
|
|
357
372
|
productId: string;
|
|
358
373
|
quantity: number;
|
|
359
374
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { t as ActivePromotion, J as AddToCartInput, j as AddressDetail, A as AddressSuggestion, a3 as AddressType, a4 as AddressTypes, K as AuthTokens, I as BackInStockSubscription, L as BehioApiError, a5 as BehioErrorCode, a6 as BehioEventHandler, a7 as BehioEventType, a8 as BehioNetworkError, a as BehioStorefront, B as BehioStorefrontConfig, r as Bundle, M as BundleItem, g as Cart, N as CartDiscount, T as CartItem, a9 as CartItemProduct, C as Category, e as CategoryDetail, U as CheckoutAddress, n as CheckoutInput, aa as CheckoutPaymentMethod, D as CookieConsent, E as CookieConsentInput, s as CrossSellItem, i as CustomerAddress, h as CustomerProfile, ab as DataGroupFieldType, F as FilterField, V as FulfillmentStatus, ac as FulfillmentStatuses, G as GiftCardBalance, ad as GiftCardSummary, X as LoginInput, Y as MessageResponse, l as OrderAccessRequestResponse, m as OrderAccessVerifyResponse, k as OrderDetail, Z as OrderItem, O as OrderListItem, _ as OrderStatus, ae as OrderStatusHistory, af as OrderStatuses, ag as OrderTracking, p as Page, ah as PageAttachment, o as PageDetail, b as PaginatedResponse, $ as PaymentStatus, ai as PaymentStatuses, d as ProductDetail, f as ProductLabel, c as ProductListItem, aj as ProductMedia, ak as ProductMediaVariant, a0 as ProductPrice, a1 as ProductReview, u as ProductReviewsResponse, al as ProductSort, am as ProductSortValue, a2 as ProductVariant, an as ProductVolumePrice, P as ProductsQuery, ao as QuoteItem, Q as QuoteRequest, R as RegisterInput, ap as RequestInterceptor, aq as RequestInterceptorConfig, ar as ResponseInterceptor, as as ResponseInterceptorData, y as ReturnRequest, at as ReturnRequestItem, x as ReturnStatus, au as ReturnStatusItem, w as ReturnableOrder, av as ReturnableOrderItem, aw as SdkError, ax as SdkResult, ay as ShippingMethodSummary, az as ShippingQuote, aA as ShippingQuoteInput, S as ShopInfo, q as ShopSeo, H as SubmitQuoteInput, z as SubmitReturnInput, v as SubmitReviewInput, W as WishlistItem, aB as err, aC as ok, aD as toSdkError } from './client-
|
|
1
|
+
export { t as ActivePromotion, J as AddToCartInput, j as AddressDetail, A as AddressSuggestion, a3 as AddressType, a4 as AddressTypes, K as AuthTokens, I as BackInStockSubscription, L as BehioApiError, a5 as BehioErrorCode, a6 as BehioEventHandler, a7 as BehioEventType, a8 as BehioNetworkError, a as BehioStorefront, B as BehioStorefrontConfig, r as Bundle, M as BundleItem, g as Cart, N as CartDiscount, T as CartItem, a9 as CartItemProduct, C as Category, e as CategoryDetail, U as CheckoutAddress, n as CheckoutInput, aa as CheckoutPaymentMethod, D as CookieConsent, E as CookieConsentInput, s as CrossSellItem, i as CustomerAddress, h as CustomerProfile, ab as DataGroupFieldType, F as FilterField, V as FulfillmentStatus, ac as FulfillmentStatuses, G as GiftCardBalance, ad as GiftCardSummary, X as LoginInput, Y as MessageResponse, l as OrderAccessRequestResponse, m as OrderAccessVerifyResponse, k as OrderDetail, Z as OrderItem, O as OrderListItem, _ as OrderStatus, ae as OrderStatusHistory, af as OrderStatuses, ag as OrderTracking, p as Page, ah as PageAttachment, o as PageDetail, b as PaginatedResponse, $ as PaymentStatus, ai as PaymentStatuses, d as ProductDetail, f as ProductLabel, c as ProductListItem, aj as ProductMedia, ak as ProductMediaVariant, a0 as ProductPrice, a1 as ProductReview, u as ProductReviewsResponse, al as ProductSort, am as ProductSortValue, a2 as ProductVariant, an as ProductVolumePrice, P as ProductsQuery, ao as QuoteItem, Q as QuoteRequest, R as RegisterInput, ap as RequestInterceptor, aq as RequestInterceptorConfig, ar as ResponseInterceptor, as as ResponseInterceptorData, y as ReturnRequest, at as ReturnRequestItem, x as ReturnStatus, au as ReturnStatusItem, w as ReturnableOrder, av as ReturnableOrderItem, aw as SdkError, ax as SdkResult, ay as ShippingMethodSummary, az as ShippingQuote, aA as ShippingQuoteInput, S as ShopInfo, q as ShopSeo, H as SubmitQuoteInput, z as SubmitReturnInput, v as SubmitReviewInput, W as WishlistItem, aB as err, aC as ok, aD as toSdkError } from './client-M8hW9taR.mjs';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Format a price amount with currency using Intl.NumberFormat.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { t as ActivePromotion, J as AddToCartInput, j as AddressDetail, A as AddressSuggestion, a3 as AddressType, a4 as AddressTypes, K as AuthTokens, I as BackInStockSubscription, L as BehioApiError, a5 as BehioErrorCode, a6 as BehioEventHandler, a7 as BehioEventType, a8 as BehioNetworkError, a as BehioStorefront, B as BehioStorefrontConfig, r as Bundle, M as BundleItem, g as Cart, N as CartDiscount, T as CartItem, a9 as CartItemProduct, C as Category, e as CategoryDetail, U as CheckoutAddress, n as CheckoutInput, aa as CheckoutPaymentMethod, D as CookieConsent, E as CookieConsentInput, s as CrossSellItem, i as CustomerAddress, h as CustomerProfile, ab as DataGroupFieldType, F as FilterField, V as FulfillmentStatus, ac as FulfillmentStatuses, G as GiftCardBalance, ad as GiftCardSummary, X as LoginInput, Y as MessageResponse, l as OrderAccessRequestResponse, m as OrderAccessVerifyResponse, k as OrderDetail, Z as OrderItem, O as OrderListItem, _ as OrderStatus, ae as OrderStatusHistory, af as OrderStatuses, ag as OrderTracking, p as Page, ah as PageAttachment, o as PageDetail, b as PaginatedResponse, $ as PaymentStatus, ai as PaymentStatuses, d as ProductDetail, f as ProductLabel, c as ProductListItem, aj as ProductMedia, ak as ProductMediaVariant, a0 as ProductPrice, a1 as ProductReview, u as ProductReviewsResponse, al as ProductSort, am as ProductSortValue, a2 as ProductVariant, an as ProductVolumePrice, P as ProductsQuery, ao as QuoteItem, Q as QuoteRequest, R as RegisterInput, ap as RequestInterceptor, aq as RequestInterceptorConfig, ar as ResponseInterceptor, as as ResponseInterceptorData, y as ReturnRequest, at as ReturnRequestItem, x as ReturnStatus, au as ReturnStatusItem, w as ReturnableOrder, av as ReturnableOrderItem, aw as SdkError, ax as SdkResult, ay as ShippingMethodSummary, az as ShippingQuote, aA as ShippingQuoteInput, S as ShopInfo, q as ShopSeo, H as SubmitQuoteInput, z as SubmitReturnInput, v as SubmitReviewInput, W as WishlistItem, aB as err, aC as ok, aD as toSdkError } from './client-
|
|
1
|
+
export { t as ActivePromotion, J as AddToCartInput, j as AddressDetail, A as AddressSuggestion, a3 as AddressType, a4 as AddressTypes, K as AuthTokens, I as BackInStockSubscription, L as BehioApiError, a5 as BehioErrorCode, a6 as BehioEventHandler, a7 as BehioEventType, a8 as BehioNetworkError, a as BehioStorefront, B as BehioStorefrontConfig, r as Bundle, M as BundleItem, g as Cart, N as CartDiscount, T as CartItem, a9 as CartItemProduct, C as Category, e as CategoryDetail, U as CheckoutAddress, n as CheckoutInput, aa as CheckoutPaymentMethod, D as CookieConsent, E as CookieConsentInput, s as CrossSellItem, i as CustomerAddress, h as CustomerProfile, ab as DataGroupFieldType, F as FilterField, V as FulfillmentStatus, ac as FulfillmentStatuses, G as GiftCardBalance, ad as GiftCardSummary, X as LoginInput, Y as MessageResponse, l as OrderAccessRequestResponse, m as OrderAccessVerifyResponse, k as OrderDetail, Z as OrderItem, O as OrderListItem, _ as OrderStatus, ae as OrderStatusHistory, af as OrderStatuses, ag as OrderTracking, p as Page, ah as PageAttachment, o as PageDetail, b as PaginatedResponse, $ as PaymentStatus, ai as PaymentStatuses, d as ProductDetail, f as ProductLabel, c as ProductListItem, aj as ProductMedia, ak as ProductMediaVariant, a0 as ProductPrice, a1 as ProductReview, u as ProductReviewsResponse, al as ProductSort, am as ProductSortValue, a2 as ProductVariant, an as ProductVolumePrice, P as ProductsQuery, ao as QuoteItem, Q as QuoteRequest, R as RegisterInput, ap as RequestInterceptor, aq as RequestInterceptorConfig, ar as ResponseInterceptor, as as ResponseInterceptorData, y as ReturnRequest, at as ReturnRequestItem, x as ReturnStatus, au as ReturnStatusItem, w as ReturnableOrder, av as ReturnableOrderItem, aw as SdkError, ax as SdkResult, ay as ShippingMethodSummary, az as ShippingQuote, aA as ShippingQuoteInput, S as ShopInfo, q as ShopSeo, H as SubmitQuoteInput, z as SubmitReturnInput, v as SubmitReviewInput, W as WishlistItem, aB as err, aC as ok, aD as toSdkError } from './client-M8hW9taR.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Format a price amount with currency using Intl.NumberFormat.
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ var _chunkXWYDXBLGjs = require('./chunk-XWYDXBLG.js');
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
16
|
+
var _chunkWNJ72O66js = require('./chunk-WNJ72O66.js');
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
@@ -27,4 +27,4 @@ var _chunk6FFVJLRPjs = require('./chunk-6FFVJLRP.js');
|
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
exports.AddressTypes =
|
|
30
|
+
exports.AddressTypes = _chunkWNJ72O66js.AddressTypes; exports.BehioApiError = _chunkWNJ72O66js.BehioApiError; exports.BehioNetworkError = _chunkWNJ72O66js.BehioNetworkError; exports.BehioStorefront = _chunkWNJ72O66js.BehioStorefront; exports.FulfillmentStatuses = _chunkWNJ72O66js.FulfillmentStatuses; exports.OrderStatuses = _chunkWNJ72O66js.OrderStatuses; exports.PaymentStatuses = _chunkWNJ72O66js.PaymentStatuses; exports.ProductSort = _chunkWNJ72O66js.ProductSort; exports.err = _chunkWNJ72O66js.err; exports.formatPrice = _chunkXWYDXBLGjs.formatPrice; exports.ok = _chunkWNJ72O66js.ok; exports.toSdkError = _chunkWNJ72O66js.toSdkError;
|
package/dist/index.mjs
CHANGED
package/dist/next.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { B as BehioStorefrontConfig, a as BehioStorefront } from './client-
|
|
1
|
+
import { B as BehioStorefrontConfig, a as BehioStorefront } from './client-M8hW9taR.mjs';
|
|
2
2
|
|
|
3
3
|
interface GetBehioOptions extends Partial<BehioStorefrontConfig> {
|
|
4
4
|
/** Override the cart session cookie name (default: "behio_cart_session"). */
|
package/dist/next.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { B as BehioStorefrontConfig, a as BehioStorefront } from './client-
|
|
1
|
+
import { B as BehioStorefrontConfig, a as BehioStorefront } from './client-M8hW9taR.js';
|
|
2
2
|
|
|
3
3
|
interface GetBehioOptions extends Partial<BehioStorefrontConfig> {
|
|
4
4
|
/** Override the cart session cookie name (default: "behio_cart_session"). */
|
package/dist/next.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkWNJ72O66js = require('./chunk-WNJ72O66.js');
|
|
4
4
|
|
|
5
5
|
// src/next.ts
|
|
6
6
|
var _headers = require('next/headers');
|
|
@@ -18,7 +18,7 @@ async function getBehio(options = {}) {
|
|
|
18
18
|
const locale = _nullishCoalesce(options.locale, () => ( process.env.BEHIO_LOCALE));
|
|
19
19
|
const currency = _nullishCoalesce(options.currency, () => ( process.env.BEHIO_CURRENCY));
|
|
20
20
|
const cookieName = _nullishCoalesce(options.cartCookieName, () => ( CART_COOKIE_NAME));
|
|
21
|
-
const client = new (0,
|
|
21
|
+
const client = new (0, _chunkWNJ72O66js.BehioStorefront)({
|
|
22
22
|
apiKey,
|
|
23
23
|
...baseUrl ? { baseUrl } : {},
|
|
24
24
|
...locale ? { locale } : {},
|
package/dist/next.mjs
CHANGED
package/dist/react.d.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
3
3
|
import { QueryClient } from '@tanstack/react-query';
|
|
4
|
-
import { a as BehioStorefront, P as ProductsQuery, b as PaginatedResponse, c as ProductListItem, d as ProductDetail, C as Category, e as CategoryDetail, f as ProductLabel, F as FilterField, g as Cart, h as CustomerProfile, R as RegisterInput, i as CustomerAddress, A as AddressSuggestion, j as AddressDetail, O as OrderListItem, k as OrderDetail, l as OrderAccessRequestResponse, m as OrderAccessVerifyResponse, n as CheckoutInput, o as PageDetail, p as Page, S as ShopInfo, q as ShopSeo, r as Bundle, s as CrossSellItem, t as ActivePromotion, G as GiftCardBalance, W as WishlistItem, u as ProductReviewsResponse, v as SubmitReviewInput, w as ReturnableOrder, x as ReturnStatus, y as ReturnRequest, z as SubmitReturnInput, D as CookieConsent, E as CookieConsentInput, Q as QuoteRequest, H as SubmitQuoteInput, I as BackInStockSubscription } from './client-
|
|
5
|
-
export { J as AddToCartInput, K as AuthTokens, L as BehioApiError, M as BundleItem, N as CartDiscount, T as CartItem, U as CheckoutAddress, V as FulfillmentStatus, X as LoginInput, Y as MessageResponse, Z as OrderItem, _ as OrderStatus, $ as PaymentStatus, a0 as ProductPrice, a1 as ProductReview, a2 as ProductVariant } from './client-
|
|
4
|
+
import { a as BehioStorefront, P as ProductsQuery, b as PaginatedResponse, c as ProductListItem, d as ProductDetail, C as Category, e as CategoryDetail, f as ProductLabel, F as FilterField, g as Cart, h as CustomerProfile, R as RegisterInput, i as CustomerAddress, A as AddressSuggestion, j as AddressDetail, O as OrderListItem, k as OrderDetail, l as OrderAccessRequestResponse, m as OrderAccessVerifyResponse, n as CheckoutInput, o as PageDetail, p as Page, S as ShopInfo, q as ShopSeo, r as Bundle, s as CrossSellItem, t as ActivePromotion, G as GiftCardBalance, W as WishlistItem, u as ProductReviewsResponse, v as SubmitReviewInput, w as ReturnableOrder, x as ReturnStatus, y as ReturnRequest, z as SubmitReturnInput, D as CookieConsent, E as CookieConsentInput, Q as QuoteRequest, H as SubmitQuoteInput, I as BackInStockSubscription } from './client-M8hW9taR.mjs';
|
|
5
|
+
export { J as AddToCartInput, K as AuthTokens, L as BehioApiError, M as BundleItem, N as CartDiscount, T as CartItem, U as CheckoutAddress, V as FulfillmentStatus, X as LoginInput, Y as MessageResponse, Z as OrderItem, _ as OrderStatus, $ as PaymentStatus, a0 as ProductPrice, a1 as ProductReview, a2 as ProductVariant } from './client-M8hW9taR.mjs';
|
|
6
6
|
import * as _tanstack_query_core from '@tanstack/query-core';
|
|
7
7
|
export { formatPrice } from './index.mjs';
|
|
8
8
|
|
package/dist/react.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
3
3
|
import { QueryClient } from '@tanstack/react-query';
|
|
4
|
-
import { a as BehioStorefront, P as ProductsQuery, b as PaginatedResponse, c as ProductListItem, d as ProductDetail, C as Category, e as CategoryDetail, f as ProductLabel, F as FilterField, g as Cart, h as CustomerProfile, R as RegisterInput, i as CustomerAddress, A as AddressSuggestion, j as AddressDetail, O as OrderListItem, k as OrderDetail, l as OrderAccessRequestResponse, m as OrderAccessVerifyResponse, n as CheckoutInput, o as PageDetail, p as Page, S as ShopInfo, q as ShopSeo, r as Bundle, s as CrossSellItem, t as ActivePromotion, G as GiftCardBalance, W as WishlistItem, u as ProductReviewsResponse, v as SubmitReviewInput, w as ReturnableOrder, x as ReturnStatus, y as ReturnRequest, z as SubmitReturnInput, D as CookieConsent, E as CookieConsentInput, Q as QuoteRequest, H as SubmitQuoteInput, I as BackInStockSubscription } from './client-
|
|
5
|
-
export { J as AddToCartInput, K as AuthTokens, L as BehioApiError, M as BundleItem, N as CartDiscount, T as CartItem, U as CheckoutAddress, V as FulfillmentStatus, X as LoginInput, Y as MessageResponse, Z as OrderItem, _ as OrderStatus, $ as PaymentStatus, a0 as ProductPrice, a1 as ProductReview, a2 as ProductVariant } from './client-
|
|
4
|
+
import { a as BehioStorefront, P as ProductsQuery, b as PaginatedResponse, c as ProductListItem, d as ProductDetail, C as Category, e as CategoryDetail, f as ProductLabel, F as FilterField, g as Cart, h as CustomerProfile, R as RegisterInput, i as CustomerAddress, A as AddressSuggestion, j as AddressDetail, O as OrderListItem, k as OrderDetail, l as OrderAccessRequestResponse, m as OrderAccessVerifyResponse, n as CheckoutInput, o as PageDetail, p as Page, S as ShopInfo, q as ShopSeo, r as Bundle, s as CrossSellItem, t as ActivePromotion, G as GiftCardBalance, W as WishlistItem, u as ProductReviewsResponse, v as SubmitReviewInput, w as ReturnableOrder, x as ReturnStatus, y as ReturnRequest, z as SubmitReturnInput, D as CookieConsent, E as CookieConsentInput, Q as QuoteRequest, H as SubmitQuoteInput, I as BackInStockSubscription } from './client-M8hW9taR.js';
|
|
5
|
+
export { J as AddToCartInput, K as AuthTokens, L as BehioApiError, M as BundleItem, N as CartDiscount, T as CartItem, U as CheckoutAddress, V as FulfillmentStatus, X as LoginInput, Y as MessageResponse, Z as OrderItem, _ as OrderStatus, $ as PaymentStatus, a0 as ProductPrice, a1 as ProductReview, a2 as ProductVariant } from './client-M8hW9taR.js';
|
|
6
6
|
import * as _tanstack_query_core from '@tanstack/query-core';
|
|
7
7
|
export { formatPrice } from './index.js';
|
|
8
8
|
|
package/dist/react.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
var _chunkXWYDXBLGjs = require('./chunk-XWYDXBLG.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkWNJ72O66js = require('./chunk-WNJ72O66.js');
|
|
7
7
|
|
|
8
8
|
// src/react/provider.tsx
|
|
9
9
|
var _react = require('react');
|
|
@@ -133,7 +133,7 @@ function BehioProvider({
|
|
|
133
133
|
const [activeCurrency, setActiveCurrency] = _react.useState.call(void 0, resolveInitialCurrency);
|
|
134
134
|
const clientRef = _react.useRef.call(void 0, null);
|
|
135
135
|
if (!clientRef.current) {
|
|
136
|
-
clientRef.current = new (0,
|
|
136
|
+
clientRef.current = new (0, _chunkWNJ72O66js.BehioStorefront)({
|
|
137
137
|
apiKey,
|
|
138
138
|
baseUrl,
|
|
139
139
|
...shopDomain ? { shopDomain } : {},
|
package/dist/react.mjs
CHANGED