@diffsome/react 1.2.0 → 1.2.2
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.d.mts +63 -3
- package/dist/index.d.ts +63 -3
- package/dist/index.js +542 -346
- package/dist/index.mjs +538 -345
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as react from 'react';
|
|
3
3
|
import { ReactNode } from 'react';
|
|
4
|
-
import { Diffsome, Cart, WishlistItem, DiffsomeConfig, Member, LoginCredentials, AuthResponse, RegisterData, UpdateProfileData, ResetPasswordData, SocialProvider, WishlistToggleResult, WishlistMoveToCartResult, BundlePricing, ProductCategory, Product, PaginationMeta, ProductListParams, ProductType, CreateOrderData, Order, OrderListParams, PaymentStatusResponse, StripeCheckoutResponse, StripeVerifyResponse, TossPaymentReadyResponse, TossPaymentConfirmResponse, Coupon, CouponValidation, MemberSubscription, DigitalDownloadLink, CanReviewResponse, CreateProductReviewData, ProductReview, UpdateProductReviewData, ProductReviewStats, ProductReviewListParams, BlogCategory, BlogListParams, BlogPost, BoardPost, Board, CreateBoardPostData, BoardPostListParams, BoardListParams, Comment, CreateCommentData, Form, FormSubmissionData, FormSubmission, ReservationSlot, CreateReservationData, Reservation, ReservationService, ReservationSettings, ReservationStaff, ReservationListParams, Media, CustomEntity, EntityRecord, EntityListParams } from '@diffsome/sdk';
|
|
5
|
-
export { AddToCartData, AuthResponse, BlogCategory, BlogListParams, BlogPost, Board, BoardListParams, BoardPost, BoardPostListParams, CanReviewResponse, Cart, CartItem, Comment, Coupon, CouponType, CouponValidation, CreateBoardPostData, CreateCommentData, CreateOrderData, CreateProductReviewData, CreateReservationData, CustomEntity, DiffsomeConfig, DigitalDownloadLink, DigitalFile, EntityField, EntityListParams, EntityRecord, EntitySchema, Form, FormSubmission, FormSubmissionData, ListResponse, LoginCredentials, Media, Member, MemberSubscription, Order, OrderItem, OrderListParams, OrderStatus, PaginatedResponse, PaginationMeta, Payment, PaymentMethod, PaymentStatus, PaymentStatusResponse, Product, ProductCategory, ProductListParams, ProductReview, ProductReviewStats, ProductType, ProductVariant, RegisterData, Reservation, ReservationService, ReservationSettings, ReservationSlot, ReservationStaff, ResetPasswordData, SocialAuthUrl, SocialProvider, StripeCheckoutResponse, StripeVerifyResponse, SubscriptionInterval, SubscriptionPlan, SubscriptionStatus, TossPaymentConfirmResponse, TossPaymentReadyResponse, UpdateProfileData, WishlistItem, WishlistMoveToCartResult, WishlistToggleResult } from '@diffsome/sdk';
|
|
4
|
+
import { Diffsome, Cart, WishlistItem, DiffsomeConfig, CurrencyInfo, SiteInfo, Member, LoginCredentials, AuthResponse, RegisterData, UpdateProfileData, ResetPasswordData, SocialProvider, WishlistToggleResult, WishlistMoveToCartResult, BundlePricing, ProductCategory, Product, PaginationMeta, ProductListParams, ProductType, CreateOrderData, Order, OrderListParams, PaymentStatusResponse, StripeCheckoutResponse, StripeVerifyResponse, TossPaymentReadyResponse, TossPaymentConfirmResponse, Coupon, CouponValidation, MemberSubscription, DigitalDownloadLink, CanReviewResponse, CreateProductReviewData, ProductReview, UpdateProductReviewData, ProductReviewStats, ProductReviewListParams, BlogCategory, BlogListParams, BlogPost, BoardPost, Board, CreateBoardPostData, BoardPostListParams, BoardListParams, Comment, CreateCommentData, Form, FormSubmissionData, FormSubmission, ReservationSlot, CreateReservationData, Reservation, ReservationService, ReservationSettings, ReservationStaff, ReservationListParams, Media, CustomEntity, EntityRecord, EntityListParams } from '@diffsome/sdk';
|
|
5
|
+
export { AddToCartData, AuthResponse, BlogCategory, BlogListParams, BlogPost, Board, BoardListParams, BoardPost, BoardPostListParams, CanReviewResponse, Cart, CartItem, Comment, Coupon, CouponType, CouponValidation, CreateBoardPostData, CreateCommentData, CreateOrderData, CreateProductReviewData, CreateReservationData, CustomEntity, DiffsomeConfig, DigitalDownloadLink, DigitalFile, EntityField, EntityListParams, EntityRecord, EntitySchema, Form, FormSubmission, FormSubmissionData, ListResponse, LoginCredentials, Media, Member, MemberSubscription, Order, OrderItem, OrderListParams, OrderStatus, PaginatedResponse, PaginationMeta, Payment, PaymentMethod, PaymentStatus, PaymentStatusResponse, Product, ProductCategory, ProductListParams, ProductReview, ProductReviewStats, ProductType, ProductVariant, RegisterData, Reservation, ReservationService, ReservationSettings, ReservationSlot, ReservationStaff, ResetPasswordData, SiteInfo, SocialAuthUrl, SocialProvider, StripeCheckoutResponse, StripeVerifyResponse, SubscriptionInterval, SubscriptionPlan, SubscriptionStatus, TossPaymentConfirmResponse, TossPaymentReadyResponse, UpdateProfileData, WishlistItem, WishlistMoveToCartResult, WishlistToggleResult } from '@diffsome/sdk';
|
|
6
6
|
|
|
7
7
|
interface DiffsomeContextValue {
|
|
8
8
|
client: Diffsome;
|
|
@@ -25,6 +25,24 @@ declare function DiffsomeProvider({ children, config }: DiffsomeProviderProps):
|
|
|
25
25
|
declare function useDiffsome(): DiffsomeContextValue;
|
|
26
26
|
declare function useClient(): Diffsome;
|
|
27
27
|
|
|
28
|
+
interface UseSiteReturn {
|
|
29
|
+
site: SiteInfo | null;
|
|
30
|
+
loading: boolean;
|
|
31
|
+
error: Error | null;
|
|
32
|
+
refresh: () => Promise<void>;
|
|
33
|
+
currency: CurrencyInfo | null;
|
|
34
|
+
formatPrice: (amount: number) => string;
|
|
35
|
+
}
|
|
36
|
+
declare function useSite(): UseSiteReturn;
|
|
37
|
+
interface UseCurrencyReturn {
|
|
38
|
+
currency: CurrencyInfo | null;
|
|
39
|
+
loading: boolean;
|
|
40
|
+
error: Error | null;
|
|
41
|
+
formatPrice: (amount: number) => string;
|
|
42
|
+
refresh: () => Promise<void>;
|
|
43
|
+
}
|
|
44
|
+
declare function useCurrency(): UseCurrencyReturn;
|
|
45
|
+
|
|
28
46
|
/**
|
|
29
47
|
* Return type for the useAuth hook
|
|
30
48
|
*/
|
|
@@ -361,6 +379,8 @@ interface UsePaymentStatusReturn {
|
|
|
361
379
|
loading: boolean;
|
|
362
380
|
error: Error | null;
|
|
363
381
|
refresh: () => Promise<void>;
|
|
382
|
+
currency: CurrencyInfo | null;
|
|
383
|
+
formatPrice: (amount: number) => string;
|
|
364
384
|
isTossAvailable: boolean;
|
|
365
385
|
isStripeAvailable: boolean;
|
|
366
386
|
stripePublishableKey: string | null;
|
|
@@ -737,4 +757,44 @@ declare function useTypedEntity<T extends Record<string, any>>(slug: string): {
|
|
|
737
757
|
delete: (id: number) => Promise<void>;
|
|
738
758
|
};
|
|
739
759
|
|
|
740
|
-
|
|
760
|
+
interface RichContentProps {
|
|
761
|
+
/** HTML content from CMS/Editor */
|
|
762
|
+
html: string;
|
|
763
|
+
/** Additional CSS class names */
|
|
764
|
+
className?: string;
|
|
765
|
+
/** Enable prose styles (requires @tailwindcss/typography) */
|
|
766
|
+
prose?: boolean;
|
|
767
|
+
/** Prose variant: 'default' | 'invert' | 'zinc' | 'slate' | 'gray' | 'neutral' | 'stone' */
|
|
768
|
+
proseVariant?: 'default' | 'invert' | 'zinc' | 'slate' | 'gray' | 'neutral' | 'stone';
|
|
769
|
+
/** Prose size: 'sm' | 'base' | 'lg' | 'xl' | '2xl' */
|
|
770
|
+
proseSize?: 'sm' | 'base' | 'lg' | 'xl' | '2xl';
|
|
771
|
+
/** Max width: 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full' */
|
|
772
|
+
maxWidth?: 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full';
|
|
773
|
+
}
|
|
774
|
+
/**
|
|
775
|
+
* RichContent Component
|
|
776
|
+
*
|
|
777
|
+
* Renders HTML content from CMS/Editor with proper styling.
|
|
778
|
+
* Includes Quill editor compatibility and optional Tailwind Typography (prose) styles.
|
|
779
|
+
*
|
|
780
|
+
* @example
|
|
781
|
+
* ```tsx
|
|
782
|
+
* // Basic usage
|
|
783
|
+
* <RichContent html={post.content} />
|
|
784
|
+
*
|
|
785
|
+
* // With prose styles (dark mode)
|
|
786
|
+
* <RichContent html={post.content} prose proseVariant="invert" />
|
|
787
|
+
*
|
|
788
|
+
* // Custom styling
|
|
789
|
+
* <RichContent
|
|
790
|
+
* html={post.content}
|
|
791
|
+
* prose
|
|
792
|
+
* proseVariant="zinc"
|
|
793
|
+
* proseSize="lg"
|
|
794
|
+
* className="my-8"
|
|
795
|
+
* />
|
|
796
|
+
* ```
|
|
797
|
+
*/
|
|
798
|
+
declare function RichContent({ html, className, prose, proseVariant, proseSize, maxWidth, }: RichContentProps): react_jsx_runtime.JSX.Element;
|
|
799
|
+
|
|
800
|
+
export { type CommentType, DiffsomeContext, type DiffsomeContextValue, DiffsomeProvider, type DiffsomeProviderProps, RichContent, type RichContentProps, type UseAuthReturn, type UseAvailableSlotsReturn, type UseBlogCategoriesReturn, type UseBlogOptions, type UseBlogPostReturn, type UseBlogReturn, type UseBlogSearchReturn, type UseBlogTagsReturn, type UseBoardPostReturn, type UseBoardPostsReturn, type UseBoardReturn, type UseBoardsReturn, type UseBundleItemsReturn, type UseCanReviewReturn, type UseCartReturn, type UseCategoriesReturn, type UseCommentsOptions, type UseCommentsReturn, type UseCouponsReturn, type UseCreateBoardPostReturn, type UseCreateOrderReturn, type UseCreateReservationReturn, type UseCreateReviewReturn, type UseCreateSubscriptionReturn, type UseCurrencyReturn, type UseDownloadsReturn, type UseEntitiesReturn, type UseEntityRecordReturn, type UseEntityRecordsReturn, type UseEntityReturn, type UseFeaturedBlogReturn, type UseFeaturedProductsReturn, type UseFormReturn, type UseMediaOptions, type UseMediaReturn, type UseMyReservationsReturn, type UseMyReviewsReturn, type UseOrderDownloadsReturn, type UseOrderReturn, type UseOrdersReturn, type UsePaymentStatusReturn, type UseProductReturn, type UseProductReviewsReturn, type UseProductsByTypeReturn, type UseProductsOptions, type UseProductsReturn, type UseReservationServicesReturn, type UseReservationSettingsReturn, type UseReservationStaffsReturn, type UseSiteReturn, type UseSocialAuthReturn, type UseStripePaymentReturn, type UseSubscriptionReturn, type UseSubscriptionsReturn, type UseTossPaymentReturn, type UseValidateCouponReturn, type UseWishlistReturn, useAuth, useAvailableSlots, useBlog, useBlogCategories, useBlogPost, useBlogSearch, useBlogTags, useBoard, useBoardPost, useBoardPosts, useBoards, useBundleItems, useBundleProducts, useCanReview, useCart, useCategories, useClient, useComments, useCoupons, useCreateBoardPost, useCreateOrder, useCreateReservation, useCreateReview, useCreateSubscription, useCurrency, useDiffsome, useDigitalProducts, useDownloads, useEntities, useEntity, useEntityRecord, useEntityRecords, useFeaturedBlog, useFeaturedProducts, useForm, useMedia, useMyReservations, useMyReviews, useOrder, useOrderDownloads, useOrders, usePaymentStatus, useProduct, useProductReviews, useProducts, useProductsByType, useReservationServices, useReservationSettings, useReservationStaffs, useSite, useSocialAuth, useStripePayment, useSubscription, useSubscriptionProducts, useSubscriptions, useTossPayment, useTypedEntity, useValidateCoupon, useWishlist };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as react from 'react';
|
|
3
3
|
import { ReactNode } from 'react';
|
|
4
|
-
import { Diffsome, Cart, WishlistItem, DiffsomeConfig, Member, LoginCredentials, AuthResponse, RegisterData, UpdateProfileData, ResetPasswordData, SocialProvider, WishlistToggleResult, WishlistMoveToCartResult, BundlePricing, ProductCategory, Product, PaginationMeta, ProductListParams, ProductType, CreateOrderData, Order, OrderListParams, PaymentStatusResponse, StripeCheckoutResponse, StripeVerifyResponse, TossPaymentReadyResponse, TossPaymentConfirmResponse, Coupon, CouponValidation, MemberSubscription, DigitalDownloadLink, CanReviewResponse, CreateProductReviewData, ProductReview, UpdateProductReviewData, ProductReviewStats, ProductReviewListParams, BlogCategory, BlogListParams, BlogPost, BoardPost, Board, CreateBoardPostData, BoardPostListParams, BoardListParams, Comment, CreateCommentData, Form, FormSubmissionData, FormSubmission, ReservationSlot, CreateReservationData, Reservation, ReservationService, ReservationSettings, ReservationStaff, ReservationListParams, Media, CustomEntity, EntityRecord, EntityListParams } from '@diffsome/sdk';
|
|
5
|
-
export { AddToCartData, AuthResponse, BlogCategory, BlogListParams, BlogPost, Board, BoardListParams, BoardPost, BoardPostListParams, CanReviewResponse, Cart, CartItem, Comment, Coupon, CouponType, CouponValidation, CreateBoardPostData, CreateCommentData, CreateOrderData, CreateProductReviewData, CreateReservationData, CustomEntity, DiffsomeConfig, DigitalDownloadLink, DigitalFile, EntityField, EntityListParams, EntityRecord, EntitySchema, Form, FormSubmission, FormSubmissionData, ListResponse, LoginCredentials, Media, Member, MemberSubscription, Order, OrderItem, OrderListParams, OrderStatus, PaginatedResponse, PaginationMeta, Payment, PaymentMethod, PaymentStatus, PaymentStatusResponse, Product, ProductCategory, ProductListParams, ProductReview, ProductReviewStats, ProductType, ProductVariant, RegisterData, Reservation, ReservationService, ReservationSettings, ReservationSlot, ReservationStaff, ResetPasswordData, SocialAuthUrl, SocialProvider, StripeCheckoutResponse, StripeVerifyResponse, SubscriptionInterval, SubscriptionPlan, SubscriptionStatus, TossPaymentConfirmResponse, TossPaymentReadyResponse, UpdateProfileData, WishlistItem, WishlistMoveToCartResult, WishlistToggleResult } from '@diffsome/sdk';
|
|
4
|
+
import { Diffsome, Cart, WishlistItem, DiffsomeConfig, CurrencyInfo, SiteInfo, Member, LoginCredentials, AuthResponse, RegisterData, UpdateProfileData, ResetPasswordData, SocialProvider, WishlistToggleResult, WishlistMoveToCartResult, BundlePricing, ProductCategory, Product, PaginationMeta, ProductListParams, ProductType, CreateOrderData, Order, OrderListParams, PaymentStatusResponse, StripeCheckoutResponse, StripeVerifyResponse, TossPaymentReadyResponse, TossPaymentConfirmResponse, Coupon, CouponValidation, MemberSubscription, DigitalDownloadLink, CanReviewResponse, CreateProductReviewData, ProductReview, UpdateProductReviewData, ProductReviewStats, ProductReviewListParams, BlogCategory, BlogListParams, BlogPost, BoardPost, Board, CreateBoardPostData, BoardPostListParams, BoardListParams, Comment, CreateCommentData, Form, FormSubmissionData, FormSubmission, ReservationSlot, CreateReservationData, Reservation, ReservationService, ReservationSettings, ReservationStaff, ReservationListParams, Media, CustomEntity, EntityRecord, EntityListParams } from '@diffsome/sdk';
|
|
5
|
+
export { AddToCartData, AuthResponse, BlogCategory, BlogListParams, BlogPost, Board, BoardListParams, BoardPost, BoardPostListParams, CanReviewResponse, Cart, CartItem, Comment, Coupon, CouponType, CouponValidation, CreateBoardPostData, CreateCommentData, CreateOrderData, CreateProductReviewData, CreateReservationData, CustomEntity, DiffsomeConfig, DigitalDownloadLink, DigitalFile, EntityField, EntityListParams, EntityRecord, EntitySchema, Form, FormSubmission, FormSubmissionData, ListResponse, LoginCredentials, Media, Member, MemberSubscription, Order, OrderItem, OrderListParams, OrderStatus, PaginatedResponse, PaginationMeta, Payment, PaymentMethod, PaymentStatus, PaymentStatusResponse, Product, ProductCategory, ProductListParams, ProductReview, ProductReviewStats, ProductType, ProductVariant, RegisterData, Reservation, ReservationService, ReservationSettings, ReservationSlot, ReservationStaff, ResetPasswordData, SiteInfo, SocialAuthUrl, SocialProvider, StripeCheckoutResponse, StripeVerifyResponse, SubscriptionInterval, SubscriptionPlan, SubscriptionStatus, TossPaymentConfirmResponse, TossPaymentReadyResponse, UpdateProfileData, WishlistItem, WishlistMoveToCartResult, WishlistToggleResult } from '@diffsome/sdk';
|
|
6
6
|
|
|
7
7
|
interface DiffsomeContextValue {
|
|
8
8
|
client: Diffsome;
|
|
@@ -25,6 +25,24 @@ declare function DiffsomeProvider({ children, config }: DiffsomeProviderProps):
|
|
|
25
25
|
declare function useDiffsome(): DiffsomeContextValue;
|
|
26
26
|
declare function useClient(): Diffsome;
|
|
27
27
|
|
|
28
|
+
interface UseSiteReturn {
|
|
29
|
+
site: SiteInfo | null;
|
|
30
|
+
loading: boolean;
|
|
31
|
+
error: Error | null;
|
|
32
|
+
refresh: () => Promise<void>;
|
|
33
|
+
currency: CurrencyInfo | null;
|
|
34
|
+
formatPrice: (amount: number) => string;
|
|
35
|
+
}
|
|
36
|
+
declare function useSite(): UseSiteReturn;
|
|
37
|
+
interface UseCurrencyReturn {
|
|
38
|
+
currency: CurrencyInfo | null;
|
|
39
|
+
loading: boolean;
|
|
40
|
+
error: Error | null;
|
|
41
|
+
formatPrice: (amount: number) => string;
|
|
42
|
+
refresh: () => Promise<void>;
|
|
43
|
+
}
|
|
44
|
+
declare function useCurrency(): UseCurrencyReturn;
|
|
45
|
+
|
|
28
46
|
/**
|
|
29
47
|
* Return type for the useAuth hook
|
|
30
48
|
*/
|
|
@@ -361,6 +379,8 @@ interface UsePaymentStatusReturn {
|
|
|
361
379
|
loading: boolean;
|
|
362
380
|
error: Error | null;
|
|
363
381
|
refresh: () => Promise<void>;
|
|
382
|
+
currency: CurrencyInfo | null;
|
|
383
|
+
formatPrice: (amount: number) => string;
|
|
364
384
|
isTossAvailable: boolean;
|
|
365
385
|
isStripeAvailable: boolean;
|
|
366
386
|
stripePublishableKey: string | null;
|
|
@@ -737,4 +757,44 @@ declare function useTypedEntity<T extends Record<string, any>>(slug: string): {
|
|
|
737
757
|
delete: (id: number) => Promise<void>;
|
|
738
758
|
};
|
|
739
759
|
|
|
740
|
-
|
|
760
|
+
interface RichContentProps {
|
|
761
|
+
/** HTML content from CMS/Editor */
|
|
762
|
+
html: string;
|
|
763
|
+
/** Additional CSS class names */
|
|
764
|
+
className?: string;
|
|
765
|
+
/** Enable prose styles (requires @tailwindcss/typography) */
|
|
766
|
+
prose?: boolean;
|
|
767
|
+
/** Prose variant: 'default' | 'invert' | 'zinc' | 'slate' | 'gray' | 'neutral' | 'stone' */
|
|
768
|
+
proseVariant?: 'default' | 'invert' | 'zinc' | 'slate' | 'gray' | 'neutral' | 'stone';
|
|
769
|
+
/** Prose size: 'sm' | 'base' | 'lg' | 'xl' | '2xl' */
|
|
770
|
+
proseSize?: 'sm' | 'base' | 'lg' | 'xl' | '2xl';
|
|
771
|
+
/** Max width: 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full' */
|
|
772
|
+
maxWidth?: 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full';
|
|
773
|
+
}
|
|
774
|
+
/**
|
|
775
|
+
* RichContent Component
|
|
776
|
+
*
|
|
777
|
+
* Renders HTML content from CMS/Editor with proper styling.
|
|
778
|
+
* Includes Quill editor compatibility and optional Tailwind Typography (prose) styles.
|
|
779
|
+
*
|
|
780
|
+
* @example
|
|
781
|
+
* ```tsx
|
|
782
|
+
* // Basic usage
|
|
783
|
+
* <RichContent html={post.content} />
|
|
784
|
+
*
|
|
785
|
+
* // With prose styles (dark mode)
|
|
786
|
+
* <RichContent html={post.content} prose proseVariant="invert" />
|
|
787
|
+
*
|
|
788
|
+
* // Custom styling
|
|
789
|
+
* <RichContent
|
|
790
|
+
* html={post.content}
|
|
791
|
+
* prose
|
|
792
|
+
* proseVariant="zinc"
|
|
793
|
+
* proseSize="lg"
|
|
794
|
+
* className="my-8"
|
|
795
|
+
* />
|
|
796
|
+
* ```
|
|
797
|
+
*/
|
|
798
|
+
declare function RichContent({ html, className, prose, proseVariant, proseSize, maxWidth, }: RichContentProps): react_jsx_runtime.JSX.Element;
|
|
799
|
+
|
|
800
|
+
export { type CommentType, DiffsomeContext, type DiffsomeContextValue, DiffsomeProvider, type DiffsomeProviderProps, RichContent, type RichContentProps, type UseAuthReturn, type UseAvailableSlotsReturn, type UseBlogCategoriesReturn, type UseBlogOptions, type UseBlogPostReturn, type UseBlogReturn, type UseBlogSearchReturn, type UseBlogTagsReturn, type UseBoardPostReturn, type UseBoardPostsReturn, type UseBoardReturn, type UseBoardsReturn, type UseBundleItemsReturn, type UseCanReviewReturn, type UseCartReturn, type UseCategoriesReturn, type UseCommentsOptions, type UseCommentsReturn, type UseCouponsReturn, type UseCreateBoardPostReturn, type UseCreateOrderReturn, type UseCreateReservationReturn, type UseCreateReviewReturn, type UseCreateSubscriptionReturn, type UseCurrencyReturn, type UseDownloadsReturn, type UseEntitiesReturn, type UseEntityRecordReturn, type UseEntityRecordsReturn, type UseEntityReturn, type UseFeaturedBlogReturn, type UseFeaturedProductsReturn, type UseFormReturn, type UseMediaOptions, type UseMediaReturn, type UseMyReservationsReturn, type UseMyReviewsReturn, type UseOrderDownloadsReturn, type UseOrderReturn, type UseOrdersReturn, type UsePaymentStatusReturn, type UseProductReturn, type UseProductReviewsReturn, type UseProductsByTypeReturn, type UseProductsOptions, type UseProductsReturn, type UseReservationServicesReturn, type UseReservationSettingsReturn, type UseReservationStaffsReturn, type UseSiteReturn, type UseSocialAuthReturn, type UseStripePaymentReturn, type UseSubscriptionReturn, type UseSubscriptionsReturn, type UseTossPaymentReturn, type UseValidateCouponReturn, type UseWishlistReturn, useAuth, useAvailableSlots, useBlog, useBlogCategories, useBlogPost, useBlogSearch, useBlogTags, useBoard, useBoardPost, useBoardPosts, useBoards, useBundleItems, useBundleProducts, useCanReview, useCart, useCategories, useClient, useComments, useCoupons, useCreateBoardPost, useCreateOrder, useCreateReservation, useCreateReview, useCreateSubscription, useCurrency, useDiffsome, useDigitalProducts, useDownloads, useEntities, useEntity, useEntityRecord, useEntityRecords, useFeaturedBlog, useFeaturedProducts, useForm, useMedia, useMyReservations, useMyReviews, useOrder, useOrderDownloads, useOrders, usePaymentStatus, useProduct, useProductReviews, useProducts, useProductsByType, useReservationServices, useReservationSettings, useReservationStaffs, useSite, useSocialAuth, useStripePayment, useSubscription, useSubscriptionProducts, useSubscriptions, useTossPayment, useTypedEntity, useValidateCoupon, useWishlist };
|