@lightspeed/ecom-headless 1.1.2 → 1.1.3

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.
@@ -1624,6 +1624,57 @@ interface Translations {
1624
1624
  [languageCode: string]: string;
1625
1625
  }
1626
1626
 
1627
+ type GetReviewsResponse = {
1628
+ /** Total number of reviews in store */
1629
+ total: number;
1630
+ /** Number of reviews in this response */
1631
+ count: number;
1632
+ /** Pagination offset */
1633
+ offset: number;
1634
+ /** Pagination limit */
1635
+ limit: number;
1636
+ /** Array of review items */
1637
+ items: Array<{
1638
+ /** Unique review identifier */
1639
+ id: number;
1640
+ /** Product ID associated with the review */
1641
+ productId: number;
1642
+ /** Product name at time of review */
1643
+ productName: string;
1644
+ /** Product SKU at time of review */
1645
+ productSku: string;
1646
+ /** Review rating (1-5 stars) */
1647
+ rating: number;
1648
+ /** Review text content */
1649
+ review: string;
1650
+ /** Review status: PUBLISHED or MODERATED */
1651
+ status: 'PUBLISHED' | 'MODERATED';
1652
+ /** Review creation date (ISO format) */
1653
+ createDate: string;
1654
+ /** Review creation timestamp (Unix) */
1655
+ createTimestamp: number;
1656
+ /** Last update date (ISO format) */
1657
+ updateDate: string;
1658
+ /** Last update timestamp (Unix) */
1659
+ updateTimestamp: number;
1660
+ /** Language code */
1661
+ lang: string;
1662
+ /** Reviewer information */
1663
+ reviewerInfo: {
1664
+ name: string;
1665
+ country: string;
1666
+ };
1667
+ }>;
1668
+ };
1669
+ type GetReviewsParams = AsQueryParams<{
1670
+ /** Number of reviews to skip (default: 0) */
1671
+ offset?: number;
1672
+ /** Maximum number of reviews to return (default: 20, max: 100) */
1673
+ limit?: number;
1674
+ /** Filter reviews by product ID */
1675
+ productId?: number;
1676
+ }>;
1677
+
1627
1678
  interface Account {
1628
1679
  /** Full store owner name */
1629
1680
  accountName: string;
@@ -2821,4 +2872,4 @@ interface ApiConfig {
2821
2872
  }
2822
2873
 
2823
2874
  export { SortByValues as S };
2824
- export type { SearchProductBrandsParams as $, ProductRelatedCategory as A, ProductRelatedProducts as B, Category as C, ProductShipping as D, ProductRecurringChargeSettings as E, ProductSubscriptionSettings as F, ProductTax as G, ProductType as H, Product as I, SearchProductsResponse as J, SearchProductsParams as K, LowestPriceSettings as L, GetProductResponse as M, GetProductParams as N, DownloadProductFileResponse as O, ProductAttributeVisibility as P, DownloadProductFileParams as Q, SearchProductVariationsResponse as R, SearchProductVariationsParams as T, GetProductVariationResponse as U, GetProductVariationParams as V, WholesalePrice as W, SearchProductTypesResponse as X, GetProductTypeResponse as Y, GetProductTypeParams as Z, SearchProductBrandsResponse as _, CategoryImage as a, Tax as a$, PaginatedResponse as a0, QueryParams as a1, AsQueryParams as a2, Translations as a3, Account as a4, LimitsAndRestrictions as a5, AccountBilling as a6, BusinessRegistrationID as a7, Company as a8, DesignSettings as a9, ProductFiltersSettings as aA, FlatRate as aB, RatesTable as aC, Rates as aD, RateCondition as aE, Rate as aF, RegistrationAnswers as aG, SalePrice as aH, HandlingFee as aI, CarrierMethod as aJ, PostageDimensions as aK, CarrierSettings as aL, BusinessHours as aM, BlackoutDates as aN, ShippingOption as aO, Shipping as aP, GeoPolygon as aQ, StoreZone as aR, SocialLink as aS, SocialLinksSettings as aT, StarterSite as aU, StoreProfile as aV, AbandonedSales as aW, StoreSettings as aX, RecurringSubscriptionsSettings as aY, SupportedPaymentMethodsStatuses as aZ, TaxRule as a_, FbMessengerSettings as aa, FeatureToggle as ab, AddressFormat as ac, FormatsAndUnits as ad, GeneralInfo as ae, GiftCardProduct as af, GiftCardSettings as ag, Languages as ah, LegalPage as ai, LegalPagesSettings as aj, MailNotificationsSettings as ak, CustomerMarketingMessages as al, AdminMessages as am, CustomerOrderMessages as an, MailNotifications as ao, MailchimpSettings as ap, OrderInvoiceSettings as aq, PaymentShippingSettings as ar, InstructionsForCustomer as as, PaymentSurcharge as at, PaymentOption as au, ApplePay as av, ApplePayOptions as aw, Payment as ax, PhoneNotifications as ay, FilterSection as az, CategoryImageAlt as b, TaxSettings as b0, CustomTipSettings as b1, TipsSettings as b2, GetStoreProfileResponse as b3, GetStoreProfileParams as b4, ApiConfig as b5, SearchCategoriesResponse as c, SearchCategoriesParams as d, SearchCategoriesByPathResponse as e, SearchCategoriesByPathParams as f, ProductAttributeType as g, ProductAttribute as h, ProductBrand as i, ProductCategory as j, ProductCombinationOption as k, ProductCombination as l, ProductCompositeComponent as m, ProductDimensions as n, ProductFavorites as o, ProductFile as p, ProductDominatingColor as q, ProductBorderInfo as r, ProductGalleryImage as s, ProductImage as t, ProductImageAlt as u, ProductMediaImage as v, ProductMediaVideo as w, ProductMedia as x, ProductOptionChoice as y, ProductOption as z };
2875
+ export type { SearchProductBrandsParams as $, ProductRelatedCategory as A, ProductRelatedProducts as B, Category as C, ProductShipping as D, ProductRecurringChargeSettings as E, ProductSubscriptionSettings as F, ProductTax as G, ProductType as H, Product as I, SearchProductsResponse as J, SearchProductsParams as K, LowestPriceSettings as L, GetProductResponse as M, GetProductParams as N, DownloadProductFileResponse as O, ProductAttributeVisibility as P, DownloadProductFileParams as Q, SearchProductVariationsResponse as R, SearchProductVariationsParams as T, GetProductVariationResponse as U, GetProductVariationParams as V, WholesalePrice as W, SearchProductTypesResponse as X, GetProductTypeResponse as Y, GetProductTypeParams as Z, SearchProductBrandsResponse as _, CategoryImage as a, SupportedPaymentMethodsStatuses as a$, GetReviewsResponse as a0, GetReviewsParams as a1, PaginatedResponse as a2, QueryParams as a3, AsQueryParams as a4, Translations as a5, Account as a6, LimitsAndRestrictions as a7, AccountBilling as a8, BusinessRegistrationID as a9, PhoneNotifications as aA, FilterSection as aB, ProductFiltersSettings as aC, FlatRate as aD, RatesTable as aE, Rates as aF, RateCondition as aG, Rate as aH, RegistrationAnswers as aI, SalePrice as aJ, HandlingFee as aK, CarrierMethod as aL, PostageDimensions as aM, CarrierSettings as aN, BusinessHours as aO, BlackoutDates as aP, ShippingOption as aQ, Shipping as aR, GeoPolygon as aS, StoreZone as aT, SocialLink as aU, SocialLinksSettings as aV, StarterSite as aW, StoreProfile as aX, AbandonedSales as aY, StoreSettings as aZ, RecurringSubscriptionsSettings as a_, Company as aa, DesignSettings as ab, FbMessengerSettings as ac, FeatureToggle as ad, AddressFormat as ae, FormatsAndUnits as af, GeneralInfo as ag, GiftCardProduct as ah, GiftCardSettings as ai, Languages as aj, LegalPage as ak, LegalPagesSettings as al, MailNotificationsSettings as am, CustomerMarketingMessages as an, AdminMessages as ao, CustomerOrderMessages as ap, MailNotifications as aq, MailchimpSettings as ar, OrderInvoiceSettings as as, PaymentShippingSettings as at, InstructionsForCustomer as au, PaymentSurcharge as av, PaymentOption as aw, ApplePay as ax, ApplePayOptions as ay, Payment as az, CategoryImageAlt as b, TaxRule as b0, Tax as b1, TaxSettings as b2, CustomTipSettings as b3, TipsSettings as b4, GetStoreProfileResponse as b5, GetStoreProfileParams as b6, ApiConfig as b7, SearchCategoriesResponse as c, SearchCategoriesParams as d, SearchCategoriesByPathResponse as e, SearchCategoriesByPathParams as f, ProductAttributeType as g, ProductAttribute as h, ProductBrand as i, ProductCategory as j, ProductCombinationOption as k, ProductCombination as l, ProductCompositeComponent as m, ProductDimensions as n, ProductFavorites as o, ProductFile as p, ProductDominatingColor as q, ProductBorderInfo as r, ProductGalleryImage as s, ProductImage as t, ProductImageAlt as u, ProductMediaImage as v, ProductMediaVideo as w, ProductMedia as x, ProductOptionChoice as y, ProductOption as z };
@@ -1624,6 +1624,57 @@ interface Translations {
1624
1624
  [languageCode: string]: string;
1625
1625
  }
1626
1626
 
1627
+ type GetReviewsResponse = {
1628
+ /** Total number of reviews in store */
1629
+ total: number;
1630
+ /** Number of reviews in this response */
1631
+ count: number;
1632
+ /** Pagination offset */
1633
+ offset: number;
1634
+ /** Pagination limit */
1635
+ limit: number;
1636
+ /** Array of review items */
1637
+ items: Array<{
1638
+ /** Unique review identifier */
1639
+ id: number;
1640
+ /** Product ID associated with the review */
1641
+ productId: number;
1642
+ /** Product name at time of review */
1643
+ productName: string;
1644
+ /** Product SKU at time of review */
1645
+ productSku: string;
1646
+ /** Review rating (1-5 stars) */
1647
+ rating: number;
1648
+ /** Review text content */
1649
+ review: string;
1650
+ /** Review status: PUBLISHED or MODERATED */
1651
+ status: 'PUBLISHED' | 'MODERATED';
1652
+ /** Review creation date (ISO format) */
1653
+ createDate: string;
1654
+ /** Review creation timestamp (Unix) */
1655
+ createTimestamp: number;
1656
+ /** Last update date (ISO format) */
1657
+ updateDate: string;
1658
+ /** Last update timestamp (Unix) */
1659
+ updateTimestamp: number;
1660
+ /** Language code */
1661
+ lang: string;
1662
+ /** Reviewer information */
1663
+ reviewerInfo: {
1664
+ name: string;
1665
+ country: string;
1666
+ };
1667
+ }>;
1668
+ };
1669
+ type GetReviewsParams = AsQueryParams<{
1670
+ /** Number of reviews to skip (default: 0) */
1671
+ offset?: number;
1672
+ /** Maximum number of reviews to return (default: 20, max: 100) */
1673
+ limit?: number;
1674
+ /** Filter reviews by product ID */
1675
+ productId?: number;
1676
+ }>;
1677
+
1627
1678
  interface Account {
1628
1679
  /** Full store owner name */
1629
1680
  accountName: string;
@@ -2821,4 +2872,4 @@ interface ApiConfig {
2821
2872
  }
2822
2873
 
2823
2874
  export { SortByValues as S };
2824
- export type { SearchProductBrandsParams as $, ProductRelatedCategory as A, ProductRelatedProducts as B, Category as C, ProductShipping as D, ProductRecurringChargeSettings as E, ProductSubscriptionSettings as F, ProductTax as G, ProductType as H, Product as I, SearchProductsResponse as J, SearchProductsParams as K, LowestPriceSettings as L, GetProductResponse as M, GetProductParams as N, DownloadProductFileResponse as O, ProductAttributeVisibility as P, DownloadProductFileParams as Q, SearchProductVariationsResponse as R, SearchProductVariationsParams as T, GetProductVariationResponse as U, GetProductVariationParams as V, WholesalePrice as W, SearchProductTypesResponse as X, GetProductTypeResponse as Y, GetProductTypeParams as Z, SearchProductBrandsResponse as _, CategoryImage as a, Tax as a$, PaginatedResponse as a0, QueryParams as a1, AsQueryParams as a2, Translations as a3, Account as a4, LimitsAndRestrictions as a5, AccountBilling as a6, BusinessRegistrationID as a7, Company as a8, DesignSettings as a9, ProductFiltersSettings as aA, FlatRate as aB, RatesTable as aC, Rates as aD, RateCondition as aE, Rate as aF, RegistrationAnswers as aG, SalePrice as aH, HandlingFee as aI, CarrierMethod as aJ, PostageDimensions as aK, CarrierSettings as aL, BusinessHours as aM, BlackoutDates as aN, ShippingOption as aO, Shipping as aP, GeoPolygon as aQ, StoreZone as aR, SocialLink as aS, SocialLinksSettings as aT, StarterSite as aU, StoreProfile as aV, AbandonedSales as aW, StoreSettings as aX, RecurringSubscriptionsSettings as aY, SupportedPaymentMethodsStatuses as aZ, TaxRule as a_, FbMessengerSettings as aa, FeatureToggle as ab, AddressFormat as ac, FormatsAndUnits as ad, GeneralInfo as ae, GiftCardProduct as af, GiftCardSettings as ag, Languages as ah, LegalPage as ai, LegalPagesSettings as aj, MailNotificationsSettings as ak, CustomerMarketingMessages as al, AdminMessages as am, CustomerOrderMessages as an, MailNotifications as ao, MailchimpSettings as ap, OrderInvoiceSettings as aq, PaymentShippingSettings as ar, InstructionsForCustomer as as, PaymentSurcharge as at, PaymentOption as au, ApplePay as av, ApplePayOptions as aw, Payment as ax, PhoneNotifications as ay, FilterSection as az, CategoryImageAlt as b, TaxSettings as b0, CustomTipSettings as b1, TipsSettings as b2, GetStoreProfileResponse as b3, GetStoreProfileParams as b4, ApiConfig as b5, SearchCategoriesResponse as c, SearchCategoriesParams as d, SearchCategoriesByPathResponse as e, SearchCategoriesByPathParams as f, ProductAttributeType as g, ProductAttribute as h, ProductBrand as i, ProductCategory as j, ProductCombinationOption as k, ProductCombination as l, ProductCompositeComponent as m, ProductDimensions as n, ProductFavorites as o, ProductFile as p, ProductDominatingColor as q, ProductBorderInfo as r, ProductGalleryImage as s, ProductImage as t, ProductImageAlt as u, ProductMediaImage as v, ProductMediaVideo as w, ProductMedia as x, ProductOptionChoice as y, ProductOption as z };
2875
+ export type { SearchProductBrandsParams as $, ProductRelatedCategory as A, ProductRelatedProducts as B, Category as C, ProductShipping as D, ProductRecurringChargeSettings as E, ProductSubscriptionSettings as F, ProductTax as G, ProductType as H, Product as I, SearchProductsResponse as J, SearchProductsParams as K, LowestPriceSettings as L, GetProductResponse as M, GetProductParams as N, DownloadProductFileResponse as O, ProductAttributeVisibility as P, DownloadProductFileParams as Q, SearchProductVariationsResponse as R, SearchProductVariationsParams as T, GetProductVariationResponse as U, GetProductVariationParams as V, WholesalePrice as W, SearchProductTypesResponse as X, GetProductTypeResponse as Y, GetProductTypeParams as Z, SearchProductBrandsResponse as _, CategoryImage as a, SupportedPaymentMethodsStatuses as a$, GetReviewsResponse as a0, GetReviewsParams as a1, PaginatedResponse as a2, QueryParams as a3, AsQueryParams as a4, Translations as a5, Account as a6, LimitsAndRestrictions as a7, AccountBilling as a8, BusinessRegistrationID as a9, PhoneNotifications as aA, FilterSection as aB, ProductFiltersSettings as aC, FlatRate as aD, RatesTable as aE, Rates as aF, RateCondition as aG, Rate as aH, RegistrationAnswers as aI, SalePrice as aJ, HandlingFee as aK, CarrierMethod as aL, PostageDimensions as aM, CarrierSettings as aN, BusinessHours as aO, BlackoutDates as aP, ShippingOption as aQ, Shipping as aR, GeoPolygon as aS, StoreZone as aT, SocialLink as aU, SocialLinksSettings as aV, StarterSite as aW, StoreProfile as aX, AbandonedSales as aY, StoreSettings as aZ, RecurringSubscriptionsSettings as a_, Company as aa, DesignSettings as ab, FbMessengerSettings as ac, FeatureToggle as ad, AddressFormat as ae, FormatsAndUnits as af, GeneralInfo as ag, GiftCardProduct as ah, GiftCardSettings as ai, Languages as aj, LegalPage as ak, LegalPagesSettings as al, MailNotificationsSettings as am, CustomerMarketingMessages as an, AdminMessages as ao, CustomerOrderMessages as ap, MailNotifications as aq, MailchimpSettings as ar, OrderInvoiceSettings as as, PaymentShippingSettings as at, InstructionsForCustomer as au, PaymentSurcharge as av, PaymentOption as aw, ApplePay as ax, ApplePayOptions as ay, Payment as az, CategoryImageAlt as b, TaxRule as b0, Tax as b1, TaxSettings as b2, CustomTipSettings as b3, TipsSettings as b4, GetStoreProfileResponse as b5, GetStoreProfileParams as b6, ApiConfig as b7, SearchCategoriesResponse as c, SearchCategoriesParams as d, SearchCategoriesByPathResponse as e, SearchCategoriesByPathParams as f, ProductAttributeType as g, ProductAttribute as h, ProductBrand as i, ProductCategory as j, ProductCombinationOption as k, ProductCombination as l, ProductCompositeComponent as m, ProductDimensions as n, ProductFavorites as o, ProductFile as p, ProductDominatingColor as q, ProductBorderInfo as r, ProductGalleryImage as s, ProductImage as t, ProductImageAlt as u, ProductMediaImage as v, ProductMediaVideo as w, ProductMedia as x, ProductOptionChoice as y, ProductOption as z };
@@ -1624,6 +1624,57 @@ interface Translations {
1624
1624
  [languageCode: string]: string;
1625
1625
  }
1626
1626
 
1627
+ type GetReviewsResponse = {
1628
+ /** Total number of reviews in store */
1629
+ total: number;
1630
+ /** Number of reviews in this response */
1631
+ count: number;
1632
+ /** Pagination offset */
1633
+ offset: number;
1634
+ /** Pagination limit */
1635
+ limit: number;
1636
+ /** Array of review items */
1637
+ items: Array<{
1638
+ /** Unique review identifier */
1639
+ id: number;
1640
+ /** Product ID associated with the review */
1641
+ productId: number;
1642
+ /** Product name at time of review */
1643
+ productName: string;
1644
+ /** Product SKU at time of review */
1645
+ productSku: string;
1646
+ /** Review rating (1-5 stars) */
1647
+ rating: number;
1648
+ /** Review text content */
1649
+ review: string;
1650
+ /** Review status: PUBLISHED or MODERATED */
1651
+ status: 'PUBLISHED' | 'MODERATED';
1652
+ /** Review creation date (ISO format) */
1653
+ createDate: string;
1654
+ /** Review creation timestamp (Unix) */
1655
+ createTimestamp: number;
1656
+ /** Last update date (ISO format) */
1657
+ updateDate: string;
1658
+ /** Last update timestamp (Unix) */
1659
+ updateTimestamp: number;
1660
+ /** Language code */
1661
+ lang: string;
1662
+ /** Reviewer information */
1663
+ reviewerInfo: {
1664
+ name: string;
1665
+ country: string;
1666
+ };
1667
+ }>;
1668
+ };
1669
+ type GetReviewsParams = AsQueryParams<{
1670
+ /** Number of reviews to skip (default: 0) */
1671
+ offset?: number;
1672
+ /** Maximum number of reviews to return (default: 20, max: 100) */
1673
+ limit?: number;
1674
+ /** Filter reviews by product ID */
1675
+ productId?: number;
1676
+ }>;
1677
+
1627
1678
  interface Account {
1628
1679
  /** Full store owner name */
1629
1680
  accountName: string;
@@ -2821,4 +2872,4 @@ interface ApiConfig {
2821
2872
  }
2822
2873
 
2823
2874
  export { SortByValues as S };
2824
- export type { SearchProductBrandsParams as $, ProductRelatedCategory as A, ProductRelatedProducts as B, Category as C, ProductShipping as D, ProductRecurringChargeSettings as E, ProductSubscriptionSettings as F, ProductTax as G, ProductType as H, Product as I, SearchProductsResponse as J, SearchProductsParams as K, LowestPriceSettings as L, GetProductResponse as M, GetProductParams as N, DownloadProductFileResponse as O, ProductAttributeVisibility as P, DownloadProductFileParams as Q, SearchProductVariationsResponse as R, SearchProductVariationsParams as T, GetProductVariationResponse as U, GetProductVariationParams as V, WholesalePrice as W, SearchProductTypesResponse as X, GetProductTypeResponse as Y, GetProductTypeParams as Z, SearchProductBrandsResponse as _, CategoryImage as a, Tax as a$, PaginatedResponse as a0, QueryParams as a1, AsQueryParams as a2, Translations as a3, Account as a4, LimitsAndRestrictions as a5, AccountBilling as a6, BusinessRegistrationID as a7, Company as a8, DesignSettings as a9, ProductFiltersSettings as aA, FlatRate as aB, RatesTable as aC, Rates as aD, RateCondition as aE, Rate as aF, RegistrationAnswers as aG, SalePrice as aH, HandlingFee as aI, CarrierMethod as aJ, PostageDimensions as aK, CarrierSettings as aL, BusinessHours as aM, BlackoutDates as aN, ShippingOption as aO, Shipping as aP, GeoPolygon as aQ, StoreZone as aR, SocialLink as aS, SocialLinksSettings as aT, StarterSite as aU, StoreProfile as aV, AbandonedSales as aW, StoreSettings as aX, RecurringSubscriptionsSettings as aY, SupportedPaymentMethodsStatuses as aZ, TaxRule as a_, FbMessengerSettings as aa, FeatureToggle as ab, AddressFormat as ac, FormatsAndUnits as ad, GeneralInfo as ae, GiftCardProduct as af, GiftCardSettings as ag, Languages as ah, LegalPage as ai, LegalPagesSettings as aj, MailNotificationsSettings as ak, CustomerMarketingMessages as al, AdminMessages as am, CustomerOrderMessages as an, MailNotifications as ao, MailchimpSettings as ap, OrderInvoiceSettings as aq, PaymentShippingSettings as ar, InstructionsForCustomer as as, PaymentSurcharge as at, PaymentOption as au, ApplePay as av, ApplePayOptions as aw, Payment as ax, PhoneNotifications as ay, FilterSection as az, CategoryImageAlt as b, TaxSettings as b0, CustomTipSettings as b1, TipsSettings as b2, GetStoreProfileResponse as b3, GetStoreProfileParams as b4, ApiConfig as b5, SearchCategoriesResponse as c, SearchCategoriesParams as d, SearchCategoriesByPathResponse as e, SearchCategoriesByPathParams as f, ProductAttributeType as g, ProductAttribute as h, ProductBrand as i, ProductCategory as j, ProductCombinationOption as k, ProductCombination as l, ProductCompositeComponent as m, ProductDimensions as n, ProductFavorites as o, ProductFile as p, ProductDominatingColor as q, ProductBorderInfo as r, ProductGalleryImage as s, ProductImage as t, ProductImageAlt as u, ProductMediaImage as v, ProductMediaVideo as w, ProductMedia as x, ProductOptionChoice as y, ProductOption as z };
2875
+ export type { SearchProductBrandsParams as $, ProductRelatedCategory as A, ProductRelatedProducts as B, Category as C, ProductShipping as D, ProductRecurringChargeSettings as E, ProductSubscriptionSettings as F, ProductTax as G, ProductType as H, Product as I, SearchProductsResponse as J, SearchProductsParams as K, LowestPriceSettings as L, GetProductResponse as M, GetProductParams as N, DownloadProductFileResponse as O, ProductAttributeVisibility as P, DownloadProductFileParams as Q, SearchProductVariationsResponse as R, SearchProductVariationsParams as T, GetProductVariationResponse as U, GetProductVariationParams as V, WholesalePrice as W, SearchProductTypesResponse as X, GetProductTypeResponse as Y, GetProductTypeParams as Z, SearchProductBrandsResponse as _, CategoryImage as a, SupportedPaymentMethodsStatuses as a$, GetReviewsResponse as a0, GetReviewsParams as a1, PaginatedResponse as a2, QueryParams as a3, AsQueryParams as a4, Translations as a5, Account as a6, LimitsAndRestrictions as a7, AccountBilling as a8, BusinessRegistrationID as a9, PhoneNotifications as aA, FilterSection as aB, ProductFiltersSettings as aC, FlatRate as aD, RatesTable as aE, Rates as aF, RateCondition as aG, Rate as aH, RegistrationAnswers as aI, SalePrice as aJ, HandlingFee as aK, CarrierMethod as aL, PostageDimensions as aM, CarrierSettings as aN, BusinessHours as aO, BlackoutDates as aP, ShippingOption as aQ, Shipping as aR, GeoPolygon as aS, StoreZone as aT, SocialLink as aU, SocialLinksSettings as aV, StarterSite as aW, StoreProfile as aX, AbandonedSales as aY, StoreSettings as aZ, RecurringSubscriptionsSettings as a_, Company as aa, DesignSettings as ab, FbMessengerSettings as ac, FeatureToggle as ad, AddressFormat as ae, FormatsAndUnits as af, GeneralInfo as ag, GiftCardProduct as ah, GiftCardSettings as ai, Languages as aj, LegalPage as ak, LegalPagesSettings as al, MailNotificationsSettings as am, CustomerMarketingMessages as an, AdminMessages as ao, CustomerOrderMessages as ap, MailNotifications as aq, MailchimpSettings as ar, OrderInvoiceSettings as as, PaymentShippingSettings as at, InstructionsForCustomer as au, PaymentSurcharge as av, PaymentOption as aw, ApplePay as ax, ApplePayOptions as ay, Payment as az, CategoryImageAlt as b, TaxRule as b0, Tax as b1, TaxSettings as b2, CustomTipSettings as b3, TipsSettings as b4, GetStoreProfileResponse as b5, GetStoreProfileParams as b6, ApiConfig as b7, SearchCategoriesResponse as c, SearchCategoriesParams as d, SearchCategoriesByPathResponse as e, SearchCategoriesByPathParams as f, ProductAttributeType as g, ProductAttribute as h, ProductBrand as i, ProductCategory as j, ProductCombinationOption as k, ProductCombination as l, ProductCompositeComponent as m, ProductDimensions as n, ProductFavorites as o, ProductFile as p, ProductDominatingColor as q, ProductBorderInfo as r, ProductGalleryImage as s, ProductImage as t, ProductImageAlt as u, ProductMediaImage as v, ProductMediaVideo as w, ProductMedia as x, ProductOptionChoice as y, ProductOption as z };
@@ -1,5 +1,5 @@
1
- import { a1 as QueryParams } from '../shared/ecom-headless.DTL4WyVk.cjs';
2
- export { aW as AbandonedSales, a4 as Account, a6 as AccountBilling, ac as AddressFormat, am as AdminMessages, b5 as ApiConfig, av as ApplePay, aw as ApplePayOptions, a2 as AsQueryParams, aN as BlackoutDates, aM as BusinessHours, a7 as BusinessRegistrationID, aJ as CarrierMethod, aL as CarrierSettings, C as Category, a as CategoryImage, b as CategoryImageAlt, a8 as Company, b1 as CustomTipSettings, al as CustomerMarketingMessages, an as CustomerOrderMessages, a9 as DesignSettings, Q as DownloadProductFileParams, O as DownloadProductFileResponse, aa as FbMessengerSettings, ab as FeatureToggle, az as FilterSection, aB as FlatRate, ad as FormatsAndUnits, ae as GeneralInfo, aQ as GeoPolygon, N as GetProductParams, M as GetProductResponse, Z as GetProductTypeParams, Y as GetProductTypeResponse, V as GetProductVariationParams, U as GetProductVariationResponse, b4 as GetStoreProfileParams, b3 as GetStoreProfileResponse, af as GiftCardProduct, ag as GiftCardSettings, aI as HandlingFee, as as InstructionsForCustomer, ah as Languages, ai as LegalPage, aj as LegalPagesSettings, a5 as LimitsAndRestrictions, L as LowestPriceSettings, ao as MailNotifications, ak as MailNotificationsSettings, ap as MailchimpSettings, aq as OrderInvoiceSettings, a0 as PaginatedResponse, ax as Payment, au as PaymentOption, ar as PaymentShippingSettings, at as PaymentSurcharge, ay as PhoneNotifications, aK as PostageDimensions, I as Product, h as ProductAttribute, g as ProductAttributeType, P as ProductAttributeVisibility, r as ProductBorderInfo, i as ProductBrand, j as ProductCategory, l as ProductCombination, k as ProductCombinationOption, m as ProductCompositeComponent, n as ProductDimensions, q as ProductDominatingColor, o as ProductFavorites, p as ProductFile, aA as ProductFiltersSettings, s as ProductGalleryImage, t as ProductImage, u as ProductImageAlt, x as ProductMedia, v as ProductMediaImage, w as ProductMediaVideo, z as ProductOption, y as ProductOptionChoice, E as ProductRecurringChargeSettings, A as ProductRelatedCategory, B as ProductRelatedProducts, D as ProductShipping, F as ProductSubscriptionSettings, G as ProductTax, H as ProductType, aF as Rate, aE as RateCondition, aD as Rates, aC as RatesTable, aY as RecurringSubscriptionsSettings, aG as RegistrationAnswers, aH as SalePrice, f as SearchCategoriesByPathParams, e as SearchCategoriesByPathResponse, d as SearchCategoriesParams, c as SearchCategoriesResponse, $ as SearchProductBrandsParams, _ as SearchProductBrandsResponse, X as SearchProductTypesResponse, T as SearchProductVariationsParams, R as SearchProductVariationsResponse, K as SearchProductsParams, J as SearchProductsResponse, aP as Shipping, aO as ShippingOption, aS as SocialLink, aT as SocialLinksSettings, aU as StarterSite, aV as StoreProfile, aX as StoreSettings, aR as StoreZone, aZ as SupportedPaymentMethodsStatuses, a$ as Tax, a_ as TaxRule, b0 as TaxSettings, b2 as TipsSettings, a3 as Translations, W as WholesalePrice } from '../shared/ecom-headless.DTL4WyVk.cjs';
1
+ import { a3 as QueryParams } from '../shared/ecom-headless.Bkwk1yoz.cjs';
2
+ export { aY as AbandonedSales, a6 as Account, a8 as AccountBilling, ae as AddressFormat, ao as AdminMessages, b7 as ApiConfig, ax as ApplePay, ay as ApplePayOptions, a4 as AsQueryParams, aP as BlackoutDates, aO as BusinessHours, a9 as BusinessRegistrationID, aL as CarrierMethod, aN as CarrierSettings, C as Category, a as CategoryImage, b as CategoryImageAlt, aa as Company, b3 as CustomTipSettings, an as CustomerMarketingMessages, ap as CustomerOrderMessages, ab as DesignSettings, Q as DownloadProductFileParams, O as DownloadProductFileResponse, ac as FbMessengerSettings, ad as FeatureToggle, aB as FilterSection, aD as FlatRate, af as FormatsAndUnits, ag as GeneralInfo, aS as GeoPolygon, N as GetProductParams, M as GetProductResponse, Z as GetProductTypeParams, Y as GetProductTypeResponse, V as GetProductVariationParams, U as GetProductVariationResponse, a1 as GetReviewsParams, a0 as GetReviewsResponse, b6 as GetStoreProfileParams, b5 as GetStoreProfileResponse, ah as GiftCardProduct, ai as GiftCardSettings, aK as HandlingFee, au as InstructionsForCustomer, aj as Languages, ak as LegalPage, al as LegalPagesSettings, a7 as LimitsAndRestrictions, L as LowestPriceSettings, aq as MailNotifications, am as MailNotificationsSettings, ar as MailchimpSettings, as as OrderInvoiceSettings, a2 as PaginatedResponse, az as Payment, aw as PaymentOption, at as PaymentShippingSettings, av as PaymentSurcharge, aA as PhoneNotifications, aM as PostageDimensions, I as Product, h as ProductAttribute, g as ProductAttributeType, P as ProductAttributeVisibility, r as ProductBorderInfo, i as ProductBrand, j as ProductCategory, l as ProductCombination, k as ProductCombinationOption, m as ProductCompositeComponent, n as ProductDimensions, q as ProductDominatingColor, o as ProductFavorites, p as ProductFile, aC as ProductFiltersSettings, s as ProductGalleryImage, t as ProductImage, u as ProductImageAlt, x as ProductMedia, v as ProductMediaImage, w as ProductMediaVideo, z as ProductOption, y as ProductOptionChoice, E as ProductRecurringChargeSettings, A as ProductRelatedCategory, B as ProductRelatedProducts, D as ProductShipping, F as ProductSubscriptionSettings, G as ProductTax, H as ProductType, aH as Rate, aG as RateCondition, aF as Rates, aE as RatesTable, a_ as RecurringSubscriptionsSettings, aI as RegistrationAnswers, aJ as SalePrice, f as SearchCategoriesByPathParams, e as SearchCategoriesByPathResponse, d as SearchCategoriesParams, c as SearchCategoriesResponse, $ as SearchProductBrandsParams, _ as SearchProductBrandsResponse, X as SearchProductTypesResponse, T as SearchProductVariationsParams, R as SearchProductVariationsResponse, K as SearchProductsParams, J as SearchProductsResponse, aR as Shipping, aQ as ShippingOption, aU as SocialLink, aV as SocialLinksSettings, aW as StarterSite, aX as StoreProfile, aZ as StoreSettings, aT as StoreZone, a$ as SupportedPaymentMethodsStatuses, b1 as Tax, b0 as TaxRule, b2 as TaxSettings, b4 as TipsSettings, a5 as Translations, W as WholesalePrice } from '../shared/ecom-headless.Bkwk1yoz.cjs';
3
3
  export { a as AddProductData, b as AddProductParameter, A as AddProductRecurringChargeSettings, v as BaseJsApiPage, B as BillingPerson, d as CartAddProductCallback, i as CartApi, g as CartCalculateTotalCallback, f as CartClearCallback, p as CartData, n as CartDominatingColor, c as CartGetCallback, h as CartGoToCheckoutCallback, m as CartImageBorderInfo, o as CartItem, k as CartMediaItem, j as CartProduct, e as CartRemoveProductCallback, l as CartVideoInfo, s as CustomerApi, t as CustomerData, q as CustomerGetCallback, r as CustomerSignOutCallback, E as EcwidApiPromise, w as JsApiFilterParams, u as JsApiPage, O as Order, R as RecurringChargeSettings, S as ShippingAddress, T as TrackingConsent, x as VisitorLocation } from '../shared/ecom-headless.BTRqua6N.cjs';
4
4
  import 'buffer';
5
5
 
@@ -1,5 +1,5 @@
1
- import { a1 as QueryParams } from '../shared/ecom-headless.DTL4WyVk.mjs';
2
- export { aW as AbandonedSales, a4 as Account, a6 as AccountBilling, ac as AddressFormat, am as AdminMessages, b5 as ApiConfig, av as ApplePay, aw as ApplePayOptions, a2 as AsQueryParams, aN as BlackoutDates, aM as BusinessHours, a7 as BusinessRegistrationID, aJ as CarrierMethod, aL as CarrierSettings, C as Category, a as CategoryImage, b as CategoryImageAlt, a8 as Company, b1 as CustomTipSettings, al as CustomerMarketingMessages, an as CustomerOrderMessages, a9 as DesignSettings, Q as DownloadProductFileParams, O as DownloadProductFileResponse, aa as FbMessengerSettings, ab as FeatureToggle, az as FilterSection, aB as FlatRate, ad as FormatsAndUnits, ae as GeneralInfo, aQ as GeoPolygon, N as GetProductParams, M as GetProductResponse, Z as GetProductTypeParams, Y as GetProductTypeResponse, V as GetProductVariationParams, U as GetProductVariationResponse, b4 as GetStoreProfileParams, b3 as GetStoreProfileResponse, af as GiftCardProduct, ag as GiftCardSettings, aI as HandlingFee, as as InstructionsForCustomer, ah as Languages, ai as LegalPage, aj as LegalPagesSettings, a5 as LimitsAndRestrictions, L as LowestPriceSettings, ao as MailNotifications, ak as MailNotificationsSettings, ap as MailchimpSettings, aq as OrderInvoiceSettings, a0 as PaginatedResponse, ax as Payment, au as PaymentOption, ar as PaymentShippingSettings, at as PaymentSurcharge, ay as PhoneNotifications, aK as PostageDimensions, I as Product, h as ProductAttribute, g as ProductAttributeType, P as ProductAttributeVisibility, r as ProductBorderInfo, i as ProductBrand, j as ProductCategory, l as ProductCombination, k as ProductCombinationOption, m as ProductCompositeComponent, n as ProductDimensions, q as ProductDominatingColor, o as ProductFavorites, p as ProductFile, aA as ProductFiltersSettings, s as ProductGalleryImage, t as ProductImage, u as ProductImageAlt, x as ProductMedia, v as ProductMediaImage, w as ProductMediaVideo, z as ProductOption, y as ProductOptionChoice, E as ProductRecurringChargeSettings, A as ProductRelatedCategory, B as ProductRelatedProducts, D as ProductShipping, F as ProductSubscriptionSettings, G as ProductTax, H as ProductType, aF as Rate, aE as RateCondition, aD as Rates, aC as RatesTable, aY as RecurringSubscriptionsSettings, aG as RegistrationAnswers, aH as SalePrice, f as SearchCategoriesByPathParams, e as SearchCategoriesByPathResponse, d as SearchCategoriesParams, c as SearchCategoriesResponse, $ as SearchProductBrandsParams, _ as SearchProductBrandsResponse, X as SearchProductTypesResponse, T as SearchProductVariationsParams, R as SearchProductVariationsResponse, K as SearchProductsParams, J as SearchProductsResponse, aP as Shipping, aO as ShippingOption, aS as SocialLink, aT as SocialLinksSettings, aU as StarterSite, aV as StoreProfile, aX as StoreSettings, aR as StoreZone, aZ as SupportedPaymentMethodsStatuses, a$ as Tax, a_ as TaxRule, b0 as TaxSettings, b2 as TipsSettings, a3 as Translations, W as WholesalePrice } from '../shared/ecom-headless.DTL4WyVk.mjs';
1
+ import { a3 as QueryParams } from '../shared/ecom-headless.Bkwk1yoz.mjs';
2
+ export { aY as AbandonedSales, a6 as Account, a8 as AccountBilling, ae as AddressFormat, ao as AdminMessages, b7 as ApiConfig, ax as ApplePay, ay as ApplePayOptions, a4 as AsQueryParams, aP as BlackoutDates, aO as BusinessHours, a9 as BusinessRegistrationID, aL as CarrierMethod, aN as CarrierSettings, C as Category, a as CategoryImage, b as CategoryImageAlt, aa as Company, b3 as CustomTipSettings, an as CustomerMarketingMessages, ap as CustomerOrderMessages, ab as DesignSettings, Q as DownloadProductFileParams, O as DownloadProductFileResponse, ac as FbMessengerSettings, ad as FeatureToggle, aB as FilterSection, aD as FlatRate, af as FormatsAndUnits, ag as GeneralInfo, aS as GeoPolygon, N as GetProductParams, M as GetProductResponse, Z as GetProductTypeParams, Y as GetProductTypeResponse, V as GetProductVariationParams, U as GetProductVariationResponse, a1 as GetReviewsParams, a0 as GetReviewsResponse, b6 as GetStoreProfileParams, b5 as GetStoreProfileResponse, ah as GiftCardProduct, ai as GiftCardSettings, aK as HandlingFee, au as InstructionsForCustomer, aj as Languages, ak as LegalPage, al as LegalPagesSettings, a7 as LimitsAndRestrictions, L as LowestPriceSettings, aq as MailNotifications, am as MailNotificationsSettings, ar as MailchimpSettings, as as OrderInvoiceSettings, a2 as PaginatedResponse, az as Payment, aw as PaymentOption, at as PaymentShippingSettings, av as PaymentSurcharge, aA as PhoneNotifications, aM as PostageDimensions, I as Product, h as ProductAttribute, g as ProductAttributeType, P as ProductAttributeVisibility, r as ProductBorderInfo, i as ProductBrand, j as ProductCategory, l as ProductCombination, k as ProductCombinationOption, m as ProductCompositeComponent, n as ProductDimensions, q as ProductDominatingColor, o as ProductFavorites, p as ProductFile, aC as ProductFiltersSettings, s as ProductGalleryImage, t as ProductImage, u as ProductImageAlt, x as ProductMedia, v as ProductMediaImage, w as ProductMediaVideo, z as ProductOption, y as ProductOptionChoice, E as ProductRecurringChargeSettings, A as ProductRelatedCategory, B as ProductRelatedProducts, D as ProductShipping, F as ProductSubscriptionSettings, G as ProductTax, H as ProductType, aH as Rate, aG as RateCondition, aF as Rates, aE as RatesTable, a_ as RecurringSubscriptionsSettings, aI as RegistrationAnswers, aJ as SalePrice, f as SearchCategoriesByPathParams, e as SearchCategoriesByPathResponse, d as SearchCategoriesParams, c as SearchCategoriesResponse, $ as SearchProductBrandsParams, _ as SearchProductBrandsResponse, X as SearchProductTypesResponse, T as SearchProductVariationsParams, R as SearchProductVariationsResponse, K as SearchProductsParams, J as SearchProductsResponse, aR as Shipping, aQ as ShippingOption, aU as SocialLink, aV as SocialLinksSettings, aW as StarterSite, aX as StoreProfile, aZ as StoreSettings, aT as StoreZone, a$ as SupportedPaymentMethodsStatuses, b1 as Tax, b0 as TaxRule, b2 as TaxSettings, b4 as TipsSettings, a5 as Translations, W as WholesalePrice } from '../shared/ecom-headless.Bkwk1yoz.mjs';
3
3
  export { a as AddProductData, b as AddProductParameter, A as AddProductRecurringChargeSettings, v as BaseJsApiPage, B as BillingPerson, d as CartAddProductCallback, i as CartApi, g as CartCalculateTotalCallback, f as CartClearCallback, p as CartData, n as CartDominatingColor, c as CartGetCallback, h as CartGoToCheckoutCallback, m as CartImageBorderInfo, o as CartItem, k as CartMediaItem, j as CartProduct, e as CartRemoveProductCallback, l as CartVideoInfo, s as CustomerApi, t as CustomerData, q as CustomerGetCallback, r as CustomerSignOutCallback, E as EcwidApiPromise, w as JsApiFilterParams, u as JsApiPage, O as Order, R as RecurringChargeSettings, S as ShippingAddress, T as TrackingConsent, x as VisitorLocation } from '../shared/ecom-headless.BTRqua6N.mjs';
4
4
  import 'buffer';
5
5
 
@@ -1,5 +1,5 @@
1
- import { a1 as QueryParams } from '../shared/ecom-headless.DTL4WyVk.js';
2
- export { aW as AbandonedSales, a4 as Account, a6 as AccountBilling, ac as AddressFormat, am as AdminMessages, b5 as ApiConfig, av as ApplePay, aw as ApplePayOptions, a2 as AsQueryParams, aN as BlackoutDates, aM as BusinessHours, a7 as BusinessRegistrationID, aJ as CarrierMethod, aL as CarrierSettings, C as Category, a as CategoryImage, b as CategoryImageAlt, a8 as Company, b1 as CustomTipSettings, al as CustomerMarketingMessages, an as CustomerOrderMessages, a9 as DesignSettings, Q as DownloadProductFileParams, O as DownloadProductFileResponse, aa as FbMessengerSettings, ab as FeatureToggle, az as FilterSection, aB as FlatRate, ad as FormatsAndUnits, ae as GeneralInfo, aQ as GeoPolygon, N as GetProductParams, M as GetProductResponse, Z as GetProductTypeParams, Y as GetProductTypeResponse, V as GetProductVariationParams, U as GetProductVariationResponse, b4 as GetStoreProfileParams, b3 as GetStoreProfileResponse, af as GiftCardProduct, ag as GiftCardSettings, aI as HandlingFee, as as InstructionsForCustomer, ah as Languages, ai as LegalPage, aj as LegalPagesSettings, a5 as LimitsAndRestrictions, L as LowestPriceSettings, ao as MailNotifications, ak as MailNotificationsSettings, ap as MailchimpSettings, aq as OrderInvoiceSettings, a0 as PaginatedResponse, ax as Payment, au as PaymentOption, ar as PaymentShippingSettings, at as PaymentSurcharge, ay as PhoneNotifications, aK as PostageDimensions, I as Product, h as ProductAttribute, g as ProductAttributeType, P as ProductAttributeVisibility, r as ProductBorderInfo, i as ProductBrand, j as ProductCategory, l as ProductCombination, k as ProductCombinationOption, m as ProductCompositeComponent, n as ProductDimensions, q as ProductDominatingColor, o as ProductFavorites, p as ProductFile, aA as ProductFiltersSettings, s as ProductGalleryImage, t as ProductImage, u as ProductImageAlt, x as ProductMedia, v as ProductMediaImage, w as ProductMediaVideo, z as ProductOption, y as ProductOptionChoice, E as ProductRecurringChargeSettings, A as ProductRelatedCategory, B as ProductRelatedProducts, D as ProductShipping, F as ProductSubscriptionSettings, G as ProductTax, H as ProductType, aF as Rate, aE as RateCondition, aD as Rates, aC as RatesTable, aY as RecurringSubscriptionsSettings, aG as RegistrationAnswers, aH as SalePrice, f as SearchCategoriesByPathParams, e as SearchCategoriesByPathResponse, d as SearchCategoriesParams, c as SearchCategoriesResponse, $ as SearchProductBrandsParams, _ as SearchProductBrandsResponse, X as SearchProductTypesResponse, T as SearchProductVariationsParams, R as SearchProductVariationsResponse, K as SearchProductsParams, J as SearchProductsResponse, aP as Shipping, aO as ShippingOption, aS as SocialLink, aT as SocialLinksSettings, aU as StarterSite, aV as StoreProfile, aX as StoreSettings, aR as StoreZone, aZ as SupportedPaymentMethodsStatuses, a$ as Tax, a_ as TaxRule, b0 as TaxSettings, b2 as TipsSettings, a3 as Translations, W as WholesalePrice } from '../shared/ecom-headless.DTL4WyVk.js';
1
+ import { a3 as QueryParams } from '../shared/ecom-headless.Bkwk1yoz.js';
2
+ export { aY as AbandonedSales, a6 as Account, a8 as AccountBilling, ae as AddressFormat, ao as AdminMessages, b7 as ApiConfig, ax as ApplePay, ay as ApplePayOptions, a4 as AsQueryParams, aP as BlackoutDates, aO as BusinessHours, a9 as BusinessRegistrationID, aL as CarrierMethod, aN as CarrierSettings, C as Category, a as CategoryImage, b as CategoryImageAlt, aa as Company, b3 as CustomTipSettings, an as CustomerMarketingMessages, ap as CustomerOrderMessages, ab as DesignSettings, Q as DownloadProductFileParams, O as DownloadProductFileResponse, ac as FbMessengerSettings, ad as FeatureToggle, aB as FilterSection, aD as FlatRate, af as FormatsAndUnits, ag as GeneralInfo, aS as GeoPolygon, N as GetProductParams, M as GetProductResponse, Z as GetProductTypeParams, Y as GetProductTypeResponse, V as GetProductVariationParams, U as GetProductVariationResponse, a1 as GetReviewsParams, a0 as GetReviewsResponse, b6 as GetStoreProfileParams, b5 as GetStoreProfileResponse, ah as GiftCardProduct, ai as GiftCardSettings, aK as HandlingFee, au as InstructionsForCustomer, aj as Languages, ak as LegalPage, al as LegalPagesSettings, a7 as LimitsAndRestrictions, L as LowestPriceSettings, aq as MailNotifications, am as MailNotificationsSettings, ar as MailchimpSettings, as as OrderInvoiceSettings, a2 as PaginatedResponse, az as Payment, aw as PaymentOption, at as PaymentShippingSettings, av as PaymentSurcharge, aA as PhoneNotifications, aM as PostageDimensions, I as Product, h as ProductAttribute, g as ProductAttributeType, P as ProductAttributeVisibility, r as ProductBorderInfo, i as ProductBrand, j as ProductCategory, l as ProductCombination, k as ProductCombinationOption, m as ProductCompositeComponent, n as ProductDimensions, q as ProductDominatingColor, o as ProductFavorites, p as ProductFile, aC as ProductFiltersSettings, s as ProductGalleryImage, t as ProductImage, u as ProductImageAlt, x as ProductMedia, v as ProductMediaImage, w as ProductMediaVideo, z as ProductOption, y as ProductOptionChoice, E as ProductRecurringChargeSettings, A as ProductRelatedCategory, B as ProductRelatedProducts, D as ProductShipping, F as ProductSubscriptionSettings, G as ProductTax, H as ProductType, aH as Rate, aG as RateCondition, aF as Rates, aE as RatesTable, a_ as RecurringSubscriptionsSettings, aI as RegistrationAnswers, aJ as SalePrice, f as SearchCategoriesByPathParams, e as SearchCategoriesByPathResponse, d as SearchCategoriesParams, c as SearchCategoriesResponse, $ as SearchProductBrandsParams, _ as SearchProductBrandsResponse, X as SearchProductTypesResponse, T as SearchProductVariationsParams, R as SearchProductVariationsResponse, K as SearchProductsParams, J as SearchProductsResponse, aR as Shipping, aQ as ShippingOption, aU as SocialLink, aV as SocialLinksSettings, aW as StarterSite, aX as StoreProfile, aZ as StoreSettings, aT as StoreZone, a$ as SupportedPaymentMethodsStatuses, b1 as Tax, b0 as TaxRule, b2 as TaxSettings, b4 as TipsSettings, a5 as Translations, W as WholesalePrice } from '../shared/ecom-headless.Bkwk1yoz.js';
3
3
  export { a as AddProductData, b as AddProductParameter, A as AddProductRecurringChargeSettings, v as BaseJsApiPage, B as BillingPerson, d as CartAddProductCallback, i as CartApi, g as CartCalculateTotalCallback, f as CartClearCallback, p as CartData, n as CartDominatingColor, c as CartGetCallback, h as CartGoToCheckoutCallback, m as CartImageBorderInfo, o as CartItem, k as CartMediaItem, j as CartProduct, e as CartRemoveProductCallback, l as CartVideoInfo, s as CustomerApi, t as CustomerData, q as CustomerGetCallback, r as CustomerSignOutCallback, E as EcwidApiPromise, w as JsApiFilterParams, u as JsApiPage, O as Order, R as RecurringChargeSettings, S as ShippingAddress, T as TrackingConsent, x as VisitorLocation } from '../shared/ecom-headless.BTRqua6N.js';
4
4
  import 'buffer';
5
5
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightspeed/ecom-headless",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs",
6
6
  "types": "dist/index.d.ts",