@behio/storefront-sdk 1.2.0 → 1.4.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-WMZH72WS.mjs → chunk-SULHQV5R.mjs} +9 -0
- package/dist/{chunk-ODAMBLGY.js → chunk-VI7OYYBD.js} +9 -0
- package/dist/{client-BU8Kfb74.d.mts → client-YJtbTLts.d.mts} +51 -1
- package/dist/{client-BU8Kfb74.d.ts → client-YJtbTLts.d.ts} +51 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- 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 +50 -0
- package/dist/react.d.ts +50 -0
- package/dist/react.js +9 -0
- package/dist/react.mjs +9 -0
- package/package.json +1 -1
|
@@ -597,6 +597,15 @@ var CatalogModule = class {
|
|
|
597
597
|
}
|
|
598
598
|
);
|
|
599
599
|
}
|
|
600
|
+
/**
|
|
601
|
+
* URLs for the sitemap, already filtered by the merchant's indexing choice
|
|
602
|
+
* (see `Sitemap`). Added in SDK 1.4.0.
|
|
603
|
+
*/
|
|
604
|
+
async getSitemap(locale) {
|
|
605
|
+
return this.client.request("GET", "/catalog/sitemap", {
|
|
606
|
+
query: { locale }
|
|
607
|
+
});
|
|
608
|
+
}
|
|
600
609
|
/** Get category tree */
|
|
601
610
|
async getCategories(locale) {
|
|
602
611
|
const res = await this.client.request("GET", "/catalog/categories", { query: { locale } });
|
|
@@ -597,6 +597,15 @@ var CatalogModule = class {
|
|
|
597
597
|
}
|
|
598
598
|
);
|
|
599
599
|
}
|
|
600
|
+
/**
|
|
601
|
+
* URLs for the sitemap, already filtered by the merchant's indexing choice
|
|
602
|
+
* (see `Sitemap`). Added in SDK 1.4.0.
|
|
603
|
+
*/
|
|
604
|
+
async getSitemap(locale) {
|
|
605
|
+
return this.client.request("GET", "/catalog/sitemap", {
|
|
606
|
+
query: { locale }
|
|
607
|
+
});
|
|
608
|
+
}
|
|
600
609
|
/** Get category tree */
|
|
601
610
|
async getCategories(locale) {
|
|
602
611
|
const res = await this.client.request("GET", "/catalog/categories", { query: { locale } });
|
|
@@ -577,6 +577,14 @@ interface ProductSibling {
|
|
|
577
577
|
axisValue: string | null;
|
|
578
578
|
swatchColor: string | null;
|
|
579
579
|
swatchImage: string | null;
|
|
580
|
+
/**
|
|
581
|
+
* Fotka té barvy, tedy titulní obrázek její karty.
|
|
582
|
+
*
|
|
583
|
+
* Šablona ji má použít rovnou v kolečku a hlavně si ji předem načíst
|
|
584
|
+
* (`<link rel="preload" as="image">` nebo skrytý `<img>`). Bez toho při
|
|
585
|
+
* přepnutí barvy problikne prázdné místo, než se nový obrázek stáhne.
|
|
586
|
+
*/
|
|
587
|
+
imageUrl: string | null;
|
|
580
588
|
/** Tahle karta je právě otevřená stránka. */
|
|
581
589
|
isCurrent: boolean;
|
|
582
590
|
}
|
|
@@ -667,6 +675,21 @@ interface ProductDetail extends ProductListItem {
|
|
|
667
675
|
*/
|
|
668
676
|
parameterGroups: ProductParameterGroup[];
|
|
669
677
|
seo: {
|
|
678
|
+
/**
|
|
679
|
+
* Slug of the page that should be canonical INSTEAD of this one. Empty
|
|
680
|
+
* means the page is canonical to itself.
|
|
681
|
+
*
|
|
682
|
+
* Only ever filled on a colour card in a shop whose merchant chose that
|
|
683
|
+
* one product page represents the product in search (catalog split
|
|
684
|
+
* indexing = PARENT_PAGE). Added in SDK 1.4.0.
|
|
685
|
+
*/
|
|
686
|
+
canonicalSlug?: string | null;
|
|
687
|
+
/**
|
|
688
|
+
* `true` = render `noindex, follow`. Set on a parent product that colour
|
|
689
|
+
* cards have taken over, so it stops competing with its own cards.
|
|
690
|
+
* Added in SDK 1.4.0.
|
|
691
|
+
*/
|
|
692
|
+
noIndex?: boolean;
|
|
670
693
|
title?: string | null;
|
|
671
694
|
description?: string | null;
|
|
672
695
|
keywords?: string | null;
|
|
@@ -2199,6 +2222,28 @@ interface SubmitQuoteInput {
|
|
|
2199
2222
|
requestedPrice?: number;
|
|
2200
2223
|
}[];
|
|
2201
2224
|
}
|
|
2225
|
+
/** One URL for the sitemap. Added in SDK 1.4.0. */
|
|
2226
|
+
interface SitemapEntry {
|
|
2227
|
+
/** Slug without any prefix; the template builds the path. */
|
|
2228
|
+
slug: string;
|
|
2229
|
+
/** Last change (epoch ms) for `lastmod`. */
|
|
2230
|
+
updatedAt: number;
|
|
2231
|
+
}
|
|
2232
|
+
/**
|
|
2233
|
+
* Everything the shop wants search engines to crawl, already filtered by the
|
|
2234
|
+
* merchant's indexing choice. Added in SDK 1.4.0.
|
|
2235
|
+
*
|
|
2236
|
+
* Build the sitemap from THIS, not from `getProducts`: which page belongs in
|
|
2237
|
+
* the index is a catalog rule (a product split into colour cards publishes
|
|
2238
|
+
* either the cards or the parent, never both), and a template that lists
|
|
2239
|
+
* `getProducts` gets it wrong the moment the merchant changes the setting.
|
|
2240
|
+
*/
|
|
2241
|
+
interface Sitemap {
|
|
2242
|
+
locale: string;
|
|
2243
|
+
products: SitemapEntry[];
|
|
2244
|
+
categories: SitemapEntry[];
|
|
2245
|
+
pages: SitemapEntry[];
|
|
2246
|
+
}
|
|
2202
2247
|
|
|
2203
2248
|
declare class BehioStorefront {
|
|
2204
2249
|
private baseUrl;
|
|
@@ -2394,6 +2439,11 @@ declare class CatalogModule {
|
|
|
2394
2439
|
locale?: string;
|
|
2395
2440
|
currency?: string;
|
|
2396
2441
|
}): Promise<SdkResult<ProductDetail>>;
|
|
2442
|
+
/**
|
|
2443
|
+
* URLs for the sitemap, already filtered by the merchant's indexing choice
|
|
2444
|
+
* (see `Sitemap`). Added in SDK 1.4.0.
|
|
2445
|
+
*/
|
|
2446
|
+
getSitemap(locale?: string): Promise<SdkResult<Sitemap>>;
|
|
2397
2447
|
/** Get category tree */
|
|
2398
2448
|
getCategories(locale?: string): Promise<SdkResult<{
|
|
2399
2449
|
categories: Category[];
|
|
@@ -2957,4 +3007,4 @@ declare class NewsletterModule {
|
|
|
2957
3007
|
unsubscribe(email: string): Promise<SdkResult<NewsletterUnsubscribeResult>>;
|
|
2958
3008
|
}
|
|
2959
3009
|
|
|
2960
|
-
export { type DigitalDownload as $, type ActivePromotion as A, BehioStorefront as B, type CookieConsent as C, type CertificateVerification as D, type CheckoutAddress as E, type CheckoutInput as F, type CheckoutPaymentMethod as G, type CheckoutSettings as H, type CookieConsentInput as I, type CourseAttachment as J, type CourseCertificate as K, type CourseComment as L, type CourseCommentReply as M, type CourseCommentsList as N, type CourseDetail as O, type ProductDetail as P, type CourseLesson as Q, type CourseListItem as R, type SdkResult as S, type CourseModule as T, type CoursePostedComment as U, type CourseProgress as V, type CourseTutorMessage as W, type CourseTutorThread as X, type CrossSellItem as Y, type CustomerAddress as Z, type CustomerProfile as _, type ProductVariant as a, type ProductParametersResponse as a$, type DownloadUrl as a0, type Facet as a1, type FacetAvailability as a2, type FacetCategory as a3, type FacetLabel as a4, type FacetPriceRange as a5, type FacetRange as a6, type FacetRatingBucket as a7, type FacetValue as a8, type FacetsResponse as a9, type OrderAccessRequestResponse as aA, type OrderAccessVerifyResponse as aB, type OrderDetail as aC, type OrderItem as aD, type OrderListItem as aE, type OrderStatus as aF, type OrderStatusHistory as aG, OrderStatuses as aH, type OrderTracking as aI, type Page as aJ, type PageAttachment as aK, type PageDetail as aL, type PaginatedResponse as aM, type PaymentStatus as aN, PaymentStatuses as aO, type PickupPoint as aP, type PickupPointHours as aQ, type PickupPointsInput as aR, type PriceDisplay as aS, type ProductAvailability as aT, type ProductGroup as aU, type ProductLabel as aV, type ProductListItem as aW, type ProductMedia as aX, type ProductMediaVariant as aY, type ProductParameter as aZ, type ProductParameterGroup as a_, type FilterField as aa, type FulfillmentStatus as ab, FulfillmentStatuses as ac, type GiftCardBalance as ad, type GiftCardPurchaseInput as ae, type GiftCardPurchaseResult as af, type GiftCardSummary as ag, type LessonNote as ah, type LessonQuiz as ai, type LoginInput as aj, type LoyaltyBalance as ak, type LoyaltyNextTier as al, type LoyaltyProgram as am, type LoyaltySummary as an, type LoyaltyTier as ao, type LoyaltyTierPerks as ap, type LoyaltyTransaction as aq, type Menu as ar, type MenuItem as as, type MenuItemRef as at, type MenuItemType as au, type MessageResponse as av, type NewsletterOptInDefault as aw, type NewsletterSubscribeInput as ax, type NewsletterSubscribeResult as ay, type NewsletterUnsubscribeResult as az, type AddToCartInput as b, type ProductPrice as b0, type ProductPromotionSummary as b1, type ProductReview as b2, type ProductReviewsResponse as b3, type ProductSibling as b4, ProductSort as b5, type ProductSortValue as b6, type ProductVolumePrice as b7, type ProductsQuery as b8, type QuizAnswerInput as b9, type ShopSeo as bA, type ShopSeoIdentity as bB, type
|
|
3010
|
+
export { type DigitalDownload as $, type ActivePromotion as A, BehioStorefront as B, type CookieConsent as C, type CertificateVerification as D, type CheckoutAddress as E, type CheckoutInput as F, type CheckoutPaymentMethod as G, type CheckoutSettings as H, type CookieConsentInput as I, type CourseAttachment as J, type CourseCertificate as K, type CourseComment as L, type CourseCommentReply as M, type CourseCommentsList as N, type CourseDetail as O, type ProductDetail as P, type CourseLesson as Q, type CourseListItem as R, type SdkResult as S, type CourseModule as T, type CoursePostedComment as U, type CourseProgress as V, type CourseTutorMessage as W, type CourseTutorThread as X, type CrossSellItem as Y, type CustomerAddress as Z, type CustomerProfile as _, type ProductVariant as a, type ProductParametersResponse as a$, type DownloadUrl as a0, type Facet as a1, type FacetAvailability as a2, type FacetCategory as a3, type FacetLabel as a4, type FacetPriceRange as a5, type FacetRange as a6, type FacetRatingBucket as a7, type FacetValue as a8, type FacetsResponse as a9, type OrderAccessRequestResponse as aA, type OrderAccessVerifyResponse as aB, type OrderDetail as aC, type OrderItem as aD, type OrderListItem as aE, type OrderStatus as aF, type OrderStatusHistory as aG, OrderStatuses as aH, type OrderTracking as aI, type Page as aJ, type PageAttachment as aK, type PageDetail as aL, type PaginatedResponse as aM, type PaymentStatus as aN, PaymentStatuses as aO, type PickupPoint as aP, type PickupPointHours as aQ, type PickupPointsInput as aR, type PriceDisplay as aS, type ProductAvailability as aT, type ProductGroup as aU, type ProductLabel as aV, type ProductListItem as aW, type ProductMedia as aX, type ProductMediaVariant as aY, type ProductParameter as aZ, type ProductParameterGroup as a_, type FilterField as aa, type FulfillmentStatus as ab, FulfillmentStatuses as ac, type GiftCardBalance as ad, type GiftCardPurchaseInput as ae, type GiftCardPurchaseResult as af, type GiftCardSummary as ag, type LessonNote as ah, type LessonQuiz as ai, type LoginInput as aj, type LoyaltyBalance as ak, type LoyaltyNextTier as al, type LoyaltyProgram as am, type LoyaltySummary as an, type LoyaltyTier as ao, type LoyaltyTierPerks as ap, type LoyaltyTransaction as aq, type Menu as ar, type MenuItem as as, type MenuItemRef as at, type MenuItemType as au, type MessageResponse as av, type NewsletterOptInDefault as aw, type NewsletterSubscribeInput as ax, type NewsletterSubscribeResult as ay, type NewsletterUnsubscribeResult as az, type AddToCartInput as b, type ProductPrice as b0, type ProductPromotionSummary as b1, type ProductReview as b2, type ProductReviewsResponse as b3, type ProductSibling as b4, ProductSort as b5, type ProductSortValue as b6, type ProductVolumePrice as b7, type ProductsQuery as b8, type QuizAnswerInput as b9, type ShopSeo as bA, type ShopSeoIdentity as bB, type Sitemap as bC, type SitemapEntry as bD, type StockBehavior as bE, type StockMode as bF, type SubmitQuoteInput as bG, type SubmitReturnInput as bH, type SubmitReviewInput as bI, type Subscription as bJ, type SubscriptionAction as bK, type SubscriptionFrequency as bL, type SubscriptionItem as bM, type SubscriptionStatus as bN, type TaxBreakdownLine as bO, type VariantAxis as bP, type VariantAxisValue as bQ, type WishlistItem as bR, err as bS, ok as bT, toSdkError as bU, type QuizAnswerResult as ba, type QuizQuestion as bb, type QuizResult as bc, type QuoteItem as bd, type QuoteRequest as be, type RegisterInput as bf, type RegisterResult as bg, type RequestInterceptor as bh, type RequestInterceptorConfig as bi, type ResponseInterceptor as bj, type ResponseInterceptorData as bk, type ReturnRequest as bl, type ReturnRequestItem as bm, type ReturnStatus as bn, type ReturnStatusItem as bo, type ReturnableOrder as bp, type ReturnableOrderItem as bq, type SdkError as br, type ShippingMethodSummary as bs, type ShippingQuote as bt, type ShippingQuoteInput as bu, type ShopInfo as bv, type ShopScript as bw, type ShopScriptPlacement as bx, type ShopScriptType as by, type ShopScripts as bz, type AddressDetail as c, type AddressSuggestion as d, type AddressType as e, AddressTypes as f, type AuthTokens as g, type BackInStockSubscription as h, type BadgeTone as i, BehioApiError as j, type BehioErrorCode as k, type BehioEventHandler as l, type BehioEventType as m, BehioNetworkError as n, type BehioStorefrontConfig as o, type Bundle as p, type BundleItem as q, type Cart as r, type CartBundleLine as s, type CartBundleLineItem as t, type CartDiscount as u, type CartItem as v, type CartItemProduct as w, type CartPromotion as x, type Category as y, type CategoryDetail as z };
|
|
@@ -577,6 +577,14 @@ interface ProductSibling {
|
|
|
577
577
|
axisValue: string | null;
|
|
578
578
|
swatchColor: string | null;
|
|
579
579
|
swatchImage: string | null;
|
|
580
|
+
/**
|
|
581
|
+
* Fotka té barvy, tedy titulní obrázek její karty.
|
|
582
|
+
*
|
|
583
|
+
* Šablona ji má použít rovnou v kolečku a hlavně si ji předem načíst
|
|
584
|
+
* (`<link rel="preload" as="image">` nebo skrytý `<img>`). Bez toho při
|
|
585
|
+
* přepnutí barvy problikne prázdné místo, než se nový obrázek stáhne.
|
|
586
|
+
*/
|
|
587
|
+
imageUrl: string | null;
|
|
580
588
|
/** Tahle karta je právě otevřená stránka. */
|
|
581
589
|
isCurrent: boolean;
|
|
582
590
|
}
|
|
@@ -667,6 +675,21 @@ interface ProductDetail extends ProductListItem {
|
|
|
667
675
|
*/
|
|
668
676
|
parameterGroups: ProductParameterGroup[];
|
|
669
677
|
seo: {
|
|
678
|
+
/**
|
|
679
|
+
* Slug of the page that should be canonical INSTEAD of this one. Empty
|
|
680
|
+
* means the page is canonical to itself.
|
|
681
|
+
*
|
|
682
|
+
* Only ever filled on a colour card in a shop whose merchant chose that
|
|
683
|
+
* one product page represents the product in search (catalog split
|
|
684
|
+
* indexing = PARENT_PAGE). Added in SDK 1.4.0.
|
|
685
|
+
*/
|
|
686
|
+
canonicalSlug?: string | null;
|
|
687
|
+
/**
|
|
688
|
+
* `true` = render `noindex, follow`. Set on a parent product that colour
|
|
689
|
+
* cards have taken over, so it stops competing with its own cards.
|
|
690
|
+
* Added in SDK 1.4.0.
|
|
691
|
+
*/
|
|
692
|
+
noIndex?: boolean;
|
|
670
693
|
title?: string | null;
|
|
671
694
|
description?: string | null;
|
|
672
695
|
keywords?: string | null;
|
|
@@ -2199,6 +2222,28 @@ interface SubmitQuoteInput {
|
|
|
2199
2222
|
requestedPrice?: number;
|
|
2200
2223
|
}[];
|
|
2201
2224
|
}
|
|
2225
|
+
/** One URL for the sitemap. Added in SDK 1.4.0. */
|
|
2226
|
+
interface SitemapEntry {
|
|
2227
|
+
/** Slug without any prefix; the template builds the path. */
|
|
2228
|
+
slug: string;
|
|
2229
|
+
/** Last change (epoch ms) for `lastmod`. */
|
|
2230
|
+
updatedAt: number;
|
|
2231
|
+
}
|
|
2232
|
+
/**
|
|
2233
|
+
* Everything the shop wants search engines to crawl, already filtered by the
|
|
2234
|
+
* merchant's indexing choice. Added in SDK 1.4.0.
|
|
2235
|
+
*
|
|
2236
|
+
* Build the sitemap from THIS, not from `getProducts`: which page belongs in
|
|
2237
|
+
* the index is a catalog rule (a product split into colour cards publishes
|
|
2238
|
+
* either the cards or the parent, never both), and a template that lists
|
|
2239
|
+
* `getProducts` gets it wrong the moment the merchant changes the setting.
|
|
2240
|
+
*/
|
|
2241
|
+
interface Sitemap {
|
|
2242
|
+
locale: string;
|
|
2243
|
+
products: SitemapEntry[];
|
|
2244
|
+
categories: SitemapEntry[];
|
|
2245
|
+
pages: SitemapEntry[];
|
|
2246
|
+
}
|
|
2202
2247
|
|
|
2203
2248
|
declare class BehioStorefront {
|
|
2204
2249
|
private baseUrl;
|
|
@@ -2394,6 +2439,11 @@ declare class CatalogModule {
|
|
|
2394
2439
|
locale?: string;
|
|
2395
2440
|
currency?: string;
|
|
2396
2441
|
}): Promise<SdkResult<ProductDetail>>;
|
|
2442
|
+
/**
|
|
2443
|
+
* URLs for the sitemap, already filtered by the merchant's indexing choice
|
|
2444
|
+
* (see `Sitemap`). Added in SDK 1.4.0.
|
|
2445
|
+
*/
|
|
2446
|
+
getSitemap(locale?: string): Promise<SdkResult<Sitemap>>;
|
|
2397
2447
|
/** Get category tree */
|
|
2398
2448
|
getCategories(locale?: string): Promise<SdkResult<{
|
|
2399
2449
|
categories: Category[];
|
|
@@ -2957,4 +3007,4 @@ declare class NewsletterModule {
|
|
|
2957
3007
|
unsubscribe(email: string): Promise<SdkResult<NewsletterUnsubscribeResult>>;
|
|
2958
3008
|
}
|
|
2959
3009
|
|
|
2960
|
-
export { type DigitalDownload as $, type ActivePromotion as A, BehioStorefront as B, type CookieConsent as C, type CertificateVerification as D, type CheckoutAddress as E, type CheckoutInput as F, type CheckoutPaymentMethod as G, type CheckoutSettings as H, type CookieConsentInput as I, type CourseAttachment as J, type CourseCertificate as K, type CourseComment as L, type CourseCommentReply as M, type CourseCommentsList as N, type CourseDetail as O, type ProductDetail as P, type CourseLesson as Q, type CourseListItem as R, type SdkResult as S, type CourseModule as T, type CoursePostedComment as U, type CourseProgress as V, type CourseTutorMessage as W, type CourseTutorThread as X, type CrossSellItem as Y, type CustomerAddress as Z, type CustomerProfile as _, type ProductVariant as a, type ProductParametersResponse as a$, type DownloadUrl as a0, type Facet as a1, type FacetAvailability as a2, type FacetCategory as a3, type FacetLabel as a4, type FacetPriceRange as a5, type FacetRange as a6, type FacetRatingBucket as a7, type FacetValue as a8, type FacetsResponse as a9, type OrderAccessRequestResponse as aA, type OrderAccessVerifyResponse as aB, type OrderDetail as aC, type OrderItem as aD, type OrderListItem as aE, type OrderStatus as aF, type OrderStatusHistory as aG, OrderStatuses as aH, type OrderTracking as aI, type Page as aJ, type PageAttachment as aK, type PageDetail as aL, type PaginatedResponse as aM, type PaymentStatus as aN, PaymentStatuses as aO, type PickupPoint as aP, type PickupPointHours as aQ, type PickupPointsInput as aR, type PriceDisplay as aS, type ProductAvailability as aT, type ProductGroup as aU, type ProductLabel as aV, type ProductListItem as aW, type ProductMedia as aX, type ProductMediaVariant as aY, type ProductParameter as aZ, type ProductParameterGroup as a_, type FilterField as aa, type FulfillmentStatus as ab, FulfillmentStatuses as ac, type GiftCardBalance as ad, type GiftCardPurchaseInput as ae, type GiftCardPurchaseResult as af, type GiftCardSummary as ag, type LessonNote as ah, type LessonQuiz as ai, type LoginInput as aj, type LoyaltyBalance as ak, type LoyaltyNextTier as al, type LoyaltyProgram as am, type LoyaltySummary as an, type LoyaltyTier as ao, type LoyaltyTierPerks as ap, type LoyaltyTransaction as aq, type Menu as ar, type MenuItem as as, type MenuItemRef as at, type MenuItemType as au, type MessageResponse as av, type NewsletterOptInDefault as aw, type NewsletterSubscribeInput as ax, type NewsletterSubscribeResult as ay, type NewsletterUnsubscribeResult as az, type AddToCartInput as b, type ProductPrice as b0, type ProductPromotionSummary as b1, type ProductReview as b2, type ProductReviewsResponse as b3, type ProductSibling as b4, ProductSort as b5, type ProductSortValue as b6, type ProductVolumePrice as b7, type ProductsQuery as b8, type QuizAnswerInput as b9, type ShopSeo as bA, type ShopSeoIdentity as bB, type
|
|
3010
|
+
export { type DigitalDownload as $, type ActivePromotion as A, BehioStorefront as B, type CookieConsent as C, type CertificateVerification as D, type CheckoutAddress as E, type CheckoutInput as F, type CheckoutPaymentMethod as G, type CheckoutSettings as H, type CookieConsentInput as I, type CourseAttachment as J, type CourseCertificate as K, type CourseComment as L, type CourseCommentReply as M, type CourseCommentsList as N, type CourseDetail as O, type ProductDetail as P, type CourseLesson as Q, type CourseListItem as R, type SdkResult as S, type CourseModule as T, type CoursePostedComment as U, type CourseProgress as V, type CourseTutorMessage as W, type CourseTutorThread as X, type CrossSellItem as Y, type CustomerAddress as Z, type CustomerProfile as _, type ProductVariant as a, type ProductParametersResponse as a$, type DownloadUrl as a0, type Facet as a1, type FacetAvailability as a2, type FacetCategory as a3, type FacetLabel as a4, type FacetPriceRange as a5, type FacetRange as a6, type FacetRatingBucket as a7, type FacetValue as a8, type FacetsResponse as a9, type OrderAccessRequestResponse as aA, type OrderAccessVerifyResponse as aB, type OrderDetail as aC, type OrderItem as aD, type OrderListItem as aE, type OrderStatus as aF, type OrderStatusHistory as aG, OrderStatuses as aH, type OrderTracking as aI, type Page as aJ, type PageAttachment as aK, type PageDetail as aL, type PaginatedResponse as aM, type PaymentStatus as aN, PaymentStatuses as aO, type PickupPoint as aP, type PickupPointHours as aQ, type PickupPointsInput as aR, type PriceDisplay as aS, type ProductAvailability as aT, type ProductGroup as aU, type ProductLabel as aV, type ProductListItem as aW, type ProductMedia as aX, type ProductMediaVariant as aY, type ProductParameter as aZ, type ProductParameterGroup as a_, type FilterField as aa, type FulfillmentStatus as ab, FulfillmentStatuses as ac, type GiftCardBalance as ad, type GiftCardPurchaseInput as ae, type GiftCardPurchaseResult as af, type GiftCardSummary as ag, type LessonNote as ah, type LessonQuiz as ai, type LoginInput as aj, type LoyaltyBalance as ak, type LoyaltyNextTier as al, type LoyaltyProgram as am, type LoyaltySummary as an, type LoyaltyTier as ao, type LoyaltyTierPerks as ap, type LoyaltyTransaction as aq, type Menu as ar, type MenuItem as as, type MenuItemRef as at, type MenuItemType as au, type MessageResponse as av, type NewsletterOptInDefault as aw, type NewsletterSubscribeInput as ax, type NewsletterSubscribeResult as ay, type NewsletterUnsubscribeResult as az, type AddToCartInput as b, type ProductPrice as b0, type ProductPromotionSummary as b1, type ProductReview as b2, type ProductReviewsResponse as b3, type ProductSibling as b4, ProductSort as b5, type ProductSortValue as b6, type ProductVolumePrice as b7, type ProductsQuery as b8, type QuizAnswerInput as b9, type ShopSeo as bA, type ShopSeoIdentity as bB, type Sitemap as bC, type SitemapEntry as bD, type StockBehavior as bE, type StockMode as bF, type SubmitQuoteInput as bG, type SubmitReturnInput as bH, type SubmitReviewInput as bI, type Subscription as bJ, type SubscriptionAction as bK, type SubscriptionFrequency as bL, type SubscriptionItem as bM, type SubscriptionStatus as bN, type TaxBreakdownLine as bO, type VariantAxis as bP, type VariantAxisValue as bQ, type WishlistItem as bR, err as bS, ok as bT, toSdkError as bU, type QuizAnswerResult as ba, type QuizQuestion as bb, type QuizResult as bc, type QuoteItem as bd, type QuoteRequest as be, type RegisterInput as bf, type RegisterResult as bg, type RequestInterceptor as bh, type RequestInterceptorConfig as bi, type ResponseInterceptor as bj, type ResponseInterceptorData as bk, type ReturnRequest as bl, type ReturnRequestItem as bm, type ReturnStatus as bn, type ReturnStatusItem as bo, type ReturnableOrder as bp, type ReturnableOrderItem as bq, type SdkError as br, type ShippingMethodSummary as bs, type ShippingQuote as bt, type ShippingQuoteInput as bu, type ShopInfo as bv, type ShopScript as bw, type ShopScriptPlacement as bx, type ShopScriptType as by, type ShopScripts as bz, type AddressDetail as c, type AddressSuggestion as d, type AddressType as e, AddressTypes as f, type AuthTokens as g, type BackInStockSubscription as h, type BadgeTone as i, BehioApiError as j, type BehioErrorCode as k, type BehioEventHandler as l, type BehioEventType as m, BehioNetworkError as n, type BehioStorefrontConfig as o, type Bundle as p, type BundleItem as q, type Cart as r, type CartBundleLine as s, type CartBundleLineItem as t, type CartDiscount as u, type CartItem as v, type CartItemProduct as w, type CartPromotion as x, type Category as y, type CategoryDetail as z };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { P as ProductDetail, a as ProductVariant, B as BehioStorefront, S as SdkResult, C as CookieConsent } from './client-
|
|
2
|
-
export { A as ActivePromotion, b as AddToCartInput, c as AddressDetail, d as AddressSuggestion, e as AddressType, f as AddressTypes, g as AuthTokens, h as BackInStockSubscription, i as BadgeTone, j as BehioApiError, k as BehioErrorCode, l as BehioEventHandler, m as BehioEventType, n as BehioNetworkError, o as BehioStorefrontConfig, p as Bundle, q as BundleItem, r as Cart, s as CartBundleLine, t as CartBundleLineItem, u as CartDiscount, v as CartItem, w as CartItemProduct, x as CartPromotion, y as Category, z as CategoryDetail, D as CertificateVerification, E as CheckoutAddress, F as CheckoutInput, G as CheckoutPaymentMethod, H as CheckoutSettings, I as CookieConsentInput, J as CourseAttachment, K as CourseCertificate, L as CourseComment, M as CourseCommentReply, N as CourseCommentsList, O as CourseDetail, Q as CourseLesson, R as CourseListItem, T as CourseModule, U as CoursePostedComment, V as CourseProgress, W as CourseTutorMessage, X as CourseTutorThread, Y as CrossSellItem, Z as CustomerAddress, _ as CustomerProfile, $ as DigitalDownload, a0 as DownloadUrl, a1 as Facet, a2 as FacetAvailability, a3 as FacetCategory, a4 as FacetLabel, a5 as FacetPriceRange, a6 as FacetRange, a7 as FacetRatingBucket, a8 as FacetValue, a9 as FacetsResponse, aa as FilterField, ab as FulfillmentStatus, ac as FulfillmentStatuses, ad as GiftCardBalance, ae as GiftCardPurchaseInput, af as GiftCardPurchaseResult, ag as GiftCardSummary, ah as LessonNote, ai as LessonQuiz, aj as LoginInput, ak as LoyaltyBalance, al as LoyaltyNextTier, am as LoyaltyProgram, an as LoyaltySummary, ao as LoyaltyTier, ap as LoyaltyTierPerks, aq as LoyaltyTransaction, ar as Menu, as as MenuItem, at as MenuItemRef, au as MenuItemType, av as MessageResponse, aw as NewsletterOptInDefault, ax as NewsletterSubscribeInput, ay as NewsletterSubscribeResult, az as NewsletterUnsubscribeResult, aA as OrderAccessRequestResponse, aB as OrderAccessVerifyResponse, aC as OrderDetail, aD as OrderItem, aE as OrderListItem, aF as OrderStatus, aG as OrderStatusHistory, aH as OrderStatuses, aI as OrderTracking, aJ as Page, aK as PageAttachment, aL as PageDetail, aM as PaginatedResponse, aN as PaymentStatus, aO as PaymentStatuses, aP as PickupPoint, aQ as PickupPointHours, aR as PickupPointsInput, aS as PriceDisplay, aT as ProductAvailability, aU as ProductGroup, aV as ProductLabel, aW as ProductListItem, aX as ProductMedia, aY as ProductMediaVariant, aZ as ProductParameter, a_ as ProductParameterGroup, a$ as ProductParametersResponse, b0 as ProductPrice, b1 as ProductPromotionSummary, b2 as ProductReview, b3 as ProductReviewsResponse, b4 as ProductSibling, b5 as ProductSort, b6 as ProductSortValue, b7 as ProductVolumePrice, b8 as ProductsQuery, b9 as QuizAnswerInput, ba as QuizAnswerResult, bb as QuizQuestion, bc as QuizResult, bd as QuoteItem, be as QuoteRequest, bf as RegisterInput, bg as RegisterResult, bh as RequestInterceptor, bi as RequestInterceptorConfig, bj as ResponseInterceptor, bk as ResponseInterceptorData, bl as ReturnRequest, bm as ReturnRequestItem, bn as ReturnStatus, bo as ReturnStatusItem, bp as ReturnableOrder, bq as ReturnableOrderItem, br as SdkError, bs as ShippingMethodSummary, bt as ShippingQuote, bu as ShippingQuoteInput, bv as ShopInfo, bw as ShopScript, bx as ShopScriptPlacement, by as ShopScriptType, bz as ShopScripts, bA as ShopSeo, bB as ShopSeoIdentity, bC as
|
|
1
|
+
import { P as ProductDetail, a as ProductVariant, B as BehioStorefront, S as SdkResult, C as CookieConsent } from './client-YJtbTLts.mjs';
|
|
2
|
+
export { A as ActivePromotion, b as AddToCartInput, c as AddressDetail, d as AddressSuggestion, e as AddressType, f as AddressTypes, g as AuthTokens, h as BackInStockSubscription, i as BadgeTone, j as BehioApiError, k as BehioErrorCode, l as BehioEventHandler, m as BehioEventType, n as BehioNetworkError, o as BehioStorefrontConfig, p as Bundle, q as BundleItem, r as Cart, s as CartBundleLine, t as CartBundleLineItem, u as CartDiscount, v as CartItem, w as CartItemProduct, x as CartPromotion, y as Category, z as CategoryDetail, D as CertificateVerification, E as CheckoutAddress, F as CheckoutInput, G as CheckoutPaymentMethod, H as CheckoutSettings, I as CookieConsentInput, J as CourseAttachment, K as CourseCertificate, L as CourseComment, M as CourseCommentReply, N as CourseCommentsList, O as CourseDetail, Q as CourseLesson, R as CourseListItem, T as CourseModule, U as CoursePostedComment, V as CourseProgress, W as CourseTutorMessage, X as CourseTutorThread, Y as CrossSellItem, Z as CustomerAddress, _ as CustomerProfile, $ as DigitalDownload, a0 as DownloadUrl, a1 as Facet, a2 as FacetAvailability, a3 as FacetCategory, a4 as FacetLabel, a5 as FacetPriceRange, a6 as FacetRange, a7 as FacetRatingBucket, a8 as FacetValue, a9 as FacetsResponse, aa as FilterField, ab as FulfillmentStatus, ac as FulfillmentStatuses, ad as GiftCardBalance, ae as GiftCardPurchaseInput, af as GiftCardPurchaseResult, ag as GiftCardSummary, ah as LessonNote, ai as LessonQuiz, aj as LoginInput, ak as LoyaltyBalance, al as LoyaltyNextTier, am as LoyaltyProgram, an as LoyaltySummary, ao as LoyaltyTier, ap as LoyaltyTierPerks, aq as LoyaltyTransaction, ar as Menu, as as MenuItem, at as MenuItemRef, au as MenuItemType, av as MessageResponse, aw as NewsletterOptInDefault, ax as NewsletterSubscribeInput, ay as NewsletterSubscribeResult, az as NewsletterUnsubscribeResult, aA as OrderAccessRequestResponse, aB as OrderAccessVerifyResponse, aC as OrderDetail, aD as OrderItem, aE as OrderListItem, aF as OrderStatus, aG as OrderStatusHistory, aH as OrderStatuses, aI as OrderTracking, aJ as Page, aK as PageAttachment, aL as PageDetail, aM as PaginatedResponse, aN as PaymentStatus, aO as PaymentStatuses, aP as PickupPoint, aQ as PickupPointHours, aR as PickupPointsInput, aS as PriceDisplay, aT as ProductAvailability, aU as ProductGroup, aV as ProductLabel, aW as ProductListItem, aX as ProductMedia, aY as ProductMediaVariant, aZ as ProductParameter, a_ as ProductParameterGroup, a$ as ProductParametersResponse, b0 as ProductPrice, b1 as ProductPromotionSummary, b2 as ProductReview, b3 as ProductReviewsResponse, b4 as ProductSibling, b5 as ProductSort, b6 as ProductSortValue, b7 as ProductVolumePrice, b8 as ProductsQuery, b9 as QuizAnswerInput, ba as QuizAnswerResult, bb as QuizQuestion, bc as QuizResult, bd as QuoteItem, be as QuoteRequest, bf as RegisterInput, bg as RegisterResult, bh as RequestInterceptor, bi as RequestInterceptorConfig, bj as ResponseInterceptor, bk as ResponseInterceptorData, bl as ReturnRequest, bm as ReturnRequestItem, bn as ReturnStatus, bo as ReturnStatusItem, bp as ReturnableOrder, bq as ReturnableOrderItem, br as SdkError, bs as ShippingMethodSummary, bt as ShippingQuote, bu as ShippingQuoteInput, bv as ShopInfo, bw as ShopScript, bx as ShopScriptPlacement, by as ShopScriptType, bz as ShopScripts, bA as ShopSeo, bB as ShopSeoIdentity, bC as Sitemap, bD as SitemapEntry, bE as StockBehavior, bF as StockMode, bG as SubmitQuoteInput, bH as SubmitReturnInput, bI as SubmitReviewInput, bJ as Subscription, bK as SubscriptionAction, bL as SubscriptionFrequency, bM as SubscriptionItem, bN as SubscriptionStatus, bO as TaxBreakdownLine, bP as VariantAxis, bQ as VariantAxisValue, bR as WishlistItem, bS as err, bT as ok, bU as toSdkError } from './client-YJtbTLts.mjs';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Format a price amount with currency using Intl.NumberFormat.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { P as ProductDetail, a as ProductVariant, B as BehioStorefront, S as SdkResult, C as CookieConsent } from './client-
|
|
2
|
-
export { A as ActivePromotion, b as AddToCartInput, c as AddressDetail, d as AddressSuggestion, e as AddressType, f as AddressTypes, g as AuthTokens, h as BackInStockSubscription, i as BadgeTone, j as BehioApiError, k as BehioErrorCode, l as BehioEventHandler, m as BehioEventType, n as BehioNetworkError, o as BehioStorefrontConfig, p as Bundle, q as BundleItem, r as Cart, s as CartBundleLine, t as CartBundleLineItem, u as CartDiscount, v as CartItem, w as CartItemProduct, x as CartPromotion, y as Category, z as CategoryDetail, D as CertificateVerification, E as CheckoutAddress, F as CheckoutInput, G as CheckoutPaymentMethod, H as CheckoutSettings, I as CookieConsentInput, J as CourseAttachment, K as CourseCertificate, L as CourseComment, M as CourseCommentReply, N as CourseCommentsList, O as CourseDetail, Q as CourseLesson, R as CourseListItem, T as CourseModule, U as CoursePostedComment, V as CourseProgress, W as CourseTutorMessage, X as CourseTutorThread, Y as CrossSellItem, Z as CustomerAddress, _ as CustomerProfile, $ as DigitalDownload, a0 as DownloadUrl, a1 as Facet, a2 as FacetAvailability, a3 as FacetCategory, a4 as FacetLabel, a5 as FacetPriceRange, a6 as FacetRange, a7 as FacetRatingBucket, a8 as FacetValue, a9 as FacetsResponse, aa as FilterField, ab as FulfillmentStatus, ac as FulfillmentStatuses, ad as GiftCardBalance, ae as GiftCardPurchaseInput, af as GiftCardPurchaseResult, ag as GiftCardSummary, ah as LessonNote, ai as LessonQuiz, aj as LoginInput, ak as LoyaltyBalance, al as LoyaltyNextTier, am as LoyaltyProgram, an as LoyaltySummary, ao as LoyaltyTier, ap as LoyaltyTierPerks, aq as LoyaltyTransaction, ar as Menu, as as MenuItem, at as MenuItemRef, au as MenuItemType, av as MessageResponse, aw as NewsletterOptInDefault, ax as NewsletterSubscribeInput, ay as NewsletterSubscribeResult, az as NewsletterUnsubscribeResult, aA as OrderAccessRequestResponse, aB as OrderAccessVerifyResponse, aC as OrderDetail, aD as OrderItem, aE as OrderListItem, aF as OrderStatus, aG as OrderStatusHistory, aH as OrderStatuses, aI as OrderTracking, aJ as Page, aK as PageAttachment, aL as PageDetail, aM as PaginatedResponse, aN as PaymentStatus, aO as PaymentStatuses, aP as PickupPoint, aQ as PickupPointHours, aR as PickupPointsInput, aS as PriceDisplay, aT as ProductAvailability, aU as ProductGroup, aV as ProductLabel, aW as ProductListItem, aX as ProductMedia, aY as ProductMediaVariant, aZ as ProductParameter, a_ as ProductParameterGroup, a$ as ProductParametersResponse, b0 as ProductPrice, b1 as ProductPromotionSummary, b2 as ProductReview, b3 as ProductReviewsResponse, b4 as ProductSibling, b5 as ProductSort, b6 as ProductSortValue, b7 as ProductVolumePrice, b8 as ProductsQuery, b9 as QuizAnswerInput, ba as QuizAnswerResult, bb as QuizQuestion, bc as QuizResult, bd as QuoteItem, be as QuoteRequest, bf as RegisterInput, bg as RegisterResult, bh as RequestInterceptor, bi as RequestInterceptorConfig, bj as ResponseInterceptor, bk as ResponseInterceptorData, bl as ReturnRequest, bm as ReturnRequestItem, bn as ReturnStatus, bo as ReturnStatusItem, bp as ReturnableOrder, bq as ReturnableOrderItem, br as SdkError, bs as ShippingMethodSummary, bt as ShippingQuote, bu as ShippingQuoteInput, bv as ShopInfo, bw as ShopScript, bx as ShopScriptPlacement, by as ShopScriptType, bz as ShopScripts, bA as ShopSeo, bB as ShopSeoIdentity, bC as
|
|
1
|
+
import { P as ProductDetail, a as ProductVariant, B as BehioStorefront, S as SdkResult, C as CookieConsent } from './client-YJtbTLts.js';
|
|
2
|
+
export { A as ActivePromotion, b as AddToCartInput, c as AddressDetail, d as AddressSuggestion, e as AddressType, f as AddressTypes, g as AuthTokens, h as BackInStockSubscription, i as BadgeTone, j as BehioApiError, k as BehioErrorCode, l as BehioEventHandler, m as BehioEventType, n as BehioNetworkError, o as BehioStorefrontConfig, p as Bundle, q as BundleItem, r as Cart, s as CartBundleLine, t as CartBundleLineItem, u as CartDiscount, v as CartItem, w as CartItemProduct, x as CartPromotion, y as Category, z as CategoryDetail, D as CertificateVerification, E as CheckoutAddress, F as CheckoutInput, G as CheckoutPaymentMethod, H as CheckoutSettings, I as CookieConsentInput, J as CourseAttachment, K as CourseCertificate, L as CourseComment, M as CourseCommentReply, N as CourseCommentsList, O as CourseDetail, Q as CourseLesson, R as CourseListItem, T as CourseModule, U as CoursePostedComment, V as CourseProgress, W as CourseTutorMessage, X as CourseTutorThread, Y as CrossSellItem, Z as CustomerAddress, _ as CustomerProfile, $ as DigitalDownload, a0 as DownloadUrl, a1 as Facet, a2 as FacetAvailability, a3 as FacetCategory, a4 as FacetLabel, a5 as FacetPriceRange, a6 as FacetRange, a7 as FacetRatingBucket, a8 as FacetValue, a9 as FacetsResponse, aa as FilterField, ab as FulfillmentStatus, ac as FulfillmentStatuses, ad as GiftCardBalance, ae as GiftCardPurchaseInput, af as GiftCardPurchaseResult, ag as GiftCardSummary, ah as LessonNote, ai as LessonQuiz, aj as LoginInput, ak as LoyaltyBalance, al as LoyaltyNextTier, am as LoyaltyProgram, an as LoyaltySummary, ao as LoyaltyTier, ap as LoyaltyTierPerks, aq as LoyaltyTransaction, ar as Menu, as as MenuItem, at as MenuItemRef, au as MenuItemType, av as MessageResponse, aw as NewsletterOptInDefault, ax as NewsletterSubscribeInput, ay as NewsletterSubscribeResult, az as NewsletterUnsubscribeResult, aA as OrderAccessRequestResponse, aB as OrderAccessVerifyResponse, aC as OrderDetail, aD as OrderItem, aE as OrderListItem, aF as OrderStatus, aG as OrderStatusHistory, aH as OrderStatuses, aI as OrderTracking, aJ as Page, aK as PageAttachment, aL as PageDetail, aM as PaginatedResponse, aN as PaymentStatus, aO as PaymentStatuses, aP as PickupPoint, aQ as PickupPointHours, aR as PickupPointsInput, aS as PriceDisplay, aT as ProductAvailability, aU as ProductGroup, aV as ProductLabel, aW as ProductListItem, aX as ProductMedia, aY as ProductMediaVariant, aZ as ProductParameter, a_ as ProductParameterGroup, a$ as ProductParametersResponse, b0 as ProductPrice, b1 as ProductPromotionSummary, b2 as ProductReview, b3 as ProductReviewsResponse, b4 as ProductSibling, b5 as ProductSort, b6 as ProductSortValue, b7 as ProductVolumePrice, b8 as ProductsQuery, b9 as QuizAnswerInput, ba as QuizAnswerResult, bb as QuizQuestion, bc as QuizResult, bd as QuoteItem, be as QuoteRequest, bf as RegisterInput, bg as RegisterResult, bh as RequestInterceptor, bi as RequestInterceptorConfig, bj as ResponseInterceptor, bk as ResponseInterceptorData, bl as ReturnRequest, bm as ReturnRequestItem, bn as ReturnStatus, bo as ReturnStatusItem, bp as ReturnableOrder, bq as ReturnableOrderItem, br as SdkError, bs as ShippingMethodSummary, bt as ShippingQuote, bu as ShippingQuoteInput, bv as ShopInfo, bw as ShopScript, bx as ShopScriptPlacement, by as ShopScriptType, bz as ShopScripts, bA as ShopSeo, bB as ShopSeoIdentity, bC as Sitemap, bD as SitemapEntry, bE as StockBehavior, bF as StockMode, bG as SubmitQuoteInput, bH as SubmitReturnInput, bI as SubmitReviewInput, bJ as Subscription, bK as SubscriptionAction, bL as SubscriptionFrequency, bM as SubscriptionItem, bN as SubscriptionStatus, bO as TaxBreakdownLine, bP as VariantAxis, bQ as VariantAxisValue, bR as WishlistItem, bS as err, bT as ok, bU as toSdkError } from './client-YJtbTLts.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Format a price amount with currency using Intl.NumberFormat.
|
package/dist/index.js
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
var
|
|
13
|
+
var _chunkVI7OYYBDjs = require('./chunk-VI7OYYBD.js');
|
|
14
14
|
|
|
15
15
|
// src/react/utils/format-price.ts
|
|
16
16
|
function formatPrice(amount, currency, locale) {
|
|
@@ -243,4 +243,4 @@ async function revokeAnalyticsConsent(client) {
|
|
|
243
243
|
|
|
244
244
|
|
|
245
245
|
|
|
246
|
-
exports.AddressTypes =
|
|
246
|
+
exports.AddressTypes = _chunkVI7OYYBDjs.AddressTypes; exports.BehioApiError = _chunkVI7OYYBDjs.BehioApiError; exports.BehioNetworkError = _chunkVI7OYYBDjs.BehioNetworkError; exports.BehioStorefront = _chunkVI7OYYBDjs.BehioStorefront; exports.FulfillmentStatuses = _chunkVI7OYYBDjs.FulfillmentStatuses; exports.OrderStatuses = _chunkVI7OYYBDjs.OrderStatuses; exports.PaymentStatuses = _chunkVI7OYYBDjs.PaymentStatuses; exports.ProductSort = _chunkVI7OYYBDjs.ProductSort; exports.VARIANT_QUERY_PARAM = VARIANT_QUERY_PARAM; exports.availableAxisValues = availableAxisValues; exports.buildVariantComparison = buildVariantComparison; exports.err = _chunkVI7OYYBDjs.err; exports.findVariantByAttributes = findVariantByAttributes; exports.formatPrice = formatPrice; exports.generateVisitorId = generateVisitorId; exports.getStoredVisitorId = getStoredVisitorId; exports.grantAnalyticsConsent = grantAnalyticsConsent; exports.ok = _chunkVI7OYYBDjs.ok; exports.resolveVariantContent = resolveVariantContent; exports.revokeAnalyticsConsent = revokeAnalyticsConsent; exports.toSdkError = _chunkVI7OYYBDjs.toSdkError; exports.trackEcommerceEvent = trackEcommerceEvent; exports.variantFromQuery = variantFromQuery; exports.variantHref = variantHref;
|
package/dist/index.mjs
CHANGED
package/dist/next.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { o as BehioStorefrontConfig, B as BehioStorefront } from './client-
|
|
1
|
+
import { o as BehioStorefrontConfig, B as BehioStorefront } from './client-YJtbTLts.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 { o as BehioStorefrontConfig, B as BehioStorefront } from './client-
|
|
1
|
+
import { o as BehioStorefrontConfig, B as BehioStorefront } from './client-YJtbTLts.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 _chunkVI7OYYBDjs = require('./chunk-VI7OYYBD.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, _chunkVI7OYYBDjs.BehioStorefront)({
|
|
22
22
|
apiKey,
|
|
23
23
|
...baseUrl ? { baseUrl } : {},
|
|
24
24
|
...locale ? { locale } : {},
|
package/dist/next.mjs
CHANGED
package/dist/react.d.mts
CHANGED
|
@@ -633,6 +633,14 @@ interface ProductSibling {
|
|
|
633
633
|
axisValue: string | null;
|
|
634
634
|
swatchColor: string | null;
|
|
635
635
|
swatchImage: string | null;
|
|
636
|
+
/**
|
|
637
|
+
* Fotka té barvy, tedy titulní obrázek její karty.
|
|
638
|
+
*
|
|
639
|
+
* Šablona ji má použít rovnou v kolečku a hlavně si ji předem načíst
|
|
640
|
+
* (`<link rel="preload" as="image">` nebo skrytý `<img>`). Bez toho při
|
|
641
|
+
* přepnutí barvy problikne prázdné místo, než se nový obrázek stáhne.
|
|
642
|
+
*/
|
|
643
|
+
imageUrl: string | null;
|
|
636
644
|
/** Tahle karta je právě otevřená stránka. */
|
|
637
645
|
isCurrent: boolean;
|
|
638
646
|
}
|
|
@@ -723,6 +731,21 @@ interface ProductDetail extends ProductListItem {
|
|
|
723
731
|
*/
|
|
724
732
|
parameterGroups: ProductParameterGroup[];
|
|
725
733
|
seo: {
|
|
734
|
+
/**
|
|
735
|
+
* Slug of the page that should be canonical INSTEAD of this one. Empty
|
|
736
|
+
* means the page is canonical to itself.
|
|
737
|
+
*
|
|
738
|
+
* Only ever filled on a colour card in a shop whose merchant chose that
|
|
739
|
+
* one product page represents the product in search (catalog split
|
|
740
|
+
* indexing = PARENT_PAGE). Added in SDK 1.4.0.
|
|
741
|
+
*/
|
|
742
|
+
canonicalSlug?: string | null;
|
|
743
|
+
/**
|
|
744
|
+
* `true` = render `noindex, follow`. Set on a parent product that colour
|
|
745
|
+
* cards have taken over, so it stops competing with its own cards.
|
|
746
|
+
* Added in SDK 1.4.0.
|
|
747
|
+
*/
|
|
748
|
+
noIndex?: boolean;
|
|
726
749
|
title?: string | null;
|
|
727
750
|
description?: string | null;
|
|
728
751
|
keywords?: string | null;
|
|
@@ -2243,6 +2266,28 @@ interface SubmitQuoteInput {
|
|
|
2243
2266
|
requestedPrice?: number;
|
|
2244
2267
|
}[];
|
|
2245
2268
|
}
|
|
2269
|
+
/** One URL for the sitemap. Added in SDK 1.4.0. */
|
|
2270
|
+
interface SitemapEntry {
|
|
2271
|
+
/** Slug without any prefix; the template builds the path. */
|
|
2272
|
+
slug: string;
|
|
2273
|
+
/** Last change (epoch ms) for `lastmod`. */
|
|
2274
|
+
updatedAt: number;
|
|
2275
|
+
}
|
|
2276
|
+
/**
|
|
2277
|
+
* Everything the shop wants search engines to crawl, already filtered by the
|
|
2278
|
+
* merchant's indexing choice. Added in SDK 1.4.0.
|
|
2279
|
+
*
|
|
2280
|
+
* Build the sitemap from THIS, not from `getProducts`: which page belongs in
|
|
2281
|
+
* the index is a catalog rule (a product split into colour cards publishes
|
|
2282
|
+
* either the cards or the parent, never both), and a template that lists
|
|
2283
|
+
* `getProducts` gets it wrong the moment the merchant changes the setting.
|
|
2284
|
+
*/
|
|
2285
|
+
interface Sitemap {
|
|
2286
|
+
locale: string;
|
|
2287
|
+
products: SitemapEntry[];
|
|
2288
|
+
categories: SitemapEntry[];
|
|
2289
|
+
pages: SitemapEntry[];
|
|
2290
|
+
}
|
|
2246
2291
|
|
|
2247
2292
|
declare class BehioStorefront {
|
|
2248
2293
|
private baseUrl;
|
|
@@ -2438,6 +2483,11 @@ declare class CatalogModule {
|
|
|
2438
2483
|
locale?: string;
|
|
2439
2484
|
currency?: string;
|
|
2440
2485
|
}): Promise<SdkResult<ProductDetail>>;
|
|
2486
|
+
/**
|
|
2487
|
+
* URLs for the sitemap, already filtered by the merchant's indexing choice
|
|
2488
|
+
* (see `Sitemap`). Added in SDK 1.4.0.
|
|
2489
|
+
*/
|
|
2490
|
+
getSitemap(locale?: string): Promise<SdkResult<Sitemap>>;
|
|
2441
2491
|
/** Get category tree */
|
|
2442
2492
|
getCategories(locale?: string): Promise<SdkResult<{
|
|
2443
2493
|
categories: Category[];
|
package/dist/react.d.ts
CHANGED
|
@@ -633,6 +633,14 @@ interface ProductSibling {
|
|
|
633
633
|
axisValue: string | null;
|
|
634
634
|
swatchColor: string | null;
|
|
635
635
|
swatchImage: string | null;
|
|
636
|
+
/**
|
|
637
|
+
* Fotka té barvy, tedy titulní obrázek její karty.
|
|
638
|
+
*
|
|
639
|
+
* Šablona ji má použít rovnou v kolečku a hlavně si ji předem načíst
|
|
640
|
+
* (`<link rel="preload" as="image">` nebo skrytý `<img>`). Bez toho při
|
|
641
|
+
* přepnutí barvy problikne prázdné místo, než se nový obrázek stáhne.
|
|
642
|
+
*/
|
|
643
|
+
imageUrl: string | null;
|
|
636
644
|
/** Tahle karta je právě otevřená stránka. */
|
|
637
645
|
isCurrent: boolean;
|
|
638
646
|
}
|
|
@@ -723,6 +731,21 @@ interface ProductDetail extends ProductListItem {
|
|
|
723
731
|
*/
|
|
724
732
|
parameterGroups: ProductParameterGroup[];
|
|
725
733
|
seo: {
|
|
734
|
+
/**
|
|
735
|
+
* Slug of the page that should be canonical INSTEAD of this one. Empty
|
|
736
|
+
* means the page is canonical to itself.
|
|
737
|
+
*
|
|
738
|
+
* Only ever filled on a colour card in a shop whose merchant chose that
|
|
739
|
+
* one product page represents the product in search (catalog split
|
|
740
|
+
* indexing = PARENT_PAGE). Added in SDK 1.4.0.
|
|
741
|
+
*/
|
|
742
|
+
canonicalSlug?: string | null;
|
|
743
|
+
/**
|
|
744
|
+
* `true` = render `noindex, follow`. Set on a parent product that colour
|
|
745
|
+
* cards have taken over, so it stops competing with its own cards.
|
|
746
|
+
* Added in SDK 1.4.0.
|
|
747
|
+
*/
|
|
748
|
+
noIndex?: boolean;
|
|
726
749
|
title?: string | null;
|
|
727
750
|
description?: string | null;
|
|
728
751
|
keywords?: string | null;
|
|
@@ -2243,6 +2266,28 @@ interface SubmitQuoteInput {
|
|
|
2243
2266
|
requestedPrice?: number;
|
|
2244
2267
|
}[];
|
|
2245
2268
|
}
|
|
2269
|
+
/** One URL for the sitemap. Added in SDK 1.4.0. */
|
|
2270
|
+
interface SitemapEntry {
|
|
2271
|
+
/** Slug without any prefix; the template builds the path. */
|
|
2272
|
+
slug: string;
|
|
2273
|
+
/** Last change (epoch ms) for `lastmod`. */
|
|
2274
|
+
updatedAt: number;
|
|
2275
|
+
}
|
|
2276
|
+
/**
|
|
2277
|
+
* Everything the shop wants search engines to crawl, already filtered by the
|
|
2278
|
+
* merchant's indexing choice. Added in SDK 1.4.0.
|
|
2279
|
+
*
|
|
2280
|
+
* Build the sitemap from THIS, not from `getProducts`: which page belongs in
|
|
2281
|
+
* the index is a catalog rule (a product split into colour cards publishes
|
|
2282
|
+
* either the cards or the parent, never both), and a template that lists
|
|
2283
|
+
* `getProducts` gets it wrong the moment the merchant changes the setting.
|
|
2284
|
+
*/
|
|
2285
|
+
interface Sitemap {
|
|
2286
|
+
locale: string;
|
|
2287
|
+
products: SitemapEntry[];
|
|
2288
|
+
categories: SitemapEntry[];
|
|
2289
|
+
pages: SitemapEntry[];
|
|
2290
|
+
}
|
|
2246
2291
|
|
|
2247
2292
|
declare class BehioStorefront {
|
|
2248
2293
|
private baseUrl;
|
|
@@ -2438,6 +2483,11 @@ declare class CatalogModule {
|
|
|
2438
2483
|
locale?: string;
|
|
2439
2484
|
currency?: string;
|
|
2440
2485
|
}): Promise<SdkResult<ProductDetail>>;
|
|
2486
|
+
/**
|
|
2487
|
+
* URLs for the sitemap, already filtered by the merchant's indexing choice
|
|
2488
|
+
* (see `Sitemap`). Added in SDK 1.4.0.
|
|
2489
|
+
*/
|
|
2490
|
+
getSitemap(locale?: string): Promise<SdkResult<Sitemap>>;
|
|
2441
2491
|
/** Get category tree */
|
|
2442
2492
|
getCategories(locale?: string): Promise<SdkResult<{
|
|
2443
2493
|
categories: Category[];
|
package/dist/react.js
CHANGED
|
@@ -669,6 +669,15 @@ var CatalogModule = class {
|
|
|
669
669
|
}
|
|
670
670
|
);
|
|
671
671
|
}
|
|
672
|
+
/**
|
|
673
|
+
* URLs for the sitemap, already filtered by the merchant's indexing choice
|
|
674
|
+
* (see `Sitemap`). Added in SDK 1.4.0.
|
|
675
|
+
*/
|
|
676
|
+
async getSitemap(locale) {
|
|
677
|
+
return this.client.request("GET", "/catalog/sitemap", {
|
|
678
|
+
query: { locale }
|
|
679
|
+
});
|
|
680
|
+
}
|
|
672
681
|
/** Get category tree */
|
|
673
682
|
async getCategories(locale) {
|
|
674
683
|
const res = await this.client.request("GET", "/catalog/categories", { query: { locale } });
|
package/dist/react.mjs
CHANGED
|
@@ -566,6 +566,15 @@ var CatalogModule = class {
|
|
|
566
566
|
}
|
|
567
567
|
);
|
|
568
568
|
}
|
|
569
|
+
/**
|
|
570
|
+
* URLs for the sitemap, already filtered by the merchant's indexing choice
|
|
571
|
+
* (see `Sitemap`). Added in SDK 1.4.0.
|
|
572
|
+
*/
|
|
573
|
+
async getSitemap(locale) {
|
|
574
|
+
return this.client.request("GET", "/catalog/sitemap", {
|
|
575
|
+
query: { locale }
|
|
576
|
+
});
|
|
577
|
+
}
|
|
569
578
|
/** Get category tree */
|
|
570
579
|
async getCategories(locale) {
|
|
571
580
|
const res = await this.client.request("GET", "/catalog/categories", { query: { locale } });
|