@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.
- package/CHANGELOG.md +6 -0
- package/dist/api/index.cjs +1 -1
- package/dist/api/index.cjs.map +1 -1
- package/dist/api/index.d.cts +24 -2
- package/dist/api/index.d.mts +24 -2
- package/dist/api/index.d.ts +24 -2
- package/dist/api/index.mjs +1 -1
- package/dist/api/index.mjs.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/plugin-visualizer/bundle.html +1 -1
- package/dist/shared/{ecom-headless.DTL4WyVk.d.cts → ecom-headless.Bkwk1yoz.d.cts} +52 -1
- package/dist/shared/{ecom-headless.DTL4WyVk.d.mts → ecom-headless.Bkwk1yoz.d.mts} +52 -1
- package/dist/shared/{ecom-headless.DTL4WyVk.d.ts → ecom-headless.Bkwk1yoz.d.ts} +52 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.mts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -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,
|
|
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,
|
|
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,
|
|
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 };
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export {
|
|
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
|
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export {
|
|
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
|
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export {
|
|
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
|
|