@cimplify/sdk 0.47.0 → 0.48.1

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/react.d.mts CHANGED
@@ -2,9 +2,10 @@ import React$1, { ReactNode } from 'react';
2
2
  import { A as AdSlot, a as AdPosition, e as AdContextValue } from './ads-BxbWrwqp.mjs';
3
3
  export { c as AdConfig, g as getVariantDisplayName } from './ads-BxbWrwqp.mjs';
4
4
  import { C as CimplifyClient, an as ProcessCheckoutResult, ap as CheckoutStatus, aq as CheckoutStatusContext, bZ as Location, bW as Business, k as ReorderResult, b4 as OrderStatus, bh as Order, d as QuoteBundleSelectionInput, Q as QuoteCompositeSelectionInput, P as PriceQuote, g as QuoteUiMessage, ca as Service, cf as AvailableSlot, cg as DayAvailability, cl as CustomerBooking, cr as CancelBookingResult, J as ActivityStateResponse, E as SessionMessage, K as ActivityRecommendation, W as DeliveryFeeResponse, d0 as FxRateResponse, c4 as StorefrontBootstrap, a0 as ChatWidgetStarter, Y as ChatMessage, ab as ElementsOptions, de as AuthenticatedData, da as AddressInfo, db as PaymentMethodInfo, a5 as CimplifyElements, dg as ElementsCheckoutResult, am as ProcessCheckoutOptions, bg as LineItem, cb as Staff, c2 as Room } from './client-BZZK1txR.mjs';
5
- import { a as CurrencyCode, X as Product, d as Pagination, h as CimplifyError, aa as ProductWithDetails, ap as Category, M as Money, bk as BundleSelectionInput, aP as ComponentSelectionInput, bn as BundleSelectionData, bq as CompositeSelectionData, ar as Collection, aX as ProductTaxonomy, aY as TaxonomyWithChildren, aW as ProductTimeProfile, a$ as Deal, b0 as ProductDealInfo, b1 as DiscountValidation, aw as BundleSummary, aQ as CompositePriceResult, bT as SubscriptionStatus, bU as Subscription, bX as SubscriptionWithDetails, K as CustomAttributeDefinition, Q as PropertyFacet, bQ as ProductBillingPlan, ab as VariantView, af as VariantAxisWithValues, al as AddOnWithOptions, aB as BundleComponentView, au as BundlePriceType, aM as CompositeGroupView, bv as DisplayCart, a6 as ProductInputField, L as CustomAttributeValue, O as ProductProperty, a8 as QuantityPricingTier } from './product-C-xLzh7Q.mjs';
5
+ import { a as CurrencyCode, X as Product, d as Pagination, h as CimplifyError, aa as ProductWithDetails, ap as Category, M as Money, bk as BundleSelectionInput, aP as ComponentSelectionInput, bn as BundleSelectionData, bq as CompositeSelectionData, ar as Collection, aX as ProductTaxonomy, aY as TaxonomyWithChildren, aW as ProductTimeProfile, a$ as Deal, b0 as ProductDealInfo, b1 as DiscountValidation, aw as BundleSummary, aQ as CompositePriceResult, bT as SubscriptionStatus, bU as Subscription, bX as SubscriptionWithDetails, K as CustomAttributeDefinition, Q as PropertyFacet, bQ as ProductBillingPlan, ab as VariantView, af as VariantAxisWithValues, al as AddOnWithOptions, aB as BundleComponentView, au as BundlePriceType, aM as CompositeGroupView, bv as DisplayCart, a6 as ProductInputField, S as SchedulingMode, x as DurationUnit, L as CustomAttributeValue, O as ProductProperty, a8 as QuantityPricingTier } from './product-C-xLzh7Q.mjs';
6
6
  import { P as ProductWithPrice } from './price-BjehlIhG.mjs';
7
7
  import { ClassValue } from 'clsx';
8
+ import { Matcher } from 'react-day-picker';
8
9
  import * as react_jsx_runtime from 'react/jsx-runtime';
9
10
  import './payment-9L_-GWqQ.mjs';
10
11
 
@@ -1650,16 +1651,26 @@ interface SlotPickerProps {
1650
1651
  selectedSlot?: AvailableSlot | null;
1651
1652
  /** Called when a slot is selected. */
1652
1653
  onSlotSelect?: (slot: AvailableSlot) => void;
1653
- /** Whether to group slots by time of day. Default: true. */
1654
+ /** Whether to group slots by time of day. Default: true. Ignored when `schedulingMode` is `"multi_day"`. */
1654
1655
  groupByTimeOfDay?: boolean;
1655
1656
  /** Show price on each slot. Default: true. */
1656
1657
  showPrice?: boolean;
1658
+ /**
1659
+ * Service scheduling mode. When `"multi_day"`, each slot renders as a
1660
+ * stay summary (`"3 nights: Fri Apr 5, 3:00 PM → Mon Apr 8, 11:00 AM"`)
1661
+ * instead of the time-of-day label. Defaults to `"intraday"`.
1662
+ */
1663
+ schedulingMode?: SchedulingMode;
1664
+ /** Service duration unit — used for the stay summary in multi-day mode. */
1665
+ durationUnit?: DurationUnit;
1666
+ /** Service duration value — used for the stay summary in multi-day mode. */
1667
+ durationValue?: number;
1657
1668
  /** Text shown when no slots available. */
1658
1669
  emptyMessage?: string;
1659
1670
  className?: string;
1660
1671
  classNames?: SlotPickerClassNames;
1661
1672
  }
1662
- declare function SlotPicker({ slots: slotsProp, serviceId, date, participantCount, selectedSlot, onSlotSelect, groupByTimeOfDay, showPrice, emptyMessage, className, classNames, }: SlotPickerProps): React$1.ReactElement;
1673
+ declare function SlotPicker({ slots: slotsProp, serviceId, date, participantCount, selectedSlot, onSlotSelect, groupByTimeOfDay, showPrice, schedulingMode, durationUnit, durationValue, emptyMessage, className, classNames, }: SlotPickerProps): React$1.ReactElement;
1663
1674
 
