@resira/ui 0.4.3 → 0.4.5
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/index.cjs +97 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +114 -1
- package/dist/index.d.ts +114 -1
- package/dist/index.js +96 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -790,6 +790,119 @@ interface UseCheckoutSessionReturn {
|
|
|
790
790
|
* ```
|
|
791
791
|
*/
|
|
792
792
|
declare function useCheckoutSession(token: string | undefined): UseCheckoutSessionReturn;
|
|
793
|
+
/** A single duration/price option for a service. */
|
|
794
|
+
interface ServiceOption {
|
|
795
|
+
/** Duration in minutes. */
|
|
796
|
+
durationMinutes: number;
|
|
797
|
+
/** Human-readable duration label (e.g. "1h 30m"). */
|
|
798
|
+
durationLabel: string;
|
|
799
|
+
/** Price in minor units (cents). */
|
|
800
|
+
priceCents: number;
|
|
801
|
+
/** Formatted price string (e.g. "€50.00"). */
|
|
802
|
+
priceFormatted: string;
|
|
803
|
+
}
|
|
804
|
+
/** Enriched service data ready for display. */
|
|
805
|
+
interface Service {
|
|
806
|
+
/** Unique service ID. */
|
|
807
|
+
id: string;
|
|
808
|
+
/** Service name. */
|
|
809
|
+
name: string;
|
|
810
|
+
/** Optional description. */
|
|
811
|
+
description?: string;
|
|
812
|
+
/** Image URL. */
|
|
813
|
+
imageUrl?: string;
|
|
814
|
+
/** ISO 4217 currency code. */
|
|
815
|
+
currency: string;
|
|
816
|
+
/** Whether the service is active. */
|
|
817
|
+
active: boolean;
|
|
818
|
+
/** Pricing model: "per_session" | "per_person" | "per_rider". */
|
|
819
|
+
pricingModel: string;
|
|
820
|
+
/** Default/base price in minor units. */
|
|
821
|
+
priceCents: number;
|
|
822
|
+
/** Formatted base price (e.g. "€50.00"). */
|
|
823
|
+
priceFormatted: string;
|
|
824
|
+
/** Lowest price across all options (for "from €X" display). */
|
|
825
|
+
lowestPriceCents: number;
|
|
826
|
+
/** Formatted lowest price. */
|
|
827
|
+
lowestPriceFormatted: string;
|
|
828
|
+
/** Whether multiple duration/price options exist. */
|
|
829
|
+
hasMultipleOptions: boolean;
|
|
830
|
+
/** Default duration in minutes. */
|
|
831
|
+
durationMinutes: number;
|
|
832
|
+
/** Human-readable default duration (e.g. "2h"). */
|
|
833
|
+
durationLabel: string;
|
|
834
|
+
/** All available duration/price options. */
|
|
835
|
+
options: ServiceOption[];
|
|
836
|
+
/** Maximum party/group size. */
|
|
837
|
+
maxPartySize?: number;
|
|
838
|
+
/** IDs of linked equipment/resources. */
|
|
839
|
+
equipmentIds: string[];
|
|
840
|
+
/** Names of linked equipment/resources. */
|
|
841
|
+
equipmentNames?: string[];
|
|
842
|
+
/** Display color. */
|
|
843
|
+
serviceColor?: string;
|
|
844
|
+
/** Sort order. */
|
|
845
|
+
sortOrder?: number;
|
|
846
|
+
/** Raw product object from the API. */
|
|
847
|
+
raw: Product;
|
|
848
|
+
}
|
|
849
|
+
interface UseServicesReturn {
|
|
850
|
+
/** Enriched service list. */
|
|
851
|
+
services: Service[];
|
|
852
|
+
/** Whether loading. */
|
|
853
|
+
loading: boolean;
|
|
854
|
+
/** Error message. */
|
|
855
|
+
error: string | null;
|
|
856
|
+
/** Re-fetch services. */
|
|
857
|
+
refetch: () => void;
|
|
858
|
+
}
|
|
859
|
+
/**
|
|
860
|
+
* Fetch all services for the organisation with enriched display data.
|
|
861
|
+
*
|
|
862
|
+
* Returns formatted prices, duration labels, and "from €X" logic
|
|
863
|
+
* so you can render service cards with your own styling.
|
|
864
|
+
*
|
|
865
|
+
* Requires `<ResiraProvider>` ancestor.
|
|
866
|
+
*
|
|
867
|
+
* ```tsx
|
|
868
|
+
* const { services, loading, error } = useServices();
|
|
869
|
+
*
|
|
870
|
+
* return services.map(s => (
|
|
871
|
+
* <div key={s.id}>
|
|
872
|
+
* <h3>{s.name}</h3>
|
|
873
|
+
* <img src={s.imageUrl} alt={s.name} />
|
|
874
|
+
* <p>{s.hasMultipleOptions ? `from ${s.lowestPriceFormatted}` : s.priceFormatted}</p>
|
|
875
|
+
* <p>{s.durationLabel}</p>
|
|
876
|
+
* {s.options.map(opt => (
|
|
877
|
+
* <span key={opt.durationMinutes}>{opt.durationLabel} — {opt.priceFormatted}</span>
|
|
878
|
+
* ))}
|
|
879
|
+
* </div>
|
|
880
|
+
* ));
|
|
881
|
+
* ```
|
|
882
|
+
*/
|
|
883
|
+
declare function useServices(): UseServicesReturn;
|
|
884
|
+
/**
|
|
885
|
+
* Fetch all services for an organisation — standalone, no React needed.
|
|
886
|
+
*
|
|
887
|
+
* Use this in non-React contexts, server components, scripts, or
|
|
888
|
+
* when you want full control over rendering.
|
|
889
|
+
*
|
|
890
|
+
* ```ts
|
|
891
|
+
* import { fetchServices } from "@resira/ui";
|
|
892
|
+
*
|
|
893
|
+
* const services = await fetchServices("your-api-key");
|
|
894
|
+
* services.forEach(s => {
|
|
895
|
+
* console.log(s.name, s.lowestPriceFormatted, s.options);
|
|
896
|
+
* });
|
|
897
|
+
* ```
|
|
898
|
+
*
|
|
899
|
+
* @param apiKey Your Resira public API key
|
|
900
|
+
* @param opts Optional: baseUrl override
|
|
901
|
+
* @returns Array of enriched Service objects
|
|
902
|
+
*/
|
|
903
|
+
declare function fetchServices(apiKey: string, opts?: {
|
|
904
|
+
baseUrl?: string;
|
|
905
|
+
}): Promise<Service[]>;
|
|
793
906
|
|
|
794
907
|
/** Default theme values. */
|
|
795
908
|
declare const DEFAULT_THEME: Required<ResiraTheme>;
|
|
@@ -829,4 +942,4 @@ declare function TagIcon({ size, className }: IconProps): react_jsx_runtime.JSX.
|
|
|
829
942
|
declare function CubeIcon({ size, className }: IconProps): react_jsx_runtime.JSX.Element;
|
|
830
943
|
declare function ViewfinderIcon({ size, className }: IconProps): react_jsx_runtime.JSX.Element;
|
|
831
944
|
|
|
832
|
-
export { AlertCircleIcon, BookingCalendar, BookingModal, type BookingSelection, type BookingStep, CalendarIcon, CheckCircleIcon, CheckIcon, type CheckoutSessionErrorCode, ChevronLeftIcon, ChevronRightIcon, ClockIcon, ConfirmationView, CreditCardIcon, CubeIcon, DEFAULT_LOCALE, DEFAULT_THEME, type DeeplinkGuest, type DeeplinkSelection, DishShowcase, type DishShowcaseProps, type DomainConfig, GuestForm, type GuestFormErrors, type GuestFormValues, LockIcon, MailIcon, MinusIcon, NoteIcon, PaymentForm, PhoneIcon, PlusIcon, ProductSelector, ResiraBookingWidget, type ResiraClassNames, type ResiraContextValue, type ResiraDomain, type ResiraLocale, ResiraProvider, type ResiraProviderConfig, type ResiraProviderProps, type ResiraTheme, ResourcePicker, type ServiceLayout, ShieldIcon, SummaryPreview, TagIcon, TimeSlotPicker, UserIcon, UsersIcon, ViewfinderIcon, WaiverConsent, XIcon, resolveTheme, themeToCSS, useAvailability, useCheckoutSession, useDish, useDishes, usePaymentIntent, useProducts, useReservation, useResira, useResources, validateGuestForm };
|
|
945
|
+
export { AlertCircleIcon, BookingCalendar, BookingModal, type BookingSelection, type BookingStep, CalendarIcon, CheckCircleIcon, CheckIcon, type CheckoutSessionErrorCode, ChevronLeftIcon, ChevronRightIcon, ClockIcon, ConfirmationView, CreditCardIcon, CubeIcon, DEFAULT_LOCALE, DEFAULT_THEME, type DeeplinkGuest, type DeeplinkSelection, DishShowcase, type DishShowcaseProps, type DomainConfig, GuestForm, type GuestFormErrors, type GuestFormValues, LockIcon, MailIcon, MinusIcon, NoteIcon, PaymentForm, PhoneIcon, PlusIcon, ProductSelector, ResiraBookingWidget, type ResiraClassNames, type ResiraContextValue, type ResiraDomain, type ResiraLocale, ResiraProvider, type ResiraProviderConfig, type ResiraProviderProps, type ResiraTheme, ResourcePicker, type Service, type ServiceLayout, type ServiceOption, ShieldIcon, SummaryPreview, TagIcon, TimeSlotPicker, type UseServicesReturn, UserIcon, UsersIcon, ViewfinderIcon, WaiverConsent, XIcon, fetchServices, resolveTheme, themeToCSS, useAvailability, useCheckoutSession, useDish, useDishes, usePaymentIntent, useProducts, useReservation, useResira, useResources, useServices, validateGuestForm };
|
package/dist/index.d.ts
CHANGED
|
@@ -790,6 +790,119 @@ interface UseCheckoutSessionReturn {
|
|
|
790
790
|
* ```
|
|
791
791
|
*/
|
|
792
792
|
declare function useCheckoutSession(token: string | undefined): UseCheckoutSessionReturn;
|
|
793
|
+
/** A single duration/price option for a service. */
|
|
794
|
+
interface ServiceOption {
|
|
795
|
+
/** Duration in minutes. */
|
|
796
|
+
durationMinutes: number;
|
|
797
|
+
/** Human-readable duration label (e.g. "1h 30m"). */
|
|
798
|
+
durationLabel: string;
|
|
799
|
+
/** Price in minor units (cents). */
|
|
800
|
+
priceCents: number;
|
|
801
|
+
/** Formatted price string (e.g. "€50.00"). */
|
|
802
|
+
priceFormatted: string;
|
|
803
|
+
}
|
|
804
|
+
/** Enriched service data ready for display. */
|
|
805
|
+
interface Service {
|
|
806
|
+
/** Unique service ID. */
|
|
807
|
+
id: string;
|
|
808
|
+
/** Service name. */
|
|
809
|
+
name: string;
|
|
810
|
+
/** Optional description. */
|
|
811
|
+
description?: string;
|
|
812
|
+
/** Image URL. */
|
|
813
|
+
imageUrl?: string;
|
|
814
|
+
/** ISO 4217 currency code. */
|
|
815
|
+
currency: string;
|
|
816
|
+
/** Whether the service is active. */
|
|
817
|
+
active: boolean;
|
|
818
|
+
/** Pricing model: "per_session" | "per_person" | "per_rider". */
|
|
819
|
+
pricingModel: string;
|
|
820
|
+
/** Default/base price in minor units. */
|
|
821
|
+
priceCents: number;
|
|
822
|
+
/** Formatted base price (e.g. "€50.00"). */
|
|
823
|
+
priceFormatted: string;
|
|
824
|
+
/** Lowest price across all options (for "from €X" display). */
|
|
825
|
+
lowestPriceCents: number;
|
|
826
|
+
/** Formatted lowest price. */
|
|
827
|
+
lowestPriceFormatted: string;
|
|
828
|
+
/** Whether multiple duration/price options exist. */
|
|
829
|
+
hasMultipleOptions: boolean;
|
|
830
|
+
/** Default duration in minutes. */
|
|
831
|
+
durationMinutes: number;
|
|
832
|
+
/** Human-readable default duration (e.g. "2h"). */
|
|
833
|
+
durationLabel: string;
|
|
834
|
+
/** All available duration/price options. */
|
|
835
|
+
options: ServiceOption[];
|
|
836
|
+
/** Maximum party/group size. */
|
|
837
|
+
maxPartySize?: number;
|
|
838
|
+
/** IDs of linked equipment/resources. */
|
|
839
|
+
equipmentIds: string[];
|
|
840
|
+
/** Names of linked equipment/resources. */
|
|
841
|
+
equipmentNames?: string[];
|
|
842
|
+
/** Display color. */
|
|
843
|
+
serviceColor?: string;
|
|
844
|
+
/** Sort order. */
|
|
845
|
+
sortOrder?: number;
|
|
846
|
+
/** Raw product object from the API. */
|
|
847
|
+
raw: Product;
|
|
848
|
+
}
|
|
849
|
+
interface UseServicesReturn {
|
|
850
|
+
/** Enriched service list. */
|
|
851
|
+
services: Service[];
|
|
852
|
+
/** Whether loading. */
|
|
853
|
+
loading: boolean;
|
|
854
|
+
/** Error message. */
|
|
855
|
+
error: string | null;
|
|
856
|
+
/** Re-fetch services. */
|
|
857
|
+
refetch: () => void;
|
|
858
|
+
}
|
|
859
|
+
/**
|
|
860
|
+
* Fetch all services for the organisation with enriched display data.
|
|
861
|
+
*
|
|
862
|
+
* Returns formatted prices, duration labels, and "from €X" logic
|
|
863
|
+
* so you can render service cards with your own styling.
|
|
864
|
+
*
|
|
865
|
+
* Requires `<ResiraProvider>` ancestor.
|
|
866
|
+
*
|
|
867
|
+
* ```tsx
|
|
868
|
+
* const { services, loading, error } = useServices();
|
|
869
|
+
*
|
|
870
|
+
* return services.map(s => (
|
|
871
|
+
* <div key={s.id}>
|
|
872
|
+
* <h3>{s.name}</h3>
|
|
873
|
+
* <img src={s.imageUrl} alt={s.name} />
|
|
874
|
+
* <p>{s.hasMultipleOptions ? `from ${s.lowestPriceFormatted}` : s.priceFormatted}</p>
|
|
875
|
+
* <p>{s.durationLabel}</p>
|
|
876
|
+
* {s.options.map(opt => (
|
|
877
|
+
* <span key={opt.durationMinutes}>{opt.durationLabel} — {opt.priceFormatted}</span>
|
|
878
|
+
* ))}
|
|
879
|
+
* </div>
|
|
880
|
+
* ));
|
|
881
|
+
* ```
|
|
882
|
+
*/
|
|
883
|
+
declare function useServices(): UseServicesReturn;
|
|
884
|
+
/**
|
|
885
|
+
* Fetch all services for an organisation — standalone, no React needed.
|
|
886
|
+
*
|
|
887
|
+
* Use this in non-React contexts, server components, scripts, or
|
|
888
|
+
* when you want full control over rendering.
|
|
889
|
+
*
|
|
890
|
+
* ```ts
|
|
891
|
+
* import { fetchServices } from "@resira/ui";
|
|
892
|
+
*
|
|
893
|
+
* const services = await fetchServices("your-api-key");
|
|
894
|
+
* services.forEach(s => {
|
|
895
|
+
* console.log(s.name, s.lowestPriceFormatted, s.options);
|
|
896
|
+
* });
|
|
897
|
+
* ```
|
|
898
|
+
*
|
|
899
|
+
* @param apiKey Your Resira public API key
|
|
900
|
+
* @param opts Optional: baseUrl override
|
|
901
|
+
* @returns Array of enriched Service objects
|
|
902
|
+
*/
|
|
903
|
+
declare function fetchServices(apiKey: string, opts?: {
|
|
904
|
+
baseUrl?: string;
|
|
905
|
+
}): Promise<Service[]>;
|
|
793
906
|
|
|
794
907
|
/** Default theme values. */
|
|
795
908
|
declare const DEFAULT_THEME: Required<ResiraTheme>;
|
|
@@ -829,4 +942,4 @@ declare function TagIcon({ size, className }: IconProps): react_jsx_runtime.JSX.
|
|
|
829
942
|
declare function CubeIcon({ size, className }: IconProps): react_jsx_runtime.JSX.Element;
|
|
830
943
|
declare function ViewfinderIcon({ size, className }: IconProps): react_jsx_runtime.JSX.Element;
|
|
831
944
|
|
|
832
|
-
export { AlertCircleIcon, BookingCalendar, BookingModal, type BookingSelection, type BookingStep, CalendarIcon, CheckCircleIcon, CheckIcon, type CheckoutSessionErrorCode, ChevronLeftIcon, ChevronRightIcon, ClockIcon, ConfirmationView, CreditCardIcon, CubeIcon, DEFAULT_LOCALE, DEFAULT_THEME, type DeeplinkGuest, type DeeplinkSelection, DishShowcase, type DishShowcaseProps, type DomainConfig, GuestForm, type GuestFormErrors, type GuestFormValues, LockIcon, MailIcon, MinusIcon, NoteIcon, PaymentForm, PhoneIcon, PlusIcon, ProductSelector, ResiraBookingWidget, type ResiraClassNames, type ResiraContextValue, type ResiraDomain, type ResiraLocale, ResiraProvider, type ResiraProviderConfig, type ResiraProviderProps, type ResiraTheme, ResourcePicker, type ServiceLayout, ShieldIcon, SummaryPreview, TagIcon, TimeSlotPicker, UserIcon, UsersIcon, ViewfinderIcon, WaiverConsent, XIcon, resolveTheme, themeToCSS, useAvailability, useCheckoutSession, useDish, useDishes, usePaymentIntent, useProducts, useReservation, useResira, useResources, validateGuestForm };
|
|
945
|
+
export { AlertCircleIcon, BookingCalendar, BookingModal, type BookingSelection, type BookingStep, CalendarIcon, CheckCircleIcon, CheckIcon, type CheckoutSessionErrorCode, ChevronLeftIcon, ChevronRightIcon, ClockIcon, ConfirmationView, CreditCardIcon, CubeIcon, DEFAULT_LOCALE, DEFAULT_THEME, type DeeplinkGuest, type DeeplinkSelection, DishShowcase, type DishShowcaseProps, type DomainConfig, GuestForm, type GuestFormErrors, type GuestFormValues, LockIcon, MailIcon, MinusIcon, NoteIcon, PaymentForm, PhoneIcon, PlusIcon, ProductSelector, ResiraBookingWidget, type ResiraClassNames, type ResiraContextValue, type ResiraDomain, type ResiraLocale, ResiraProvider, type ResiraProviderConfig, type ResiraProviderProps, type ResiraTheme, ResourcePicker, type Service, type ServiceLayout, type ServiceOption, ShieldIcon, SummaryPreview, TagIcon, TimeSlotPicker, type UseServicesReturn, UserIcon, UsersIcon, ViewfinderIcon, WaiverConsent, XIcon, fetchServices, resolveTheme, themeToCSS, useAvailability, useCheckoutSession, useDish, useDishes, usePaymentIntent, useProducts, useReservation, useResira, useResources, useServices, validateGuestForm };
|
package/dist/index.js
CHANGED
|
@@ -650,6 +650,101 @@ function useCheckoutSession(token) {
|
|
|
650
650
|
}, [client, token]);
|
|
651
651
|
return { session, loading, error, errorCode };
|
|
652
652
|
}
|
|
653
|
+
function formatPriceCentsUtil(cents, currency) {
|
|
654
|
+
return new Intl.NumberFormat("default", { style: "currency", currency }).format(cents / 100);
|
|
655
|
+
}
|
|
656
|
+
function formatDurationUtil(minutes) {
|
|
657
|
+
if (minutes < 60) return `${minutes} min`;
|
|
658
|
+
const h = Math.floor(minutes / 60);
|
|
659
|
+
const m = minutes % 60;
|
|
660
|
+
return m > 0 ? `${h}h ${m}m` : `${h}h`;
|
|
661
|
+
}
|
|
662
|
+
function enrichProduct(product) {
|
|
663
|
+
const currency = product.currency ?? "EUR";
|
|
664
|
+
const options = [];
|
|
665
|
+
if (product.durationPricing?.length) {
|
|
666
|
+
for (const dp of product.durationPricing) {
|
|
667
|
+
options.push({
|
|
668
|
+
durationMinutes: dp.durationMinutes,
|
|
669
|
+
durationLabel: formatDurationUtil(dp.durationMinutes),
|
|
670
|
+
priceCents: dp.priceCents,
|
|
671
|
+
priceFormatted: formatPriceCentsUtil(dp.priceCents, currency)
|
|
672
|
+
});
|
|
673
|
+
}
|
|
674
|
+
} else {
|
|
675
|
+
options.push({
|
|
676
|
+
durationMinutes: product.durationMinutes,
|
|
677
|
+
durationLabel: formatDurationUtil(product.durationMinutes),
|
|
678
|
+
priceCents: product.priceCents,
|
|
679
|
+
priceFormatted: formatPriceCentsUtil(product.priceCents, currency)
|
|
680
|
+
});
|
|
681
|
+
}
|
|
682
|
+
const lowestPriceCents = Math.min(...options.map((o) => o.priceCents));
|
|
683
|
+
return {
|
|
684
|
+
id: product.id,
|
|
685
|
+
name: product.name,
|
|
686
|
+
description: product.description,
|
|
687
|
+
imageUrl: product.imageUrl,
|
|
688
|
+
currency,
|
|
689
|
+
active: product.active,
|
|
690
|
+
pricingModel: product.pricingModel,
|
|
691
|
+
priceCents: product.priceCents,
|
|
692
|
+
priceFormatted: formatPriceCentsUtil(product.priceCents, currency),
|
|
693
|
+
lowestPriceCents,
|
|
694
|
+
lowestPriceFormatted: formatPriceCentsUtil(lowestPriceCents, currency),
|
|
695
|
+
hasMultipleOptions: options.length > 1,
|
|
696
|
+
durationMinutes: product.durationMinutes,
|
|
697
|
+
durationLabel: formatDurationUtil(product.durationMinutes),
|
|
698
|
+
options,
|
|
699
|
+
maxPartySize: product.maxPartySize,
|
|
700
|
+
equipmentIds: product.equipmentIds,
|
|
701
|
+
equipmentNames: product.equipmentNames,
|
|
702
|
+
serviceColor: product.serviceColor,
|
|
703
|
+
sortOrder: product.sortOrder,
|
|
704
|
+
raw: product
|
|
705
|
+
};
|
|
706
|
+
}
|
|
707
|
+
function useServices() {
|
|
708
|
+
const { client } = useResira();
|
|
709
|
+
const [services, setServices] = useState([]);
|
|
710
|
+
const [loading, setLoading] = useState(true);
|
|
711
|
+
const [error, setError] = useState(null);
|
|
712
|
+
const [fetchCount, setFetchCount] = useState(0);
|
|
713
|
+
useEffect(() => {
|
|
714
|
+
let cancelled = false;
|
|
715
|
+
setLoading(true);
|
|
716
|
+
setError(null);
|
|
717
|
+
async function load() {
|
|
718
|
+
try {
|
|
719
|
+
const data = await client.listProducts();
|
|
720
|
+
if (!cancelled) {
|
|
721
|
+
setServices((data.products ?? []).map(enrichProduct));
|
|
722
|
+
}
|
|
723
|
+
} catch (err) {
|
|
724
|
+
if (!cancelled) {
|
|
725
|
+
setError(err instanceof Error ? err.message : "Failed to load services");
|
|
726
|
+
}
|
|
727
|
+
} finally {
|
|
728
|
+
if (!cancelled) setLoading(false);
|
|
729
|
+
}
|
|
730
|
+
}
|
|
731
|
+
load();
|
|
732
|
+
return () => {
|
|
733
|
+
cancelled = true;
|
|
734
|
+
};
|
|
735
|
+
}, [client, fetchCount]);
|
|
736
|
+
const refetch = useCallback(() => setFetchCount((c) => c + 1), []);
|
|
737
|
+
return { services, loading, error, refetch };
|
|
738
|
+
}
|
|
739
|
+
async function fetchServices(apiKey, opts) {
|
|
740
|
+
const { Resira: Resira2 } = await import('@resira/sdk');
|
|
741
|
+
const client = new Resira2({
|
|
742
|
+
apiKey,
|
|
743
|
+
...opts?.baseUrl ? { baseUrl: opts.baseUrl } : {}
|
|
744
|
+
});
|
|
745
|
+
const data = await client.listProducts();
|
|
746
|
+
return (data.products ?? []).map(enrichProduct);
|
|
747
|
+
}
|
|
653
748
|
var defaultSize = 20;
|
|
654
749
|
function CalendarIcon({ size = defaultSize, className }) {
|
|
655
750
|
return /* @__PURE__ */ jsxs(
|
|
@@ -4222,6 +4317,6 @@ function DishShowcase({
|
|
|
4222
4317
|
] });
|
|
4223
4318
|
}
|
|
4224
4319
|
|
|
4225
|
-
export { AlertCircleIcon, BookingCalendar, BookingModal, CalendarIcon, CheckCircleIcon, CheckIcon, ChevronLeftIcon, ChevronRightIcon, ClockIcon, ConfirmationView, CreditCardIcon, CubeIcon, DEFAULT_LOCALE, DEFAULT_THEME, DishShowcase, GuestForm, LockIcon, MailIcon, MinusIcon, NoteIcon, PaymentForm, PhoneIcon, PlusIcon, ProductSelector, ResiraBookingWidget, ResiraProvider, ResourcePicker, ShieldIcon, SummaryPreview, TagIcon, TimeSlotPicker, UserIcon, UsersIcon, ViewfinderIcon, WaiverConsent, XIcon, resolveTheme, themeToCSS, useAvailability, useCheckoutSession, useDish, useDishes, usePaymentIntent, useProducts, useReservation, useResira, useResources, validateGuestForm };
|
|
4320
|
+
export { AlertCircleIcon, BookingCalendar, BookingModal, CalendarIcon, CheckCircleIcon, CheckIcon, ChevronLeftIcon, ChevronRightIcon, ClockIcon, ConfirmationView, CreditCardIcon, CubeIcon, DEFAULT_LOCALE, DEFAULT_THEME, DishShowcase, GuestForm, LockIcon, MailIcon, MinusIcon, NoteIcon, PaymentForm, PhoneIcon, PlusIcon, ProductSelector, ResiraBookingWidget, ResiraProvider, ResourcePicker, ShieldIcon, SummaryPreview, TagIcon, TimeSlotPicker, UserIcon, UsersIcon, ViewfinderIcon, WaiverConsent, XIcon, fetchServices, resolveTheme, themeToCSS, useAvailability, useCheckoutSession, useDish, useDishes, usePaymentIntent, useProducts, useReservation, useResira, useResources, useServices, validateGuestForm };
|
|
4226
4321
|
//# sourceMappingURL=index.js.map
|
|
4227
4322
|
//# sourceMappingURL=index.js.map
|