azirid-react 0.9.5 → 0.9.8
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 +111 -2
- package/dist/index.cjs +457 -84
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +48 -9
- package/dist/index.d.ts +48 -9
- package/dist/index.js +456 -85
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -736,7 +736,7 @@ declare global {
|
|
|
736
736
|
}
|
|
737
737
|
/**
|
|
738
738
|
* Internal widget renderer — loads Payphone SDK and mounts PPaymentButtonBox.
|
|
739
|
-
* Used by usePayphoneCheckout
|
|
739
|
+
* Used by usePayphoneCheckout, usePayButton hooks and PayphoneModal component.
|
|
740
740
|
*/
|
|
741
741
|
declare function PayphoneWidgetRenderer({ config, responseUrl, containerId, onReady, onError, }: {
|
|
742
742
|
config: PayphoneWidgetConfig;
|
|
@@ -1592,6 +1592,52 @@ interface UsePayphoneCheckoutReturn {
|
|
|
1592
1592
|
}
|
|
1593
1593
|
declare function usePayphoneCheckout({ intentId, onSuccess, onError, }: UsePayphoneCheckoutOptions): UsePayphoneCheckoutReturn;
|
|
1594
1594
|
|
|
1595
|
+
type PayButtonStatus = 'idle' | 'loading_providers' | 'ready' | 'processing' | 'redirecting' | 'success' | 'error';
|
|
1596
|
+
interface UsePayButtonOptions {
|
|
1597
|
+
intentId?: string;
|
|
1598
|
+
planId?: string;
|
|
1599
|
+
onSuccess?: (data: CheckoutResponse) => void;
|
|
1600
|
+
onError?: (error: Error) => void;
|
|
1601
|
+
}
|
|
1602
|
+
interface UsePayButtonReturn {
|
|
1603
|
+
providers: AvailableProvider[];
|
|
1604
|
+
checkout: (provider: PaymentProviderType) => void;
|
|
1605
|
+
ProviderSelector: () => ReactElement | null;
|
|
1606
|
+
TransferDetails: () => ReactElement | null;
|
|
1607
|
+
PayphoneWidget: () => ReactElement | null;
|
|
1608
|
+
status: PayButtonStatus;
|
|
1609
|
+
selectedProvider: PaymentProviderType | null;
|
|
1610
|
+
checkoutData: CheckoutResponse | null;
|
|
1611
|
+
isPending: boolean;
|
|
1612
|
+
error: Error | null;
|
|
1613
|
+
}
|
|
1614
|
+
declare function usePayButton({ intentId, planId, onSuccess, onError, }: UsePayButtonOptions): UsePayButtonReturn;
|
|
1615
|
+
|
|
1616
|
+
type TransferPaymentStatus = 'idle' | 'loading' | 'ready' | 'submitting' | 'submitted' | 'error';
|
|
1617
|
+
interface SubmitProofData {
|
|
1618
|
+
fileUrl: string;
|
|
1619
|
+
fileName?: string;
|
|
1620
|
+
fileType?: string;
|
|
1621
|
+
amount: number;
|
|
1622
|
+
currency?: string;
|
|
1623
|
+
notes?: string;
|
|
1624
|
+
}
|
|
1625
|
+
interface UseTransferPaymentOptions {
|
|
1626
|
+
intentId: string;
|
|
1627
|
+
onSuccess?: (data: CheckoutResponse) => void;
|
|
1628
|
+
onProofSubmitted?: (proof: TransferProof) => void;
|
|
1629
|
+
onError?: (error: Error) => void;
|
|
1630
|
+
}
|
|
1631
|
+
interface UseTransferPaymentReturn {
|
|
1632
|
+
TransferDetails: () => ReactElement | null;
|
|
1633
|
+
submitProof: (data: SubmitProofData) => void;
|
|
1634
|
+
status: TransferPaymentStatus;
|
|
1635
|
+
checkoutData: CheckoutResponse | null;
|
|
1636
|
+
isSubmitting: boolean;
|
|
1637
|
+
error: Error | null;
|
|
1638
|
+
}
|
|
1639
|
+
declare function useTransferPayment({ intentId, onSuccess, onProofSubmitted, onError, }: UseTransferPaymentOptions): UseTransferPaymentReturn;
|
|
1640
|
+
|
|
1595
1641
|
declare function useTenants(): _tanstack_react_query.UseQueryResult<TenantWithRole[], Error>;
|
|
1596
1642
|
declare function useTenantMembers(tenantId: string): _tanstack_react_query.UseQueryResult<TenantMemberInfo[], Error>;
|
|
1597
1643
|
declare function useSwitchTenant(): {
|
|
@@ -1904,13 +1950,6 @@ interface TransferModalProps {
|
|
|
1904
1950
|
labels?: Record<string, string>;
|
|
1905
1951
|
}
|
|
1906
1952
|
|
|
1907
|
-
declare global {
|
|
1908
|
-
interface Window {
|
|
1909
|
-
PPaymentButtonBox: new (config: Record<string, unknown>) => {
|
|
1910
|
-
render: (containerId: string) => void;
|
|
1911
|
-
};
|
|
1912
|
-
}
|
|
1913
|
-
}
|
|
1914
1953
|
interface PayphoneModalProps {
|
|
1915
1954
|
config: PayphoneWidgetConfig;
|
|
1916
1955
|
successUrl: string;
|
|
@@ -1928,4 +1967,4 @@ interface SessionSyncOptions {
|
|
|
1928
1967
|
|
|
1929
1968
|
declare const SDK_VERSION: string;
|
|
1930
1969
|
|
|
1931
|
-
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 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 SubmitTransferProofData, SubscriptionBadge, type SubscriptionBadgeProps, type SupportedLocale, type TenantMemberInfo, type TenantWithRole, type TransferModalProps, 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 UsePayphoneCheckoutOptions, type UsePayphoneCheckoutReturn, type UsePayphoneConfirmOptions, type UseRefreshOptions, type UseRefreshReturn, type UseSessionOptions, type UseSessionReturn, type UseSignupOptions, type UseSignupReturn, type UseSocialLoginOptions, type UseSocialLoginReturn, 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, usePaymentProviders, usePayphoneCheckout, usePayphoneConfirm, usePlans, useReferral, useReferralStats, useRefresh, useSession, useSignup, useSocialLogin, useSubmitTransferProof, useSubscription, useSwitchTenant, useTenantMembers, useTenants, useTransferProofs };
|
|
1970
|
+
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -736,7 +736,7 @@ declare global {
|
|
|
736
736
|
}
|
|
737
737
|
/**
|
|
738
738
|
* Internal widget renderer — loads Payphone SDK and mounts PPaymentButtonBox.
|
|
739
|
-
* Used by usePayphoneCheckout
|
|
739
|
+
* Used by usePayphoneCheckout, usePayButton hooks and PayphoneModal component.
|
|
740
740
|
*/
|
|
741
741
|
declare function PayphoneWidgetRenderer({ config, responseUrl, containerId, onReady, onError, }: {
|
|
742
742
|
config: PayphoneWidgetConfig;
|
|
@@ -1592,6 +1592,52 @@ interface UsePayphoneCheckoutReturn {
|
|
|
1592
1592
|
}
|
|
1593
1593
|
declare function usePayphoneCheckout({ intentId, onSuccess, onError, }: UsePayphoneCheckoutOptions): UsePayphoneCheckoutReturn;
|
|
1594
1594
|
|
|
1595
|
+
type PayButtonStatus = 'idle' | 'loading_providers' | 'ready' | 'processing' | 'redirecting' | 'success' | 'error';
|
|
1596
|
+
interface UsePayButtonOptions {
|
|
1597
|
+
intentId?: string;
|
|
1598
|
+
planId?: string;
|
|
1599
|
+
onSuccess?: (data: CheckoutResponse) => void;
|
|
1600
|
+
onError?: (error: Error) => void;
|
|
1601
|
+
}
|
|
1602
|
+
interface UsePayButtonReturn {
|
|
1603
|
+
providers: AvailableProvider[];
|
|
1604
|
+
checkout: (provider: PaymentProviderType) => void;
|
|
1605
|
+
ProviderSelector: () => ReactElement | null;
|
|
1606
|
+
TransferDetails: () => ReactElement | null;
|
|
1607
|
+
PayphoneWidget: () => ReactElement | null;
|
|
1608
|
+
status: PayButtonStatus;
|
|
1609
|
+
selectedProvider: PaymentProviderType | null;
|
|
1610
|
+
checkoutData: CheckoutResponse | null;
|
|
1611
|
+
isPending: boolean;
|
|
1612
|
+
error: Error | null;
|
|
1613
|
+
}
|
|
1614
|
+
declare function usePayButton({ intentId, planId, onSuccess, onError, }: UsePayButtonOptions): UsePayButtonReturn;
|
|
1615
|
+
|
|
1616
|
+
type TransferPaymentStatus = 'idle' | 'loading' | 'ready' | 'submitting' | 'submitted' | 'error';
|
|
1617
|
+
interface SubmitProofData {
|
|
1618
|
+
fileUrl: string;
|
|
1619
|
+
fileName?: string;
|
|
1620
|
+
fileType?: string;
|
|
1621
|
+
amount: number;
|
|
1622
|
+
currency?: string;
|
|
1623
|
+
notes?: string;
|
|
1624
|
+
}
|
|
1625
|
+
interface UseTransferPaymentOptions {
|
|
1626
|
+
intentId: string;
|
|
1627
|
+
onSuccess?: (data: CheckoutResponse) => void;
|
|
1628
|
+
onProofSubmitted?: (proof: TransferProof) => void;
|
|
1629
|
+
onError?: (error: Error) => void;
|
|
1630
|
+
}
|
|
1631
|
+
interface UseTransferPaymentReturn {
|
|
1632
|
+
TransferDetails: () => ReactElement | null;
|
|
1633
|
+
submitProof: (data: SubmitProofData) => void;
|
|
1634
|
+
status: TransferPaymentStatus;
|
|
1635
|
+
checkoutData: CheckoutResponse | null;
|
|
1636
|
+
isSubmitting: boolean;
|
|
1637
|
+
error: Error | null;
|
|
1638
|
+
}
|
|
1639
|
+
declare function useTransferPayment({ intentId, onSuccess, onProofSubmitted, onError, }: UseTransferPaymentOptions): UseTransferPaymentReturn;
|
|
1640
|
+
|
|
1595
1641
|
declare function useTenants(): _tanstack_react_query.UseQueryResult<TenantWithRole[], Error>;
|
|
1596
1642
|
declare function useTenantMembers(tenantId: string): _tanstack_react_query.UseQueryResult<TenantMemberInfo[], Error>;
|
|
1597
1643
|
declare function useSwitchTenant(): {
|
|
@@ -1904,13 +1950,6 @@ interface TransferModalProps {
|
|
|
1904
1950
|
labels?: Record<string, string>;
|
|
1905
1951
|
}
|
|
1906
1952
|
|
|
1907
|
-
declare global {
|
|
1908
|
-
interface Window {
|
|
1909
|
-
PPaymentButtonBox: new (config: Record<string, unknown>) => {
|
|
1910
|
-
render: (containerId: string) => void;
|
|
1911
|
-
};
|
|
1912
|
-
}
|
|
1913
|
-
}
|
|
1914
1953
|
interface PayphoneModalProps {
|
|
1915
1954
|
config: PayphoneWidgetConfig;
|
|
1916
1955
|
successUrl: string;
|
|
@@ -1928,4 +1967,4 @@ interface SessionSyncOptions {
|
|
|
1928
1967
|
|
|
1929
1968
|
declare const SDK_VERSION: string;
|
|
1930
1969
|
|
|
1931
|
-
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 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 SubmitTransferProofData, SubscriptionBadge, type SubscriptionBadgeProps, type SupportedLocale, type TenantMemberInfo, type TenantWithRole, type TransferModalProps, 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 UsePayphoneCheckoutOptions, type UsePayphoneCheckoutReturn, type UsePayphoneConfirmOptions, type UseRefreshOptions, type UseRefreshReturn, type UseSessionOptions, type UseSessionReturn, type UseSignupOptions, type UseSignupReturn, type UseSocialLoginOptions, type UseSocialLoginReturn, 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, usePaymentProviders, usePayphoneCheckout, usePayphoneConfirm, usePlans, useReferral, useReferralStats, useRefresh, useSession, useSignup, useSocialLogin, useSubmitTransferProof, useSubscription, useSwitchTenant, useTenantMembers, useTenants, useTransferProofs };
|
|
1970
|
+
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 };
|