1664
1675
  interface DateSlotPickerClassNames {
1665
1676
  root?: string;
@@ -1685,10 +1696,105 @@ interface DateSlotPickerProps {
1685
1696
  availability?: DayAvailability[];
1686
1697
  /** Show price on slots. Default: true. */
1687
1698
  showPrice?: boolean;
1699
+ /** Forwarded to `<SlotPicker>` to render multi-day stay labels. */
1700
+ schedulingMode?: SchedulingMode;
1701
+ /** Forwarded to `<SlotPicker>` — unit for the stay summary in multi-day mode. */
1702
+ durationUnit?: DurationUnit;
1703
+ /** Forwarded to `<SlotPicker>` — value for the stay summary in multi-day mode. */
1704
+ durationValue?: number;
1688
1705
  className?: string;
1689
1706
  classNames?: DateSlotPickerClassNames;
1690
1707
  }
1691
- declare function DateSlotPicker({ serviceId, daysToShow, participantCount, selectedSlot, onSlotSelect, availability: availabilityProp, showPrice, className, classNames, }: DateSlotPickerProps): React$1.ReactElement;
1708
+ declare function DateSlotPicker({ serviceId, daysToShow, participantCount, selectedSlot, onSlotSelect, availability: availabilityProp, showPrice, schedulingMode, durationUnit, durationValue, className, classNames, }: DateSlotPickerProps): React$1.ReactElement;
1709
+
1710
+ interface DatePickerClassNames {
1711
+ /** Outer wrapper around the trigger. */
1712
+ root?: string;
1713
+ /** The trigger button shown when the popover is closed. */
1714
+ trigger?: string;
1715
+ /** The popover panel rendered above/below the trigger. */
1716
+ popup?: string;
1717
+ /** The DayPicker root element. */
1718
+ calendar?: string;
1719
+ /** Selected day cell. */
1720
+ daySelected?: string;
1721
+ /** Today cell. */
1722
+ dayToday?: string;
1723
+ /** Disabled day cell. */
1724
+ dayDisabled?: string;
1725
+ }
1726
+ interface DatePickerProps {
1727
+ /** Controlled value as an ISO date string (`YYYY-MM-DD`). */
1728
+ value?: string;
1729
+ /** Called when the user picks a date. Empty string means "cleared". */
1730
+ onChange?: (value: string) => void;
1731
+ /** Placeholder text shown when no date is selected. */
1732
+ placeholder?: string;
1733
+ /** Earliest selectable date (inclusive). */
1734
+ minDate?: Date;
1735
+ /** Latest selectable date (inclusive). */
1736
+ maxDate?: Date;
1737
+ /** Arbitrary matchers passed through to DayPicker. */
1738
+ disabled?: Matcher | Matcher[];
1739
+ /** When true, the trigger button is disabled. */
1740
+ triggerDisabled?: boolean;
1741
+ /** Native form name. */
1742
+ name?: string;
1743
+ /** Required attribute on the underlying hidden input. */
1744
+ required?: boolean;
1745
+ className?: string;
1746
+ classNames?: DatePickerClassNames;
1747
+ /** Accessible label for the trigger button. */
1748
+ "aria-label"?: string;
1749
+ }
1750
+ /**
1751
+ * Branded date picker for storefront flows. Trigger looks like an input,
1752
+ * click opens a calendar popover. Themable via `classNames`; pairs with
1753
+ * `<TimePicker>` for datetime use cases.
1754
+ *
1755
+ * Use this in place of `<input type="date">` so the calendar UI looks the
1756
+ * same across Chrome, Safari, and Firefox.
1757
+ */
1758
+ declare function DatePicker({ value, onChange, placeholder, minDate, maxDate, disabled, triggerDisabled, name, required, className, classNames, "aria-label": ariaLabel, }: DatePickerProps): React.ReactElement;
1759
+
1760
+ interface TimePickerClassNames {
1761
+ root?: string;
1762
+ trigger?: string;
1763
+ popup?: string;
1764
+ option?: string;
1765
+ optionSelected?: string;
1766
+ }
1767
+ interface TimePickerProps {
1768
+ /** Controlled value as a 24-hour `HH:mm` string. */
1769
+ value?: string;
1770
+ /** Called when the user picks a time. Empty string means "cleared". */
1771
+ onChange?: (value: string) => void;
1772
+ /** Placeholder shown when no time is selected. */
1773
+ placeholder?: string;
1774
+ /** Earliest selectable time, inclusive. `HH:mm`. Default `"00:00"`. */
1775
+ minTime?: string;
1776
+ /** Latest selectable time, inclusive. `HH:mm`. Default `"23:59"`. */
1777
+ maxTime?: string;
1778
+ /** Minutes between options. Default 30. */
1779
+ stepMinutes?: number;
1780
+ /** Display format: 12-hour with AM/PM, or 24-hour. Default `"12h"`. */
1781
+ displayFormat?: "12h" | "24h";
1782
+ /** Disable the trigger entirely. */
1783
+ triggerDisabled?: boolean;
1784
+ /** Native form name (renders a hidden input with the `HH:mm` value). */
1785
+ name?: string;
1786
+ /** Required attribute on the hidden input. */
1787
+ required?: boolean;
1788
+ className?: string;
1789
+ classNames?: TimePickerClassNames;
1790
+ "aria-label"?: string;
1791
+ }
1792
+ /**
1793
+ * Branded time picker for storefront flows. Trigger shows the formatted
1794
+ * time, click opens a scrollable list of options in 12- or 24-hour format.
1795
+ * Themable via `classNames`; pairs with `<DatePicker>` for datetime inputs.
1796
+ */
1797
+ declare function TimePicker({ value, onChange, placeholder, minTime, maxTime, stepMinutes, displayFormat, triggerDisabled, name, required, className, classNames, "aria-label": ariaLabel, }: TimePickerProps): React.ReactElement;
1692
1798
 
1693
1799
  interface StaffPickerClassNames {
1694
1800
  root?: string;
@@ -2740,4 +2846,4 @@ interface ChatWidgetProps {
2740
2846
  }
2741
2847
  declare function ChatWidget({ client: clientProp, businessName, greeting, subtitle, starters, placeholder, position, defaultOpen, pollInterval, className, classNames, }: ChatWidgetProps): react_jsx_runtime.JSX.Element;
2742
2848
 
2743
- export { AccommodationCard, Ad, AdPosition, type AdProps, AdProvider, AdSlot, AddOnSelector, type AddOnSelectorClassNames, type AddOnSelectorProps, type AddToCartOptions, AddressElement, AuthElement, AvailabilityBadge, type AvailabilityBadgeClassNames, type AvailabilityBadgeProps, BillingPlanSelector, type BillingPlanSelectorClassNames, type BillingPlanSelectorProps, BookingCard, type BookingCardClassNames, type BookingCardProps, BookingList, type BookingListClassNames, type BookingListProps, BookingPage, type BookingPageClassNames, type BookingPageProps, BookingsPage, type BookingsPageClassNames, type BookingsPageProps, BundleProductCard, BundleProductLayout, BundleSelector, type BundleSelectorClassNames, type BundleSelectorProps, CardImage, type CardLayoutProps, CardShell, CardVariant, type CartAddOnOptionSelection, CartDrawer, type CartDrawerProps, CartDrawerProvider, type CartLayoutProps, CartPage, type CartPageClassNames, type CartPageProps, CartSummary, type CartSummaryClassNames, type CartSummaryProps, CartTemplate, type CartVariantSelection, CatalogueCollectionLayout, type CatalogueLayoutProps, CataloguePage, type CataloguePageClassNames, type CataloguePageProps, CatalogueTemplate, CategoryFilter, type CategoryFilterClassNames, type CategoryFilterProps, CategoryGrid, type CategoryGridClassNames, type CategoryGridProps, ChatWidget, type ChatWidgetClassNames, type ChatWidgetProps, CheckoutPage, type CheckoutPageClassNames, type CheckoutPageProps, CimplifyAccount, type CimplifyAccountProps, CimplifyCheckout, type CimplifyCheckoutProps, type CimplifyClientContextValue, type CimplifyContextValue, CimplifyProvider, type CimplifyProviderProps, type CollectionLayoutProps, CollectionPage, type CollectionPageClassNames, type CollectionPageProps, CollectionTemplate, CompactCartLayout, CompactCatalogueLayout, CompactSearchLayout, CompactServiceCard, CompositeProductCard, CompositeProductLayout, CompositeSelector, type CompositeSelectorClassNames, type CompositeSelectorProps, CurrencySelector, type CurrencySelectorClassNames, type CurrencySelectorProps, CustomAttributesTable, CustomerInputFields, type CustomerInputFieldsClassNames, type CustomerInputFieldsProps, DateSlotPicker, type DateSlotPickerClassNames, type DateSlotPickerProps, DealBanner, type DealBannerClassNames, type DealBannerProps, DealsPage, type DealsPageClassNames, type DealsPageProps, DefaultCartLayout, DefaultCatalogueLayout, DefaultCollectionLayout, DefaultProductLayout, DefaultSearchLayout, DeliveryEstimate, type DeliveryEstimateClassNames, type DeliveryEstimateProps, DigitalProductCard, DigitalProductLayout, DiscountInput, type DiscountInputClassNames, type DiscountInputProps, ElementsProvider, FeaturedCollectionLayout, FoodProductCard, FoodProductLayout, InventoryBadge, LeaseServiceCard, LocationPicker, type LocationPickerClassNames, type LocationPickerProps, MetadataStringList, OrderDetailPage, type OrderDetailPageClassNames, type OrderDetailPageProps, OrderHistory, type OrderHistoryClassNames, OrderHistoryPage, type OrderHistoryPageClassNames, type OrderHistoryPageProps, type OrderHistoryProps, OrderSummary, type OrderSummaryClassNames, type OrderSummaryProps, PaymentElement, Price, type PriceProps, PriceRange, type PriceRangeProps, ProductCard, type ProductCardClassNames, type ProductCardProps, ProductCustomizer, type ProductCustomizerClassNames, type ProductCustomizerProps, ProductGrid, type ProductGridClassNames, type ProductGridProps, ProductImageGallery, type ProductImageGalleryProps, type ProductLayoutProps, ProductPage, type ProductPageClassNames, type ProductPageProps, ProductSheet, type ProductSheetClassNames, type ProductSheetProps, ProductTemplate, PropertiesTable, QuantitySelector, type QuantitySelectorClassNames, type QuantitySelectorProps, QuickAddButton, RecentlyViewed, type RecentlyViewedClassNames, type RecentlyViewedProps, RecommendationCarousel, type RecommendationCarouselClassNames, type RecommendationCarouselProps, RelatedProductsSection, RentalServiceCard, type Resource, ResourcePicker, type ResourcePickerClassNames, type ResourcePickerProps, RetailProductCard, SaleBadge, type SaleBadgeClassNames, type SaleBadgeProps, ScheduleServiceCard, SearchInput, type SearchInputClassNames, type SearchInputProps, type SearchLayoutProps, SearchPage, type SearchPageClassNames, type SearchPageProps, SearchTemplate, type ServiceCardLayoutProps, ServiceProductLayout, SessionMessageBanner, type SessionMessageBannerClassNames, type SessionMessageBannerProps, SlotPicker, type SlotPickerClassNames, type SlotPickerProps, SoldOutOverlay, StaffPicker, type StaffPickerClassNames, type StaffPickerProps, StandardServiceCard, StoreNav, type StoreNavClassNames, type StoreNavProps, SubscriptionCard, TagPills, TwoColumnGrid, type UseActivityStateOptions, type UseActivityStateResult, type UseAttributeDefinitionsOptions, type UseAttributeDefinitionsResult, type UseAvailableSlotsOptions, type UseAvailableSlotsResult, type UseBillingPlansOptions, type UseBillingPlansResult, type UseBookingsOptions, type UseBookingsResult, type UseBootstrapOptions, type UseBootstrapResult, type UseBundlesOptions, type UseBundlesResult, type UseCartItem, type UseCartOptions, type UseCartResult, type UseCategoriesOptions, type UseCategoriesResult, type UseChatOptions, type UseChatResult, type UseCollectionOptions, type UseCollectionResult, type UseCollectionsOptions, type UseCollectionsResult, type UseDealsOptions, type UseDealsResult, type UseDeliveryFeeOptions, type UseDeliveryFeeResult, type UseFxRateOptions, type UseFxRateResult, type UseLocationsOptions, type UseLocationsResult, type UseOrderOptions, type UseOrderResult, type UseOrdersOptions, type UseOrdersResult, type UseProductAvailabilityOptions, type UseProductAvailabilityResult, type UseProductDealsOptions, type UseProductDealsResult, type UseProductOptions, type UseProductPriceInput, type UseProductPriceResult, type UseProductResult, type UseProductSchedulesOptions, type UseProductSchedulesResult, type UseProductsOnSaleOptions, type UseProductsOnSaleResult, type UseProductsOptions, type UseProductsResult, type UsePropertyFacetsOptions, type UsePropertyFacetsResult, type UseQuoteInput, type UseQuoteOptions, type UseQuoteResult, type UseRecommendationsOptions, type UseRecommendationsResult, type UseSearchOptions, type UseSearchResult, type UseServiceAvailabilityOptions, type UseServiceAvailabilityResult, type UseServicesOptions, type UseServicesResult, type UseTaxonomiesOptions, type UseTaxonomiesResult, type UseTaxonomyOptions, type UseTaxonomyPathOptions, type UseTaxonomyPathResult, type UseTaxonomyResult, type UseValidateDiscountOptions, type UseValidateDiscountResult, type UseVariantSelectorOptions, type UseVariantSelectorResult, VariantSelector, type VariantSelectorClassNames, type VariantSelectorProps, VolumePricing, type VolumePricingClassNames, type VolumePricingProps, WholesaleProductCard, WholesaleProductLayout, WishlistButton, cn, roomToResource, useActivityState, useAds, useAttributeDefinitions, useAvailableSlots, useBillingPlans, useBookings, useBootstrap, useBundles, useCart, useCartDrawer, useCategories, useChat, useCheckout, useCimplify, useCimplifyClient, useCollection, useCollections, useDeals, useDeliveryFee, useElements, useElementsReady, useFxRate, useLocations, useOptionalCimplify, useOrder, useOrders, useProduct, useProductAvailability, useProductDeals, useProductPrice, useProductSchedules, useProducts, useProductsOnSale, usePropertyFacets, useQuote, useRecommendations, useSearch, useServiceAvailability, useServices, useSubscription, useSubscriptions, useTaxonomies, useTaxonomy, useTaxonomyPath, useValidateDiscount, useVariantSelector };
2849
+ export { AccommodationCard, Ad, AdPosition, type AdProps, AdProvider, AdSlot, AddOnSelector, type AddOnSelectorClassNames, type AddOnSelectorProps, type AddToCartOptions, AddressElement, AuthElement, AvailabilityBadge, type AvailabilityBadgeClassNames, type AvailabilityBadgeProps, BillingPlanSelector, type BillingPlanSelectorClassNames, type BillingPlanSelectorProps, BookingCard, type BookingCardClassNames, type BookingCardProps, BookingList, type BookingListClassNames, type BookingListProps, BookingPage, type BookingPageClassNames, type BookingPageProps, BookingsPage, type BookingsPageClassNames, type BookingsPageProps, BundleProductCard, BundleProductLayout, BundleSelector, type BundleSelectorClassNames, type BundleSelectorProps, CardImage, type CardLayoutProps, CardShell, CardVariant, type CartAddOnOptionSelection, CartDrawer, type CartDrawerProps, CartDrawerProvider, type CartLayoutProps, CartPage, type CartPageClassNames, type CartPageProps, CartSummary, type CartSummaryClassNames, type CartSummaryProps, CartTemplate, type CartVariantSelection, CatalogueCollectionLayout, type CatalogueLayoutProps, CataloguePage, type CataloguePageClassNames, type CataloguePageProps, CatalogueTemplate, CategoryFilter, type CategoryFilterClassNames, type CategoryFilterProps, CategoryGrid, type CategoryGridClassNames, type CategoryGridProps, ChatWidget, type ChatWidgetClassNames, type ChatWidgetProps, CheckoutPage, type CheckoutPageClassNames, type CheckoutPageProps, CimplifyAccount, type CimplifyAccountProps, CimplifyCheckout, type CimplifyCheckoutProps, type CimplifyClientContextValue, type CimplifyContextValue, CimplifyProvider, type CimplifyProviderProps, type CollectionLayoutProps, CollectionPage, type CollectionPageClassNames, type CollectionPageProps, CollectionTemplate, CompactCartLayout, CompactCatalogueLayout, CompactSearchLayout, CompactServiceCard, CompositeProductCard, CompositeProductLayout, CompositeSelector, type CompositeSelectorClassNames, type CompositeSelectorProps, CurrencySelector, type CurrencySelectorClassNames, type CurrencySelectorProps, CustomAttributesTable, CustomerInputFields, type CustomerInputFieldsClassNames, type CustomerInputFieldsProps, DatePicker, type DatePickerClassNames, type DatePickerProps, DateSlotPicker, type DateSlotPickerClassNames, type DateSlotPickerProps, DealBanner, type DealBannerClassNames, type DealBannerProps, DealsPage, type DealsPageClassNames, type DealsPageProps, DefaultCartLayout, DefaultCatalogueLayout, DefaultCollectionLayout, DefaultProductLayout, DefaultSearchLayout, DeliveryEstimate, type DeliveryEstimateClassNames, type DeliveryEstimateProps, DigitalProductCard, DigitalProductLayout, DiscountInput, type DiscountInputClassNames, type DiscountInputProps, ElementsProvider, FeaturedCollectionLayout, FoodProductCard, FoodProductLayout, InventoryBadge, LeaseServiceCard, LocationPicker, type LocationPickerClassNames, type LocationPickerProps, MetadataStringList, OrderDetailPage, type OrderDetailPageClassNames, type OrderDetailPageProps, OrderHistory, type OrderHistoryClassNames, OrderHistoryPage, type OrderHistoryPageClassNames, type OrderHistoryPageProps, type OrderHistoryProps, OrderSummary, type OrderSummaryClassNames, type OrderSummaryProps, PaymentElement, Price, type PriceProps, PriceRange, type PriceRangeProps, ProductCard, type ProductCardClassNames, type ProductCardProps, ProductCustomizer, type ProductCustomizerClassNames, type ProductCustomizerProps, ProductGrid, type ProductGridClassNames, type ProductGridProps, ProductImageGallery, type ProductImageGalleryProps, type ProductLayoutProps, ProductPage, type ProductPageClassNames, type ProductPageProps, ProductSheet, type ProductSheetClassNames, type ProductSheetProps, ProductTemplate, PropertiesTable, QuantitySelector, type QuantitySelectorClassNames, type QuantitySelectorProps, QuickAddButton, RecentlyViewed, type RecentlyViewedClassNames, type RecentlyViewedProps, RecommendationCarousel, type RecommendationCarouselClassNames, type RecommendationCarouselProps, RelatedProductsSection, RentalServiceCard, type Resource, ResourcePicker, type ResourcePickerClassNames, type ResourcePickerProps, RetailProductCard, SaleBadge, type SaleBadgeClassNames, type SaleBadgeProps, ScheduleServiceCard, SearchInput, type SearchInputClassNames, type SearchInputProps, type SearchLayoutProps, SearchPage, type SearchPageClassNames, type SearchPageProps, SearchTemplate, type ServiceCardLayoutProps, ServiceProductLayout, SessionMessageBanner, type SessionMessageBannerClassNames, type SessionMessageBannerProps, SlotPicker, type SlotPickerClassNames, type SlotPickerProps, SoldOutOverlay, StaffPicker, type StaffPickerClassNames, type StaffPickerProps, StandardServiceCard, StoreNav, type StoreNavClassNames, type StoreNavProps, SubscriptionCard, TagPills, TimePicker, type TimePickerClassNames, type TimePickerProps, TwoColumnGrid, type UseActivityStateOptions, type UseActivityStateResult, type UseAttributeDefinitionsOptions, type UseAttributeDefinitionsResult, type UseAvailableSlotsOptions, type UseAvailableSlotsResult, type UseBillingPlansOptions, type UseBillingPlansResult, type UseBookingsOptions, type UseBookingsResult, type UseBootstrapOptions, type UseBootstrapResult, type UseBundlesOptions, type UseBundlesResult, type UseCartItem, type UseCartOptions, type UseCartResult, type UseCategoriesOptions, type UseCategoriesResult, type UseChatOptions, type UseChatResult, type UseCollectionOptions, type UseCollectionResult, type UseCollectionsOptions, type UseCollectionsResult, type UseDealsOptions, type UseDealsResult, type UseDeliveryFeeOptions, type UseDeliveryFeeResult, type UseFxRateOptions, type UseFxRateResult, type UseLocationsOptions, type UseLocationsResult, type UseOrderOptions, type UseOrderResult, type UseOrdersOptions, type UseOrdersResult, type UseProductAvailabilityOptions, type UseProductAvailabilityResult, type UseProductDealsOptions, type UseProductDealsResult, type UseProductOptions, type UseProductPriceInput, type UseProductPriceResult, type UseProductResult, type UseProductSchedulesOptions, type UseProductSchedulesResult, type UseProductsOnSaleOptions, type UseProductsOnSaleResult, type UseProductsOptions, type UseProductsResult, type UsePropertyFacetsOptions, type UsePropertyFacetsResult, type UseQuoteInput, type UseQuoteOptions, type UseQuoteResult, type UseRecommendationsOptions, type UseRecommendationsResult, type UseSearchOptions, type UseSearchResult, type UseServiceAvailabilityOptions, type UseServiceAvailabilityResult, type UseServicesOptions, type UseServicesResult, type UseTaxonomiesOptions, type UseTaxonomiesResult, type UseTaxonomyOptions, type UseTaxonomyPathOptions, type UseTaxonomyPathResult, type UseTaxonomyResult, type UseValidateDiscountOptions, type UseValidateDiscountResult, type UseVariantSelectorOptions, type UseVariantSelectorResult, VariantSelector, type VariantSelectorClassNames, type VariantSelectorProps, VolumePricing, type VolumePricingClassNames, type VolumePricingProps, WholesaleProductCard, WholesaleProductLayout, WishlistButton, cn, roomToResource, useActivityState, useAds, useAttributeDefinitions, useAvailableSlots, useBillingPlans, useBookings, useBootstrap, useBundles, useCart, useCartDrawer, useCategories, useChat, useCheckout, useCimplify, useCimplifyClient, useCollection, useCollections, useDeals, useDeliveryFee, useElements, useElementsReady, useFxRate, useLocations, useOptionalCimplify, useOrder, useOrders, useProduct, useProductAvailability, useProductDeals, useProductPrice, useProductSchedules, useProducts, useProductsOnSale, usePropertyFacets, useQuote, useRecommendations, useSearch, useServiceAvailability, useServices, useSubscription, useSubscriptions, useTaxonomies, useTaxonomy, useTaxonomyPath, useValidateDiscount, useVariantSelector };
package/dist/react.d.ts CHANGED
@@ -2,9 +2,10 @@ import React$1, { ReactNode } from 'react';
2
2
  import { A as AdSlot, a as AdPosition, e as AdContextValue } from './ads-BxbWrwqp.js';
3
3
  export { c as AdConfig, g as getVariantDisplayName } from './ads-BxbWrwqp.js';
4
4
  import { C as CimplifyClient, an as ProcessCheckoutResult, ap as CheckoutStatus, aq as CheckoutStatusContext, bZ as Location, bW as Business, k as ReorderResult, b4 as OrderStatus, bh as Order, d as QuoteBundleSelectionInput, Q as QuoteCompositeSelectionInput, P as PriceQuote, g as QuoteUiMessage, ca as Service, cf as AvailableSlot, cg as DayAvailability, cl as CustomerBooking, cr as CancelBookingResult, J as ActivityStateResponse, E as SessionMessage, K as ActivityRecommendation, W as DeliveryFeeResponse, d0 as FxRateResponse, c4 as StorefrontBootstrap, a0 as ChatWidgetStarter, Y as ChatMessage, ab as ElementsOptions, de as AuthenticatedData, da as AddressInfo, db as PaymentMethodInfo, a5 as CimplifyElements, dg as ElementsCheckoutResult, am as ProcessCheckoutOptions, bg as LineItem, cb as Staff, c2 as Room } from './client-B8tJnOde.js';
5
- import { a as CurrencyCode, X as Product, d as Pagination, h as CimplifyError, aa as ProductWithDetails, ap as Category, M as Money, bk as BundleSelectionInput, aP as ComponentSelectionInput, bn as BundleSelectionData, bq as CompositeSelectionData, ar as Collection, aX as ProductTaxonomy, aY as TaxonomyWithChildren, aW as ProductTimeProfile, a$ as Deal, b0 as ProductDealInfo, b1 as DiscountValidation, aw as BundleSummary, aQ as CompositePriceResult, bT as SubscriptionStatus, bU as Subscription, bX as SubscriptionWithDetails, K as CustomAttributeDefinition, Q as PropertyFacet, bQ as ProductBillingPlan, ab as VariantView, af as VariantAxisWithValues, al as AddOnWithOptions, aB as BundleComponentView, au as BundlePriceType, aM as CompositeGroupView, bv as DisplayCart, a6 as ProductInputField, L as CustomAttributeValue, O as ProductProperty, a8 as QuantityPricingTier } from './product-C-xLzh7Q.js';
5
+ import { a as CurrencyCode, X as Product, d as Pagination, h as CimplifyError, aa as ProductWithDetails, ap as Category, M as Money, bk as BundleSelectionInput, aP as ComponentSelectionInput, bn as BundleSelectionData, bq as CompositeSelectionData, ar as Collection, aX as ProductTaxonomy, aY as TaxonomyWithChildren, aW as ProductTimeProfile, a$ as Deal, b0 as ProductDealInfo, b1 as DiscountValidation, aw as BundleSummary, aQ as CompositePriceResult, bT as SubscriptionStatus, bU as Subscription, bX as SubscriptionWithDetails, K as CustomAttributeDefinition, Q as PropertyFacet, bQ as ProductBillingPlan, ab as VariantView, af as VariantAxisWithValues, al as AddOnWithOptions, aB as BundleComponentView, au as BundlePriceType, aM as CompositeGroupView, bv as DisplayCart, a6 as ProductInputField, S as SchedulingMode, x as DurationUnit, L as CustomAttributeValue, O as ProductProperty, a8 as QuantityPricingTier } from './product-C-xLzh7Q.js';
6
6
  import { P as ProductWithPrice } from './price-CWQ5TQmk.js';
7
7
  import { ClassValue } from 'clsx';
8
+ import { Matcher } from 'react-day-picker';
8
9
  import * as react_jsx_runtime from 'react/jsx-runtime';
9
10
  import './payment-_e99nSRj.js';
10
11
 
@@ -1650,16 +1651,26 @@ interface SlotPickerProps {
1650
1651
  selectedSlot?: AvailableSlot | null;
1651
1652
  /** Called when a slot is selected. */
1652
1653
  onSlotSelect?: (slot: AvailableSlot) => void;
1653
- /** Whether to group slots by time of day. Default: true. */
1654
+ /** Whether to group slots by time of day. Default: true. Ignored when `schedulingMode` is `"multi_day"`. */
1654
1655
  groupByTimeOfDay?: boolean;
1655
1656
  /** Show price on each slot. Default: true. */
1656
1657
  showPrice?: boolean;
1658
+ /**
1659
+ * Service scheduling mode. When `"multi_day"`, each slot renders as a
1660
+ * stay summary (`"3 nights: Fri Apr 5, 3:00 PM → Mon Apr 8, 11:00 AM"`)
1661
+ * instead of the time-of-day label. Defaults to `"intraday"`.
1662
+ */
1663
+ schedulingMode?: SchedulingMode;
1664
+ /** Service duration unit — used for the stay summary in multi-day mode. */
1665
+ durationUnit?: DurationUnit;
1666
+ /** Service duration value — used for the stay summary in multi-day mode. */
1667
+ durationValue?: number;
1657
1668
  /** Text shown when no slots available. */
1658
1669
  emptyMessage?: string;
1659
1670
  className?: string;
1660
1671
  classNames?: SlotPickerClassNames;
1661
1672
  }
1662
- declare function SlotPicker({ slots: slotsProp, serviceId, date, participantCount, selectedSlot, onSlotSelect, groupByTimeOfDay, showPrice, emptyMessage, className, classNames, }: SlotPickerProps): React$1.ReactElement;
1673
+ declare function SlotPicker({ slots: slotsProp, serviceId, date, participantCount, selectedSlot, onSlotSelect, groupByTimeOfDay, showPrice, schedulingMode, durationUnit, durationValue, emptyMessage, className, classNames, }: SlotPickerProps): React$1.ReactElement;
1663
1674
 
1664
1675
  interface DateSlotPickerClassNames {
1665
1676
  root?: string;
@@ -1685,10 +1696,105 @@ interface DateSlotPickerProps {
1685
1696
  availability?: DayAvailability[];
1686
1697
  /** Show price on slots. Default: true. */
1687
1698
  showPrice?: boolean;
1699
+ /** Forwarded to `<SlotPicker>` to render multi-day stay labels. */
1700
+ schedulingMode?: SchedulingMode;
1701
+ /** Forwarded to `<SlotPicker>` — unit for the stay summary in multi-day mode. */
1702
+ durationUnit?: DurationUnit;
1703
+ /** Forwarded to `<SlotPicker>` — value for the stay summary in multi-day mode. */
1704
+ durationValue?: number;
1688
1705
  className?: string;
1689
1706
  classNames?: DateSlotPickerClassNames;
1690
1707
  }
1691
- declare function DateSlotPicker({ serviceId, daysToShow, participantCount, selectedSlot, onSlotSelect, availability: availabilityProp, showPrice, className, classNames, }: DateSlotPickerProps): React$1.ReactElement;
1708
+ declare function DateSlotPicker({ serviceId, daysToShow, participantCount, selectedSlot, onSlotSelect, availability: availabilityProp, showPrice, schedulingMode, durationUnit, durationValue, className, classNames, }: DateSlotPickerProps): React$1.ReactElement;
1709
+
1710
+ interface DatePickerClassNames {
1711
+ /** Outer wrapper around the trigger. */
1712
+ root?: string;
1713
+ /** The trigger button shown when the popover is closed. */
1714
+ trigger?: string;
1715
+ /** The popover panel rendered above/below the trigger. */
1716
+ popup?: string;
1717
+ /** The DayPicker root element. */
1718
+ calendar?: string;
1719
+ /** Selected day cell. */
1720
+ daySelected?: string;
1721
+ /** Today cell. */
1722
+ dayToday?: string;
1723
+ /** Disabled day cell. */
1724
+ dayDisabled?: string;
1725
+ }
1726
+ interface DatePickerProps {
1727
+ /** Controlled value as an ISO date string (`YYYY-MM-DD`). */
1728
+ value?: string;
1729
+ /** Called when the user picks a date. Empty string means "cleared". */
1730
+ onChange?: (value: string) => void;
1731
+ /** Placeholder text shown when no date is selected. */
1732
+ placeholder?: string;
1733
+ /** Earliest selectable date (inclusive). */
1734
+ minDate?: Date;
1735
+ /** Latest selectable date (inclusive). */
1736
+ maxDate?: Date;
1737
+ /** Arbitrary matchers passed through to DayPicker. */
1738
+ disabled?: Matcher | Matcher[];
1739
+ /** When true, the trigger button is disabled. */
1740
+ triggerDisabled?: boolean;
1741
+ /** Native form name. */
1742
+ name?: string;
1743
+ /** Required attribute on the underlying hidden input. */
1744
+ required?: boolean;
1745
+ className?: string;
1746
+ classNames?: DatePickerClassNames;
1747
+ /** Accessible label for the trigger button. */
1748
+ "aria-label"?: string;
1749
+ }
1750
+ /**
1751
+ * Branded date picker for storefront flows. Trigger looks like an input,
1752
+ * click opens a calendar popover. Themable via `classNames`; pairs with
1753
+ * `<TimePicker>` for datetime use cases.
1754
+ *
1755
+ * Use this in place of `<input type="date">` so the calendar UI looks the
1756
+ * same across Chrome, Safari, and Firefox.
1757
+ */
1758
+ declare function DatePicker({ value, onChange, placeholder, minDate, maxDate, disabled, triggerDisabled, name, required, className, classNames, "aria-label": ariaLabel, }: DatePickerProps): React.ReactElement;
1759
+
1760
+ interface TimePickerClassNames {
1761
+ root?: string;
1762
+ trigger?: string;
1763
+ popup?: string;
1764
+ option?: string;
1765
+ optionSelected?: string;
1766
+ }
1767
+ interface TimePickerProps {
1768
+ /** Controlled value as a 24-hour `HH:mm` string. */
1769
+ value?: string;
1770
+ /** Called when the user picks a time. Empty string means "cleared". */
1771
+ onChange?: (value: string) => void;
1772
+ /** Placeholder shown when no time is selected. */
1773
+ placeholder?: string;
1774
+ /** Earliest selectable time, inclusive. `HH:mm`. Default `"00:00"`. */
1775
+ minTime?: string;
1776
+ /** Latest selectable time, inclusive. `HH:mm`. Default `"23:59"`. */
1777
+ maxTime?: string;
1778
+ /** Minutes between options. Default 30. */
1779
+ stepMinutes?: number;
1780
+ /** Display format: 12-hour with AM/PM, or 24-hour. Default `"12h"`. */
1781
+ displayFormat?: "12h" | "24h";
1782
+ /** Disable the trigger entirely. */
1783
+ triggerDisabled?: boolean;
1784
+ /** Native form name (renders a hidden input with the `HH:mm` value). */
1785
+ name?: string;
1786
+ /** Required attribute on the hidden input. */
1787
+ required?: boolean;
1788
+ className?: string;
1789
+ classNames?: TimePickerClassNames;
1790
+ "aria-label"?: string;
1791
+ }
1792
+ /**
1793
+ * Branded time picker for storefront flows. Trigger shows the formatted
1794
+ * time, click opens a scrollable list of options in 12- or 24-hour format.
1795
+ * Themable via `classNames`; pairs with `<DatePicker>` for datetime inputs.
1796
+ */
1797
+ declare function TimePicker({ value, onChange, placeholder, minTime, maxTime, stepMinutes, displayFormat, triggerDisabled, name, required, className, classNames, "aria-label": ariaLabel, }: TimePickerProps): React.ReactElement;
1692
1798
 
1693
1799
  interface StaffPickerClassNames {
1694
1800
  root?: string;
@@ -2740,4 +2846,4 @@ interface ChatWidgetProps {
2740
2846
  }
2741
2847
  declare function ChatWidget({ client: clientProp, businessName, greeting, subtitle, starters, placeholder, position, defaultOpen, pollInterval, className, classNames, }: ChatWidgetProps): react_jsx_runtime.JSX.Element;
2742
2848
 
2743
- export { AccommodationCard, Ad, AdPosition, type AdProps, AdProvider, AdSlot, AddOnSelector, type AddOnSelectorClassNames, type AddOnSelectorProps, type AddToCartOptions, AddressElement, AuthElement, AvailabilityBadge, type AvailabilityBadgeClassNames, type AvailabilityBadgeProps, BillingPlanSelector, type BillingPlanSelectorClassNames, type BillingPlanSelectorProps, BookingCard, type BookingCardClassNames, type BookingCardProps, BookingList, type BookingListClassNames, type BookingListProps, BookingPage, type BookingPageClassNames, type BookingPageProps, BookingsPage, type BookingsPageClassNames, type BookingsPageProps, BundleProductCard, BundleProductLayout, BundleSelector, type BundleSelectorClassNames, type BundleSelectorProps, CardImage, type CardLayoutProps, CardShell, CardVariant, type CartAddOnOptionSelection, CartDrawer, type CartDrawerProps, CartDrawerProvider, type CartLayoutProps, CartPage, type CartPageClassNames, type CartPageProps, CartSummary, type CartSummaryClassNames, type CartSummaryProps, CartTemplate, type CartVariantSelection, CatalogueCollectionLayout, type CatalogueLayoutProps, CataloguePage, type CataloguePageClassNames, type CataloguePageProps, CatalogueTemplate, CategoryFilter, type CategoryFilterClassNames, type CategoryFilterProps, CategoryGrid, type CategoryGridClassNames, type CategoryGridProps, ChatWidget, type ChatWidgetClassNames, type ChatWidgetProps, CheckoutPage, type CheckoutPageClassNames, type CheckoutPageProps, CimplifyAccount, type CimplifyAccountProps, CimplifyCheckout, type CimplifyCheckoutProps, type CimplifyClientContextValue, type CimplifyContextValue, CimplifyProvider, type CimplifyProviderProps, type CollectionLayoutProps, CollectionPage, type CollectionPageClassNames, type CollectionPageProps, CollectionTemplate, CompactCartLayout, CompactCatalogueLayout, CompactSearchLayout, CompactServiceCard, CompositeProductCard, CompositeProductLayout, CompositeSelector, type CompositeSelectorClassNames, type CompositeSelectorProps, CurrencySelector, type CurrencySelectorClassNames, type CurrencySelectorProps, CustomAttributesTable, CustomerInputFields, type CustomerInputFieldsClassNames, type CustomerInputFieldsProps, DateSlotPicker, type DateSlotPickerClassNames, type DateSlotPickerProps, DealBanner, type DealBannerClassNames, type DealBannerProps, DealsPage, type DealsPageClassNames, type DealsPageProps, DefaultCartLayout, DefaultCatalogueLayout, DefaultCollectionLayout, DefaultProductLayout, DefaultSearchLayout, DeliveryEstimate, type DeliveryEstimateClassNames, type DeliveryEstimateProps, DigitalProductCard, DigitalProductLayout, DiscountInput, type DiscountInputClassNames, type DiscountInputProps, ElementsProvider, FeaturedCollectionLayout, FoodProductCard, FoodProductLayout, InventoryBadge, LeaseServiceCard, LocationPicker, type LocationPickerClassNames, type LocationPickerProps, MetadataStringList, OrderDetailPage, type OrderDetailPageClassNames, type OrderDetailPageProps, OrderHistory, type OrderHistoryClassNames, OrderHistoryPage, type OrderHistoryPageClassNames, type OrderHistoryPageProps, type OrderHistoryProps, OrderSummary, type OrderSummaryClassNames, type OrderSummaryProps, PaymentElement, Price, type PriceProps, PriceRange, type PriceRangeProps, ProductCard, type ProductCardClassNames, type ProductCardProps, ProductCustomizer, type ProductCustomizerClassNames, type ProductCustomizerProps, ProductGrid, type ProductGridClassNames, type ProductGridProps, ProductImageGallery, type ProductImageGalleryProps, type ProductLayoutProps, ProductPage, type ProductPageClassNames, type ProductPageProps, ProductSheet, type ProductSheetClassNames, type ProductSheetProps, ProductTemplate, PropertiesTable, QuantitySelector, type QuantitySelectorClassNames, type QuantitySelectorProps, QuickAddButton, RecentlyViewed, type RecentlyViewedClassNames, type RecentlyViewedProps, RecommendationCarousel, type RecommendationCarouselClassNames, type RecommendationCarouselProps, RelatedProductsSection, RentalServiceCard, type Resource, ResourcePicker, type ResourcePickerClassNames, type ResourcePickerProps, RetailProductCard, SaleBadge, type SaleBadgeClassNames, type SaleBadgeProps, ScheduleServiceCard, SearchInput, type SearchInputClassNames, type SearchInputProps, type SearchLayoutProps, SearchPage, type SearchPageClassNames, type SearchPageProps, SearchTemplate, type ServiceCardLayoutProps, ServiceProductLayout, SessionMessageBanner, type SessionMessageBannerClassNames, type SessionMessageBannerProps, SlotPicker, type SlotPickerClassNames, type SlotPickerProps, SoldOutOverlay, StaffPicker, type StaffPickerClassNames, type StaffPickerProps, StandardServiceCard, StoreNav, type StoreNavClassNames, type StoreNavProps, SubscriptionCard, TagPills, TwoColumnGrid, type UseActivityStateOptions, type UseActivityStateResult, type UseAttributeDefinitionsOptions, type UseAttributeDefinitionsResult, type UseAvailableSlotsOptions, type UseAvailableSlotsResult, type UseBillingPlansOptions, type UseBillingPlansResult, type UseBookingsOptions, type UseBookingsResult, type UseBootstrapOptions, type UseBootstrapResult, type UseBundlesOptions, type UseBundlesResult, type UseCartItem, type UseCartOptions, type UseCartResult, type UseCategoriesOptions, type UseCategoriesResult, type UseChatOptions, type UseChatResult, type UseCollectionOptions, type UseCollectionResult, type UseCollectionsOptions, type UseCollectionsResult, type UseDealsOptions, type UseDealsResult, type UseDeliveryFeeOptions, type UseDeliveryFeeResult, type UseFxRateOptions, type UseFxRateResult, type UseLocationsOptions, type UseLocationsResult, type UseOrderOptions, type UseOrderResult, type UseOrdersOptions, type UseOrdersResult, type UseProductAvailabilityOptions, type UseProductAvailabilityResult, type UseProductDealsOptions, type UseProductDealsResult, type UseProductOptions, type UseProductPriceInput, type UseProductPriceResult, type UseProductResult, type UseProductSchedulesOptions, type UseProductSchedulesResult, type UseProductsOnSaleOptions, type UseProductsOnSaleResult, type UseProductsOptions, type UseProductsResult, type UsePropertyFacetsOptions, type UsePropertyFacetsResult, type UseQuoteInput, type UseQuoteOptions, type UseQuoteResult, type UseRecommendationsOptions, type UseRecommendationsResult, type UseSearchOptions, type UseSearchResult, type UseServiceAvailabilityOptions, type UseServiceAvailabilityResult, type UseServicesOptions, type UseServicesResult, type UseTaxonomiesOptions, type UseTaxonomiesResult, type UseTaxonomyOptions, type UseTaxonomyPathOptions, type UseTaxonomyPathResult, type UseTaxonomyResult, type UseValidateDiscountOptions, type UseValidateDiscountResult, type UseVariantSelectorOptions, type UseVariantSelectorResult, VariantSelector, type VariantSelectorClassNames, type VariantSelectorProps, VolumePricing, type VolumePricingClassNames, type VolumePricingProps, WholesaleProductCard, WholesaleProductLayout, WishlistButton, cn, roomToResource, useActivityState, useAds, useAttributeDefinitions, useAvailableSlots, useBillingPlans, useBookings, useBootstrap, useBundles, useCart, useCartDrawer, useCategories, useChat, useCheckout, useCimplify, useCimplifyClient, useCollection, useCollections, useDeals, useDeliveryFee, useElements, useElementsReady, useFxRate, useLocations, useOptionalCimplify, useOrder, useOrders, useProduct, useProductAvailability, useProductDeals, useProductPrice, useProductSchedules, useProducts, useProductsOnSale, usePropertyFacets, useQuote, useRecommendations, useSearch, useServiceAvailability, useServices, useSubscription, useSubscriptions, useTaxonomies, useTaxonomy, useTaxonomyPath, useValidateDiscount, useVariantSelector };
2849
+ export { AccommodationCard, Ad, AdPosition, type AdProps, AdProvider, AdSlot, AddOnSelector, type AddOnSelectorClassNames, type AddOnSelectorProps, type AddToCartOptions, AddressElement, AuthElement, AvailabilityBadge, type AvailabilityBadgeClassNames, type AvailabilityBadgeProps, BillingPlanSelector, type BillingPlanSelectorClassNames, type BillingPlanSelectorProps, BookingCard, type BookingCardClassNames, type BookingCardProps, BookingList, type BookingListClassNames, type BookingListProps, BookingPage, type BookingPageClassNames, type BookingPageProps, BookingsPage, type BookingsPageClassNames, type BookingsPageProps, BundleProductCard, BundleProductLayout, BundleSelector, type BundleSelectorClassNames, type BundleSelectorProps, CardImage, type CardLayoutProps, CardShell, CardVariant, type CartAddOnOptionSelection, CartDrawer, type CartDrawerProps, CartDrawerProvider, type CartLayoutProps, CartPage, type CartPageClassNames, type CartPageProps, CartSummary, type CartSummaryClassNames, type CartSummaryProps, CartTemplate, type CartVariantSelection, CatalogueCollectionLayout, type CatalogueLayoutProps, CataloguePage, type CataloguePageClassNames, type CataloguePageProps, CatalogueTemplate, CategoryFilter, type CategoryFilterClassNames, type CategoryFilterProps, CategoryGrid, type CategoryGridClassNames, type CategoryGridProps, ChatWidget, type ChatWidgetClassNames, type ChatWidgetProps, CheckoutPage, type CheckoutPageClassNames, type CheckoutPageProps, CimplifyAccount, type CimplifyAccountProps, CimplifyCheckout, type CimplifyCheckoutProps, type CimplifyClientContextValue, type CimplifyContextValue, CimplifyProvider, type CimplifyProviderProps, type CollectionLayoutProps, CollectionPage, type CollectionPageClassNames, type CollectionPageProps, CollectionTemplate, CompactCartLayout, CompactCatalogueLayout, CompactSearchLayout, CompactServiceCard, CompositeProductCard, CompositeProductLayout, CompositeSelector, type CompositeSelectorClassNames, type CompositeSelectorProps, CurrencySelector, type CurrencySelectorClassNames, type CurrencySelectorProps, CustomAttributesTable, CustomerInputFields, type CustomerInputFieldsClassNames, type CustomerInputFieldsProps, DatePicker, type DatePickerClassNames, type DatePickerProps, DateSlotPicker, type DateSlotPickerClassNames, type DateSlotPickerProps, DealBanner, type DealBannerClassNames, type DealBannerProps, DealsPage, type DealsPageClassNames, type DealsPageProps, DefaultCartLayout, DefaultCatalogueLayout, DefaultCollectionLayout, DefaultProductLayout, DefaultSearchLayout, DeliveryEstimate, type DeliveryEstimateClassNames, type DeliveryEstimateProps, DigitalProductCard, DigitalProductLayout, DiscountInput, type DiscountInputClassNames, type DiscountInputProps, ElementsProvider, FeaturedCollectionLayout, FoodProductCard, FoodProductLayout, InventoryBadge, LeaseServiceCard, LocationPicker, type LocationPickerClassNames, type LocationPickerProps, MetadataStringList, OrderDetailPage, type OrderDetailPageClassNames, type OrderDetailPageProps, OrderHistory, type OrderHistoryClassNames, OrderHistoryPage, type OrderHistoryPageClassNames, type OrderHistoryPageProps, type OrderHistoryProps, OrderSummary, type OrderSummaryClassNames, type OrderSummaryProps, PaymentElement, Price, type PriceProps, PriceRange, type PriceRangeProps, ProductCard, type ProductCardClassNames, type ProductCardProps, ProductCustomizer, type ProductCustomizerClassNames, type ProductCustomizerProps, ProductGrid, type ProductGridClassNames, type ProductGridProps, ProductImageGallery, type ProductImageGalleryProps, type ProductLayoutProps, ProductPage, type ProductPageClassNames, type ProductPageProps, ProductSheet, type ProductSheetClassNames, type ProductSheetProps, ProductTemplate, PropertiesTable, QuantitySelector, type QuantitySelectorClassNames, type QuantitySelectorProps, QuickAddButton, RecentlyViewed, type RecentlyViewedClassNames, type RecentlyViewedProps, RecommendationCarousel, type RecommendationCarouselClassNames, type RecommendationCarouselProps, RelatedProductsSection, RentalServiceCard, type Resource, ResourcePicker, type ResourcePickerClassNames, type ResourcePickerProps, RetailProductCard, SaleBadge, type SaleBadgeClassNames, type SaleBadgeProps, ScheduleServiceCard, SearchInput, type SearchInputClassNames, type SearchInputProps, type SearchLayoutProps, SearchPage, type SearchPageClassNames, type SearchPageProps, SearchTemplate, type ServiceCardLayoutProps, ServiceProductLayout, SessionMessageBanner, type SessionMessageBannerClassNames, type SessionMessageBannerProps, SlotPicker, type SlotPickerClassNames, type SlotPickerProps, SoldOutOverlay, StaffPicker, type StaffPickerClassNames, type StaffPickerProps, StandardServiceCard, StoreNav, type StoreNavClassNames, type StoreNavProps, SubscriptionCard, TagPills, TimePicker, type TimePickerClassNames, type TimePickerProps, TwoColumnGrid, type UseActivityStateOptions, type UseActivityStateResult, type UseAttributeDefinitionsOptions, type UseAttributeDefinitionsResult, type UseAvailableSlotsOptions, type UseAvailableSlotsResult, type UseBillingPlansOptions, type UseBillingPlansResult, type UseBookingsOptions, type UseBookingsResult, type UseBootstrapOptions, type UseBootstrapResult, type UseBundlesOptions, type UseBundlesResult, type UseCartItem, type UseCartOptions, type UseCartResult, type UseCategoriesOptions, type UseCategoriesResult, type UseChatOptions, type UseChatResult, type UseCollectionOptions, type UseCollectionResult, type UseCollectionsOptions, type UseCollectionsResult, type UseDealsOptions, type UseDealsResult, type UseDeliveryFeeOptions, type UseDeliveryFeeResult, type UseFxRateOptions, type UseFxRateResult, type UseLocationsOptions, type UseLocationsResult, type UseOrderOptions, type UseOrderResult, type UseOrdersOptions, type UseOrdersResult, type UseProductAvailabilityOptions, type UseProductAvailabilityResult, type UseProductDealsOptions, type UseProductDealsResult, type UseProductOptions, type UseProductPriceInput, type UseProductPriceResult, type UseProductResult, type UseProductSchedulesOptions, type UseProductSchedulesResult, type UseProductsOnSaleOptions, type UseProductsOnSaleResult, type UseProductsOptions, type UseProductsResult, type UsePropertyFacetsOptions, type UsePropertyFacetsResult, type UseQuoteInput, type UseQuoteOptions, type UseQuoteResult, type UseRecommendationsOptions, type UseRecommendationsResult, type UseSearchOptions, type UseSearchResult, type UseServiceAvailabilityOptions, type UseServiceAvailabilityResult, type UseServicesOptions, type UseServicesResult, type UseTaxonomiesOptions, type UseTaxonomiesResult, type UseTaxonomyOptions, type UseTaxonomyPathOptions, type UseTaxonomyPathResult, type UseTaxonomyResult, type UseValidateDiscountOptions, type UseValidateDiscountResult, type UseVariantSelectorOptions, type UseVariantSelectorResult, VariantSelector, type VariantSelectorClassNames, type VariantSelectorProps, VolumePricing, type VolumePricingClassNames, type VolumePricingProps, WholesaleProductCard, WholesaleProductLayout, WishlistButton, cn, roomToResource, useActivityState, useAds, useAttributeDefinitions, useAvailableSlots, useBillingPlans, useBookings, useBootstrap, useBundles, useCart, useCartDrawer, useCategories, useChat, useCheckout, useCimplify, useCimplifyClient, useCollection, useCollections, useDeals, useDeliveryFee, useElements, useElementsReady, useFxRate, useLocations, useOptionalCimplify, useOrder, useOrders, useProduct, useProductAvailability, useProductDeals, useProductPrice, useProductSchedules, useProducts, useProductsOnSale, usePropertyFacets, useQuote, useRecommendations, useSearch, useServiceAvailability, useServices, useSubscription, useSubscriptions, useTaxonomies, useTaxonomy, useTaxonomyPath, useValidateDiscount, useVariantSelector };