azirid-react 0.10.4 → 0.11.0
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/README.md +41 -16
- package/dist/index.cjs +472 -110
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +33 -4
- package/dist/index.d.ts +33 -4
- package/dist/index.js +472 -111
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -603,8 +603,17 @@ interface BillingInvoice {
|
|
|
603
603
|
invoiceUrl?: string;
|
|
604
604
|
createdAt: string;
|
|
605
605
|
}
|
|
606
|
+
interface UploadTransferProofRequest {
|
|
607
|
+
contentType: string;
|
|
608
|
+
fileSize: number;
|
|
609
|
+
}
|
|
610
|
+
interface UploadTransferProofResponse {
|
|
611
|
+
uploadUrl: string;
|
|
612
|
+
publicUrl: string;
|
|
613
|
+
}
|
|
606
614
|
interface SubmitTransferProofData {
|
|
607
|
-
planId
|
|
615
|
+
planId?: string;
|
|
616
|
+
intentId?: string;
|
|
608
617
|
fileUrl: string;
|
|
609
618
|
fileName?: string;
|
|
610
619
|
fileType?: string;
|
|
@@ -724,8 +733,9 @@ interface PayButtonProps {
|
|
|
724
733
|
onSuccess?: (data: CheckoutResponse) => void;
|
|
725
734
|
onError?: (error: Error) => void;
|
|
726
735
|
onProviderSelect?: (provider: PaymentProviderType) => void;
|
|
736
|
+
onProofSubmitted?: (proof: TransferProof) => void;
|
|
727
737
|
}
|
|
728
|
-
declare function PayButton({ planId, intentId, successUrl, cancelUrl, className, style, children, disabled, onSuccess, onError, onProviderSelect, }: PayButtonProps): react_jsx_runtime.JSX.Element;
|
|
738
|
+
declare function PayButton({ planId, intentId, successUrl, cancelUrl, className, style, children, disabled, onSuccess, onError, onProviderSelect, onProofSubmitted, }: PayButtonProps): react_jsx_runtime.JSX.Element;
|
|
729
739
|
|
|
730
740
|
interface PayphoneCallbackProps {
|
|
731
741
|
onSuccess?: (data: {
|
|
@@ -803,6 +813,7 @@ declare const SUFFIXES: {
|
|
|
803
813
|
readonly checkout: "billing/checkout";
|
|
804
814
|
readonly billingPortal: "billing/portal";
|
|
805
815
|
readonly invoices: "billing/invoices";
|
|
816
|
+
readonly uploadTransferProof: "billing/upload-proof";
|
|
806
817
|
readonly submitTransferProof: "billing/transfer-proof";
|
|
807
818
|
readonly transferProofs: "billing/transfer-proofs";
|
|
808
819
|
readonly payphoneConfirm: "billing/payphone/confirm";
|
|
@@ -1574,6 +1585,19 @@ declare function useSubmitTransferProof(options?: UseTransferProofOptions): {
|
|
|
1574
1585
|
};
|
|
1575
1586
|
declare function useTransferProofs(): _tanstack_react_query.UseQueryResult<TransferProof[], Error>;
|
|
1576
1587
|
|
|
1588
|
+
interface UseUploadTransferProofOptions {
|
|
1589
|
+
onSuccess?: (result: UploadTransferProofResponse) => void;
|
|
1590
|
+
onError?: (error: Error) => void;
|
|
1591
|
+
}
|
|
1592
|
+
interface UseUploadTransferProofReturn {
|
|
1593
|
+
upload: (file: File) => Promise<UploadTransferProofResponse>;
|
|
1594
|
+
isUploading: boolean;
|
|
1595
|
+
publicUrl: string | null;
|
|
1596
|
+
error: Error | null;
|
|
1597
|
+
reset: () => void;
|
|
1598
|
+
}
|
|
1599
|
+
declare function useUploadTransferProof(options?: UseUploadTransferProofOptions): UseUploadTransferProofReturn;
|
|
1600
|
+
|
|
1577
1601
|
declare function usePaymentProviders(): _tanstack_react_query.UseQueryResult<AvailableProvider[], Error>;
|
|
1578
1602
|
|
|
1579
1603
|
interface PayphoneConfirmParams {
|
|
@@ -1625,7 +1649,7 @@ interface UsePayButtonReturn {
|
|
|
1625
1649
|
}
|
|
1626
1650
|
declare function usePayButton({ intentId, planId, onSuccess, onError, }: UsePayButtonOptions): UsePayButtonReturn;
|
|
1627
1651
|
|
|
1628
|
-
type TransferPaymentStatus = 'idle' | 'loading' | 'ready' | 'submitting' | 'submitted' | 'error';
|
|
1652
|
+
type TransferPaymentStatus = 'idle' | 'loading' | 'ready' | 'uploading' | 'submitting' | 'submitted' | 'error';
|
|
1629
1653
|
interface SubmitProofData {
|
|
1630
1654
|
fileUrl: string;
|
|
1631
1655
|
fileName?: string;
|
|
@@ -1642,10 +1666,14 @@ interface UseTransferPaymentOptions {
|
|
|
1642
1666
|
}
|
|
1643
1667
|
interface UseTransferPaymentReturn {
|
|
1644
1668
|
TransferDetails: () => ReactElement | null;
|
|
1669
|
+
/** Upload a file to S3 and submit the proof in one step */
|
|
1670
|
+
uploadAndSubmitProof: (file: File, notes?: string) => Promise<void>;
|
|
1671
|
+
/** Submit proof with an already-uploaded file URL */
|
|
1645
1672
|
submitProof: (data: SubmitProofData) => void;
|
|
1646
1673
|
status: TransferPaymentStatus;
|
|
1647
1674
|
checkoutData: CheckoutResponse | null;
|
|
1648
1675
|
isSubmitting: boolean;
|
|
1676
|
+
isUploading: boolean;
|
|
1649
1677
|
error: Error | null;
|
|
1650
1678
|
}
|
|
1651
1679
|
declare function useTransferPayment({ intentId, onSuccess, onProofSubmitted, onError, }: UseTransferPaymentOptions): UseTransferPaymentReturn;
|
|
@@ -1959,6 +1987,7 @@ interface ProviderModalProps {
|
|
|
1959
1987
|
interface TransferModalProps {
|
|
1960
1988
|
data: CheckoutResponse;
|
|
1961
1989
|
onClose: () => void;
|
|
1990
|
+
onProofSubmitted?: (proof: TransferProof) => void;
|
|
1962
1991
|
labels?: Record<string, string>;
|
|
1963
1992
|
}
|
|
1964
1993
|
|
|
@@ -1978,4 +2007,4 @@ interface SessionSyncOptions {
|
|
|
1978
2007
|
|
|
1979
2008
|
declare const SDK_VERSION: string;
|
|
1980
2009
|
|
|
1981
|
-
export { type AccessClient, type AccessClientConfig, type AccessMessages, type ApiError, type AppBranding, AuthForm, type AuthFormProps, type AuthPaths, type AuthState, type AuthSuccessResponse, type AuthUser, type AuthView, type AvailableProvider, type AziridContextValue, AziridProvider, type AziridProviderProps, BASE_PATHS, type BillingInvoice, type BillingPlan, type BootstrapResponse, type ChangePasswordData, type ChangePasswordInput, CheckoutButton, type CheckoutButtonProps, type CheckoutParams, type CheckoutResponse, type CreateTenantData, type FieldError, ForgotPasswordForm, type ForgotPasswordFormProps, type ForgotPasswordInput, InvoiceList, type InvoiceListProps, type LoginData, LoginForm, type LoginFormProps, type LoginInput, type MagicLinkRequestData, type MagicLinkRequestInput, type MagicLinkVerifyData, type MagicLinkVerifyInput, type MutationHookConfig, PATHS, type PasskeyItem, type PasskeyLoginData, type PasskeyLoginStartData, type PasskeyLoginStartResponse, type PasskeyLoginVerifyData, type PasskeyRegisterStartData, type PasskeyRegisterStartInput, type PasskeyRegisterStartResponse, type PasskeyRegisterVerifyData, type PasswordResetConfirmData, type PasswordResetRequestData, PayButton, type PayButtonProps, type PayButtonStatus, type PaymentIntent, type PaymentProviderType, PayphoneCallback, type PayphoneCallbackProps, type PayphoneCheckoutStatus, type PayphoneConfirmParams, type PayphoneConfirmResult, type PayphoneModalProps, type PayphoneWidgetConfig, PayphoneWidgetRenderer, type PricingCardProps, type PricingFeatureListProps, PricingTable, type PricingTableProps, type ProviderModalProps, ReferralCard, type ReferralCardProps, type ReferralInfo, type ReferralItem, ReferralStats, type ReferralStatsData, type ReferralStatsProps, type RegisterPasskeyData, type ResetPasswordConfirmInput, ResetPasswordForm, type ResetPasswordFormProps, SDK_VERSION, type SessionSyncOptions, type SignupData, SignupForm, type SignupFormProps, type SignupInput, type SimpleMutationOptions, type SocialLoginData, type SocialLoginInput, type SubmitProofData, type SubmitTransferProofData, SubscriptionBadge, type SubscriptionBadgeProps, type SupportedLocale, type TenantMemberInfo, type TenantWithRole, type TransferModalProps, type TransferPaymentStatus, type TransferProof, type UseBootstrapOptions, type UseBootstrapReturn, type UseChangePasswordOptions, type UseChangePasswordReturn, type UseCheckoutOptions, type UseFormReturn, type UseLoginOptions, type UseLoginReturn, type UseLogoutOptions, type UseLogoutReturn, type UseMagicLinkOptions, type UseMagicLinkReturn, type UsePasskeysOptions, type UsePasskeysReturn, type UsePasswordResetOptions, type UsePasswordResetReturn, type UsePayButtonOptions, type UsePayButtonReturn, type UsePayphoneCheckoutOptions, type UsePayphoneCheckoutReturn, type UsePayphoneConfirmOptions, type UseRefreshOptions, type UseRefreshReturn, type UseSessionOptions, type UseSessionReturn, type UseSignupOptions, type UseSignupReturn, type UseSocialLoginOptions, type UseSocialLoginReturn, type UseTransferPaymentOptions, type UseTransferPaymentReturn, type UserSubscription, buildPaths, changePasswordSchema, cn, createAccessClient, createForgotPasswordSchema, createLoginSchema, createMutationHook, createResetPasswordConfirmSchema, createSignupSchema, en, es, forgotPasswordSchema, isAuthError, loginSchema, magicLinkRequestSchema, magicLinkVerifySchema, passkeyRegisterStartSchema, removeStyles, resetPasswordConfirmSchema, resolveMessages, signupSchema, socialLoginSchema, useAccessClient, useAzirid, useBootstrap, useBranding, useChangePassword, useCheckout, useFormState, useInvoices, useLogin, useLogout, useMagicLink, useMessages, usePasskeys, usePasswordReset, usePasswordToggle, usePayButton, usePaymentProviders, usePayphoneCheckout, usePayphoneConfirm, usePlans, useReferral, useReferralStats, useRefresh, useSession, useSignup, useSocialLogin, useSubmitTransferProof, useSubscription, useSwitchTenant, useTenantMembers, useTenants, useTransferPayment, useTransferProofs };
|
|
2010
|
+
export { type AccessClient, type AccessClientConfig, type AccessMessages, type ApiError, type AppBranding, AuthForm, type AuthFormProps, type AuthPaths, type AuthState, type AuthSuccessResponse, type AuthUser, type AuthView, type AvailableProvider, type AziridContextValue, AziridProvider, type AziridProviderProps, BASE_PATHS, type BillingInvoice, type BillingPlan, type BootstrapResponse, type ChangePasswordData, type ChangePasswordInput, CheckoutButton, type CheckoutButtonProps, type CheckoutParams, type CheckoutResponse, type CreateTenantData, type FieldError, ForgotPasswordForm, type ForgotPasswordFormProps, type ForgotPasswordInput, InvoiceList, type InvoiceListProps, type LoginData, LoginForm, type LoginFormProps, type LoginInput, type MagicLinkRequestData, type MagicLinkRequestInput, type MagicLinkVerifyData, type MagicLinkVerifyInput, type MutationHookConfig, PATHS, type PasskeyItem, type PasskeyLoginData, type PasskeyLoginStartData, type PasskeyLoginStartResponse, type PasskeyLoginVerifyData, type PasskeyRegisterStartData, type PasskeyRegisterStartInput, type PasskeyRegisterStartResponse, type PasskeyRegisterVerifyData, type PasswordResetConfirmData, type PasswordResetRequestData, PayButton, type PayButtonProps, type PayButtonStatus, type PaymentIntent, type PaymentProviderType, PayphoneCallback, type PayphoneCallbackProps, type PayphoneCheckoutStatus, type PayphoneConfirmParams, type PayphoneConfirmResult, type PayphoneModalProps, type PayphoneWidgetConfig, PayphoneWidgetRenderer, type PricingCardProps, type PricingFeatureListProps, PricingTable, type PricingTableProps, type ProviderModalProps, ReferralCard, type ReferralCardProps, type ReferralInfo, type ReferralItem, ReferralStats, type ReferralStatsData, type ReferralStatsProps, type RegisterPasskeyData, type ResetPasswordConfirmInput, ResetPasswordForm, type ResetPasswordFormProps, SDK_VERSION, type SessionSyncOptions, type SignupData, SignupForm, type SignupFormProps, type SignupInput, type SimpleMutationOptions, type SocialLoginData, type SocialLoginInput, type SubmitProofData, type SubmitTransferProofData, SubscriptionBadge, type SubscriptionBadgeProps, type SupportedLocale, type TenantMemberInfo, type TenantWithRole, type TransferModalProps, type TransferPaymentStatus, type TransferProof, type UploadTransferProofRequest, type UploadTransferProofResponse, type UseBootstrapOptions, type UseBootstrapReturn, type UseChangePasswordOptions, type UseChangePasswordReturn, type UseCheckoutOptions, type UseFormReturn, type UseLoginOptions, type UseLoginReturn, type UseLogoutOptions, type UseLogoutReturn, type UseMagicLinkOptions, type UseMagicLinkReturn, type UsePasskeysOptions, type UsePasskeysReturn, type UsePasswordResetOptions, type UsePasswordResetReturn, type UsePayButtonOptions, type UsePayButtonReturn, type UsePayphoneCheckoutOptions, type UsePayphoneCheckoutReturn, type UsePayphoneConfirmOptions, type UseRefreshOptions, type UseRefreshReturn, type UseSessionOptions, type UseSessionReturn, type UseSignupOptions, type UseSignupReturn, type UseSocialLoginOptions, type UseSocialLoginReturn, type UseTransferPaymentOptions, type UseTransferPaymentReturn, type UserSubscription, buildPaths, changePasswordSchema, cn, createAccessClient, createForgotPasswordSchema, createLoginSchema, createMutationHook, createResetPasswordConfirmSchema, createSignupSchema, en, es, forgotPasswordSchema, isAuthError, loginSchema, magicLinkRequestSchema, magicLinkVerifySchema, passkeyRegisterStartSchema, removeStyles, resetPasswordConfirmSchema, resolveMessages, signupSchema, socialLoginSchema, useAccessClient, useAzirid, useBootstrap, useBranding, useChangePassword, useCheckout, useFormState, useInvoices, useLogin, useLogout, useMagicLink, useMessages, usePasskeys, usePasswordReset, usePasswordToggle, usePayButton, usePaymentProviders, usePayphoneCheckout, usePayphoneConfirm, usePlans, useReferral, useReferralStats, useRefresh, useSession, useSignup, useSocialLogin, useSubmitTransferProof, useSubscription, useSwitchTenant, useTenantMembers, useTenants, useTransferPayment, useTransferProofs, useUploadTransferProof };
|
package/dist/index.d.ts
CHANGED
|
@@ -603,8 +603,17 @@ interface BillingInvoice {
|
|
|
603
603
|
invoiceUrl?: string;
|
|
604
604
|
createdAt: string;
|
|
605
605
|
}
|
|
606
|
+
interface UploadTransferProofRequest {
|
|
607
|
+
contentType: string;
|
|
608
|
+
fileSize: number;
|
|
609
|
+
}
|
|
610
|
+
interface UploadTransferProofResponse {
|
|
611
|
+
uploadUrl: string;
|
|
612
|
+
publicUrl: string;
|
|
613
|
+
}
|
|
606
614
|
interface SubmitTransferProofData {
|
|
607
|
-
planId
|
|
615
|
+
planId?: string;
|
|
616
|
+
intentId?: string;
|
|
608
617
|
fileUrl: string;
|
|
609
618
|
fileName?: string;
|
|
610
619
|
fileType?: string;
|
|
@@ -724,8 +733,9 @@ interface PayButtonProps {
|
|
|
724
733
|
onSuccess?: (data: CheckoutResponse) => void;
|
|
725
734
|
onError?: (error: Error) => void;
|
|
726
735
|
onProviderSelect?: (provider: PaymentProviderType) => void;
|
|
736
|
+
onProofSubmitted?: (proof: TransferProof) => void;
|
|
727
737
|
}
|
|
728
|
-
declare function PayButton({ planId, intentId, successUrl, cancelUrl, className, style, children, disabled, onSuccess, onError, onProviderSelect, }: PayButtonProps): react_jsx_runtime.JSX.Element;
|
|
738
|
+
declare function PayButton({ planId, intentId, successUrl, cancelUrl, className, style, children, disabled, onSuccess, onError, onProviderSelect, onProofSubmitted, }: PayButtonProps): react_jsx_runtime.JSX.Element;
|
|
729
739
|
|
|
730
740
|
interface PayphoneCallbackProps {
|
|
731
741
|
onSuccess?: (data: {
|
|
@@ -803,6 +813,7 @@ declare const SUFFIXES: {
|
|
|
803
813
|
readonly checkout: "billing/checkout";
|
|
804
814
|
readonly billingPortal: "billing/portal";
|
|
805
815
|
readonly invoices: "billing/invoices";
|
|
816
|
+
readonly uploadTransferProof: "billing/upload-proof";
|
|
806
817
|
readonly submitTransferProof: "billing/transfer-proof";
|
|
807
818
|
readonly transferProofs: "billing/transfer-proofs";
|
|
808
819
|
readonly payphoneConfirm: "billing/payphone/confirm";
|
|
@@ -1574,6 +1585,19 @@ declare function useSubmitTransferProof(options?: UseTransferProofOptions): {
|
|
|
1574
1585
|
};
|
|
1575
1586
|
declare function useTransferProofs(): _tanstack_react_query.UseQueryResult<TransferProof[], Error>;
|
|
1576
1587
|
|
|
1588
|
+
interface UseUploadTransferProofOptions {
|
|
1589
|
+
onSuccess?: (result: UploadTransferProofResponse) => void;
|
|
1590
|
+
onError?: (error: Error) => void;
|
|
1591
|
+
}
|
|
1592
|
+
interface UseUploadTransferProofReturn {
|
|
1593
|
+
upload: (file: File) => Promise<UploadTransferProofResponse>;
|
|
1594
|
+
isUploading: boolean;
|
|
1595
|
+
publicUrl: string | null;
|
|
1596
|
+
error: Error | null;
|
|
1597
|
+
reset: () => void;
|
|
1598
|
+
}
|
|
1599
|
+
declare function useUploadTransferProof(options?: UseUploadTransferProofOptions): UseUploadTransferProofReturn;
|
|
1600
|
+
|
|
1577
1601
|
declare function usePaymentProviders(): _tanstack_react_query.UseQueryResult<AvailableProvider[], Error>;
|
|
1578
1602
|
|
|
1579
1603
|
interface PayphoneConfirmParams {
|
|
@@ -1625,7 +1649,7 @@ interface UsePayButtonReturn {
|
|
|
1625
1649
|
}
|
|
1626
1650
|
declare function usePayButton({ intentId, planId, onSuccess, onError, }: UsePayButtonOptions): UsePayButtonReturn;
|
|
1627
1651
|
|
|
1628
|
-
type TransferPaymentStatus = 'idle' | 'loading' | 'ready' | 'submitting' | 'submitted' | 'error';
|
|
1652
|
+
type TransferPaymentStatus = 'idle' | 'loading' | 'ready' | 'uploading' | 'submitting' | 'submitted' | 'error';
|
|
1629
1653
|
interface SubmitProofData {
|
|
1630
1654
|
fileUrl: string;
|
|
1631
1655
|
fileName?: string;
|
|
@@ -1642,10 +1666,14 @@ interface UseTransferPaymentOptions {
|
|
|
1642
1666
|
}
|
|
1643
1667
|
interface UseTransferPaymentReturn {
|
|
1644
1668
|
TransferDetails: () => ReactElement | null;
|
|
1669
|
+
/** Upload a file to S3 and submit the proof in one step */
|
|
1670
|
+
uploadAndSubmitProof: (file: File, notes?: string) => Promise<void>;
|
|
1671
|
+
/** Submit proof with an already-uploaded file URL */
|
|
1645
1672
|
submitProof: (data: SubmitProofData) => void;
|
|
1646
1673
|
status: TransferPaymentStatus;
|
|
1647
1674
|
checkoutData: CheckoutResponse | null;
|
|
1648
1675
|
isSubmitting: boolean;
|
|
1676
|
+
isUploading: boolean;
|
|
1649
1677
|
error: Error | null;
|
|
1650
1678
|
}
|
|
1651
1679
|
declare function useTransferPayment({ intentId, onSuccess, onProofSubmitted, onError, }: UseTransferPaymentOptions): UseTransferPaymentReturn;
|
|
@@ -1959,6 +1987,7 @@ interface ProviderModalProps {
|
|
|
1959
1987
|
interface TransferModalProps {
|
|
1960
1988
|
data: CheckoutResponse;
|
|
1961
1989
|
onClose: () => void;
|
|
1990
|
+
onProofSubmitted?: (proof: TransferProof) => void;
|
|
1962
1991
|
labels?: Record<string, string>;
|
|
1963
1992
|
}
|
|
1964
1993
|
|
|
@@ -1978,4 +2007,4 @@ interface SessionSyncOptions {
|
|
|
1978
2007
|
|
|
1979
2008
|
declare const SDK_VERSION: string;
|
|
1980
2009
|
|
|
1981
|
-
export { type AccessClient, type AccessClientConfig, type AccessMessages, type ApiError, type AppBranding, AuthForm, type AuthFormProps, type AuthPaths, type AuthState, type AuthSuccessResponse, type AuthUser, type AuthView, type AvailableProvider, type AziridContextValue, AziridProvider, type AziridProviderProps, BASE_PATHS, type BillingInvoice, type BillingPlan, type BootstrapResponse, type ChangePasswordData, type ChangePasswordInput, CheckoutButton, type CheckoutButtonProps, type CheckoutParams, type CheckoutResponse, type CreateTenantData, type FieldError, ForgotPasswordForm, type ForgotPasswordFormProps, type ForgotPasswordInput, InvoiceList, type InvoiceListProps, type LoginData, LoginForm, type LoginFormProps, type LoginInput, type MagicLinkRequestData, type MagicLinkRequestInput, type MagicLinkVerifyData, type MagicLinkVerifyInput, type MutationHookConfig, PATHS, type PasskeyItem, type PasskeyLoginData, type PasskeyLoginStartData, type PasskeyLoginStartResponse, type PasskeyLoginVerifyData, type PasskeyRegisterStartData, type PasskeyRegisterStartInput, type PasskeyRegisterStartResponse, type PasskeyRegisterVerifyData, type PasswordResetConfirmData, type PasswordResetRequestData, PayButton, type PayButtonProps, type PayButtonStatus, type PaymentIntent, type PaymentProviderType, PayphoneCallback, type PayphoneCallbackProps, type PayphoneCheckoutStatus, type PayphoneConfirmParams, type PayphoneConfirmResult, type PayphoneModalProps, type PayphoneWidgetConfig, PayphoneWidgetRenderer, type PricingCardProps, type PricingFeatureListProps, PricingTable, type PricingTableProps, type ProviderModalProps, ReferralCard, type ReferralCardProps, type ReferralInfo, type ReferralItem, ReferralStats, type ReferralStatsData, type ReferralStatsProps, type RegisterPasskeyData, type ResetPasswordConfirmInput, ResetPasswordForm, type ResetPasswordFormProps, SDK_VERSION, type SessionSyncOptions, type SignupData, SignupForm, type SignupFormProps, type SignupInput, type SimpleMutationOptions, type SocialLoginData, type SocialLoginInput, type SubmitProofData, type SubmitTransferProofData, SubscriptionBadge, type SubscriptionBadgeProps, type SupportedLocale, type TenantMemberInfo, type TenantWithRole, type TransferModalProps, type TransferPaymentStatus, type TransferProof, type UseBootstrapOptions, type UseBootstrapReturn, type UseChangePasswordOptions, type UseChangePasswordReturn, type UseCheckoutOptions, type UseFormReturn, type UseLoginOptions, type UseLoginReturn, type UseLogoutOptions, type UseLogoutReturn, type UseMagicLinkOptions, type UseMagicLinkReturn, type UsePasskeysOptions, type UsePasskeysReturn, type UsePasswordResetOptions, type UsePasswordResetReturn, type UsePayButtonOptions, type UsePayButtonReturn, type UsePayphoneCheckoutOptions, type UsePayphoneCheckoutReturn, type UsePayphoneConfirmOptions, type UseRefreshOptions, type UseRefreshReturn, type UseSessionOptions, type UseSessionReturn, type UseSignupOptions, type UseSignupReturn, type UseSocialLoginOptions, type UseSocialLoginReturn, type UseTransferPaymentOptions, type UseTransferPaymentReturn, type UserSubscription, buildPaths, changePasswordSchema, cn, createAccessClient, createForgotPasswordSchema, createLoginSchema, createMutationHook, createResetPasswordConfirmSchema, createSignupSchema, en, es, forgotPasswordSchema, isAuthError, loginSchema, magicLinkRequestSchema, magicLinkVerifySchema, passkeyRegisterStartSchema, removeStyles, resetPasswordConfirmSchema, resolveMessages, signupSchema, socialLoginSchema, useAccessClient, useAzirid, useBootstrap, useBranding, useChangePassword, useCheckout, useFormState, useInvoices, useLogin, useLogout, useMagicLink, useMessages, usePasskeys, usePasswordReset, usePasswordToggle, usePayButton, usePaymentProviders, usePayphoneCheckout, usePayphoneConfirm, usePlans, useReferral, useReferralStats, useRefresh, useSession, useSignup, useSocialLogin, useSubmitTransferProof, useSubscription, useSwitchTenant, useTenantMembers, useTenants, useTransferPayment, useTransferProofs };
|
|
2010
|
+
export { type AccessClient, type AccessClientConfig, type AccessMessages, type ApiError, type AppBranding, AuthForm, type AuthFormProps, type AuthPaths, type AuthState, type AuthSuccessResponse, type AuthUser, type AuthView, type AvailableProvider, type AziridContextValue, AziridProvider, type AziridProviderProps, BASE_PATHS, type BillingInvoice, type BillingPlan, type BootstrapResponse, type ChangePasswordData, type ChangePasswordInput, CheckoutButton, type CheckoutButtonProps, type CheckoutParams, type CheckoutResponse, type CreateTenantData, type FieldError, ForgotPasswordForm, type ForgotPasswordFormProps, type ForgotPasswordInput, InvoiceList, type InvoiceListProps, type LoginData, LoginForm, type LoginFormProps, type LoginInput, type MagicLinkRequestData, type MagicLinkRequestInput, type MagicLinkVerifyData, type MagicLinkVerifyInput, type MutationHookConfig, PATHS, type PasskeyItem, type PasskeyLoginData, type PasskeyLoginStartData, type PasskeyLoginStartResponse, type PasskeyLoginVerifyData, type PasskeyRegisterStartData, type PasskeyRegisterStartInput, type PasskeyRegisterStartResponse, type PasskeyRegisterVerifyData, type PasswordResetConfirmData, type PasswordResetRequestData, PayButton, type PayButtonProps, type PayButtonStatus, type PaymentIntent, type PaymentProviderType, PayphoneCallback, type PayphoneCallbackProps, type PayphoneCheckoutStatus, type PayphoneConfirmParams, type PayphoneConfirmResult, type PayphoneModalProps, type PayphoneWidgetConfig, PayphoneWidgetRenderer, type PricingCardProps, type PricingFeatureListProps, PricingTable, type PricingTableProps, type ProviderModalProps, ReferralCard, type ReferralCardProps, type ReferralInfo, type ReferralItem, ReferralStats, type ReferralStatsData, type ReferralStatsProps, type RegisterPasskeyData, type ResetPasswordConfirmInput, ResetPasswordForm, type ResetPasswordFormProps, SDK_VERSION, type SessionSyncOptions, type SignupData, SignupForm, type SignupFormProps, type SignupInput, type SimpleMutationOptions, type SocialLoginData, type SocialLoginInput, type SubmitProofData, type SubmitTransferProofData, SubscriptionBadge, type SubscriptionBadgeProps, type SupportedLocale, type TenantMemberInfo, type TenantWithRole, type TransferModalProps, type TransferPaymentStatus, type TransferProof, type UploadTransferProofRequest, type UploadTransferProofResponse, type UseBootstrapOptions, type UseBootstrapReturn, type UseChangePasswordOptions, type UseChangePasswordReturn, type UseCheckoutOptions, type UseFormReturn, type UseLoginOptions, type UseLoginReturn, type UseLogoutOptions, type UseLogoutReturn, type UseMagicLinkOptions, type UseMagicLinkReturn, type UsePasskeysOptions, type UsePasskeysReturn, type UsePasswordResetOptions, type UsePasswordResetReturn, type UsePayButtonOptions, type UsePayButtonReturn, type UsePayphoneCheckoutOptions, type UsePayphoneCheckoutReturn, type UsePayphoneConfirmOptions, type UseRefreshOptions, type UseRefreshReturn, type UseSessionOptions, type UseSessionReturn, type UseSignupOptions, type UseSignupReturn, type UseSocialLoginOptions, type UseSocialLoginReturn, type UseTransferPaymentOptions, type UseTransferPaymentReturn, type UserSubscription, buildPaths, changePasswordSchema, cn, createAccessClient, createForgotPasswordSchema, createLoginSchema, createMutationHook, createResetPasswordConfirmSchema, createSignupSchema, en, es, forgotPasswordSchema, isAuthError, loginSchema, magicLinkRequestSchema, magicLinkVerifySchema, passkeyRegisterStartSchema, removeStyles, resetPasswordConfirmSchema, resolveMessages, signupSchema, socialLoginSchema, useAccessClient, useAzirid, useBootstrap, useBranding, useChangePassword, useCheckout, useFormState, useInvoices, useLogin, useLogout, useMagicLink, useMessages, usePasskeys, usePasswordReset, usePasswordToggle, usePayButton, usePaymentProviders, usePayphoneCheckout, usePayphoneConfirm, usePlans, useReferral, useReferralStats, useRefresh, useSession, useSignup, useSocialLogin, useSubmitTransferProof, useSubscription, useSwitchTenant, useTenantMembers, useTenants, useTransferPayment, useTransferProofs, useUploadTransferProof };
|