azirid-react 0.9.4 → 0.9.7
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 +158 -0
- package/dist/index.cjs +550 -53
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +81 -9
- package/dist/index.d.ts +81 -9
- package/dist/index.js +547 -54
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { CSSProperties, ReactNode, FormEvent } from 'react';
|
|
2
|
+
import { CSSProperties, ReactNode, FormEvent, ReactElement } from 'react';
|
|
3
3
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
4
4
|
import { UseMutationResult, UseQueryResult } from '@tanstack/react-query';
|
|
5
5
|
import { z } from 'zod';
|
|
@@ -727,6 +727,25 @@ interface PayphoneCallbackProps {
|
|
|
727
727
|
}
|
|
728
728
|
declare function PayphoneCallback({ onSuccess, onError, className, style }: PayphoneCallbackProps): react_jsx_runtime.JSX.Element;
|
|
729
729
|
|
|
730
|
+
declare global {
|
|
731
|
+
interface Window {
|
|
732
|
+
PPaymentButtonBox: new (config: Record<string, unknown>) => {
|
|
733
|
+
render: (containerId: string) => void;
|
|
734
|
+
};
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
/**
|
|
738
|
+
* Internal widget renderer — loads Payphone SDK and mounts PPaymentButtonBox.
|
|
739
|
+
* Used by usePayphoneCheckout, usePayButton hooks and PayphoneModal component.
|
|
740
|
+
*/
|
|
741
|
+
declare function PayphoneWidgetRenderer({ config, responseUrl, containerId, onReady, onError, }: {
|
|
742
|
+
config: PayphoneWidgetConfig;
|
|
743
|
+
responseUrl: string;
|
|
744
|
+
containerId: string;
|
|
745
|
+
onReady?: () => void;
|
|
746
|
+
onError?: (error: Error) => void;
|
|
747
|
+
}): react_jsx_runtime.JSX.Element;
|
|
748
|
+
|
|
730
749
|
interface SubscriptionBadgeProps {
|
|
731
750
|
className?: string;
|
|
732
751
|
style?: CSSProperties;
|
|
@@ -1559,6 +1578,66 @@ interface UsePayphoneConfirmOptions {
|
|
|
1559
1578
|
}
|
|
1560
1579
|
declare function usePayphoneConfirm(options?: UsePayphoneConfirmOptions): _tanstack_react_query.UseMutationResult<PayphoneConfirmResult, Error, PayphoneConfirmParams, unknown>;
|
|
1561
1580
|
|
|
1581
|
+
type PayphoneCheckoutStatus = 'idle' | 'loading' | 'ready' | 'confirming' | 'confirmed' | 'cancelled' | 'error';
|
|
1582
|
+
interface UsePayphoneCheckoutOptions {
|
|
1583
|
+
intentId: string;
|
|
1584
|
+
onSuccess?: (data: PayphoneConfirmResult) => void;
|
|
1585
|
+
onError?: (error: Error) => void;
|
|
1586
|
+
}
|
|
1587
|
+
interface UsePayphoneCheckoutReturn {
|
|
1588
|
+
PayphoneWidget: () => ReactElement | null;
|
|
1589
|
+
status: PayphoneCheckoutStatus;
|
|
1590
|
+
intentId: string;
|
|
1591
|
+
error: Error | null;
|
|
1592
|
+
}
|
|
1593
|
+
declare function usePayphoneCheckout({ intentId, onSuccess, onError, }: UsePayphoneCheckoutOptions): UsePayphoneCheckoutReturn;
|
|
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
|
+
|
|
1562
1641
|
declare function useTenants(): _tanstack_react_query.UseQueryResult<TenantWithRole[], Error>;
|
|
1563
1642
|
declare function useTenantMembers(tenantId: string): _tanstack_react_query.UseQueryResult<TenantMemberInfo[], Error>;
|
|
1564
1643
|
declare function useSwitchTenant(): {
|
|
@@ -1871,13 +1950,6 @@ interface TransferModalProps {
|
|
|
1871
1950
|
labels?: Record<string, string>;
|
|
1872
1951
|
}
|
|
1873
1952
|
|
|
1874
|
-
declare global {
|
|
1875
|
-
interface Window {
|
|
1876
|
-
PPaymentButtonBox: new (config: Record<string, unknown>) => {
|
|
1877
|
-
render: (containerId: string) => void;
|
|
1878
|
-
};
|
|
1879
|
-
}
|
|
1880
|
-
}
|
|
1881
1953
|
interface PayphoneModalProps {
|
|
1882
1954
|
config: PayphoneWidgetConfig;
|
|
1883
1955
|
successUrl: string;
|
|
@@ -1895,4 +1967,4 @@ interface SessionSyncOptions {
|
|
|
1895
1967
|
|
|
1896
1968
|
declare const SDK_VERSION: string;
|
|
1897
1969
|
|
|
1898
|
-
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 PayphoneConfirmParams, type PayphoneConfirmResult, type PayphoneModalProps, type PayphoneWidgetConfig, 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 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, 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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { CSSProperties, ReactNode, FormEvent } from 'react';
|
|
2
|
+
import { CSSProperties, ReactNode, FormEvent, ReactElement } from 'react';
|
|
3
3
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
4
4
|
import { UseMutationResult, UseQueryResult } from '@tanstack/react-query';
|
|
5
5
|
import { z } from 'zod';
|
|
@@ -727,6 +727,25 @@ interface PayphoneCallbackProps {
|
|
|
727
727
|
}
|
|
728
728
|
declare function PayphoneCallback({ onSuccess, onError, className, style }: PayphoneCallbackProps): react_jsx_runtime.JSX.Element;
|
|
729
729
|
|
|
730
|
+
declare global {
|
|
731
|
+
interface Window {
|
|
732
|
+
PPaymentButtonBox: new (config: Record<string, unknown>) => {
|
|
733
|
+
render: (containerId: string) => void;
|
|
734
|
+
};
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
/**
|
|
738
|
+
* Internal widget renderer — loads Payphone SDK and mounts PPaymentButtonBox.
|
|
739
|
+
* Used by usePayphoneCheckout, usePayButton hooks and PayphoneModal component.
|
|
740
|
+
*/
|
|
741
|
+
declare function PayphoneWidgetRenderer({ config, responseUrl, containerId, onReady, onError, }: {
|
|
742
|
+
config: PayphoneWidgetConfig;
|
|
743
|
+
responseUrl: string;
|
|
744
|
+
containerId: string;
|
|
745
|
+
onReady?: () => void;
|
|
746
|
+
onError?: (error: Error) => void;
|
|
747
|
+
}): react_jsx_runtime.JSX.Element;
|
|
748
|
+
|
|
730
749
|
interface SubscriptionBadgeProps {
|
|
731
750
|
className?: string;
|
|
732
751
|
style?: CSSProperties;
|
|
@@ -1559,6 +1578,66 @@ interface UsePayphoneConfirmOptions {
|
|
|
1559
1578
|
}
|
|
1560
1579
|
declare function usePayphoneConfirm(options?: UsePayphoneConfirmOptions): _tanstack_react_query.UseMutationResult<PayphoneConfirmResult, Error, PayphoneConfirmParams, unknown>;
|
|
1561
1580
|
|
|
1581
|
+
type PayphoneCheckoutStatus = 'idle' | 'loading' | 'ready' | 'confirming' | 'confirmed' | 'cancelled' | 'error';
|
|
1582
|
+
interface UsePayphoneCheckoutOptions {
|
|
1583
|
+
intentId: string;
|
|
1584
|
+
onSuccess?: (data: PayphoneConfirmResult) => void;
|
|
1585
|
+
onError?: (error: Error) => void;
|
|
1586
|
+
}
|
|
1587
|
+
interface UsePayphoneCheckoutReturn {
|
|
1588
|
+
PayphoneWidget: () => ReactElement | null;
|
|
1589
|
+
status: PayphoneCheckoutStatus;
|
|
1590
|
+
intentId: string;
|
|
1591
|
+
error: Error | null;
|
|
1592
|
+
}
|
|
1593
|
+
declare function usePayphoneCheckout({ intentId, onSuccess, onError, }: UsePayphoneCheckoutOptions): UsePayphoneCheckoutReturn;
|
|
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
|
+
|
|
1562
1641
|
declare function useTenants(): _tanstack_react_query.UseQueryResult<TenantWithRole[], Error>;
|
|
1563
1642
|
declare function useTenantMembers(tenantId: string): _tanstack_react_query.UseQueryResult<TenantMemberInfo[], Error>;
|
|
1564
1643
|
declare function useSwitchTenant(): {
|
|
@@ -1871,13 +1950,6 @@ interface TransferModalProps {
|
|
|
1871
1950
|
labels?: Record<string, string>;
|
|
1872
1951
|
}
|
|
1873
1952
|
|
|
1874
|
-
declare global {
|
|
1875
|
-
interface Window {
|
|
1876
|
-
PPaymentButtonBox: new (config: Record<string, unknown>) => {
|
|
1877
|
-
render: (containerId: string) => void;
|
|
1878
|
-
};
|
|
1879
|
-
}
|
|
1880
|
-
}
|
|
1881
1953
|
interface PayphoneModalProps {
|
|
1882
1954
|
config: PayphoneWidgetConfig;
|
|
1883
1955
|
successUrl: string;
|
|
@@ -1895,4 +1967,4 @@ interface SessionSyncOptions {
|
|
|
1895
1967
|
|
|
1896
1968
|
declare const SDK_VERSION: string;
|
|
1897
1969
|
|
|
1898
|
-
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 PayphoneConfirmParams, type PayphoneConfirmResult, type PayphoneModalProps, type PayphoneWidgetConfig, 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 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, 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 };
|