@clerk/types 4.93.0-canary.v20251009123240 → 4.93.0-canary.v20251009124010
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 +34 -34
- package/dist/index.d.ts +34 -34
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -65,7 +65,7 @@ type UserPreviewId = 'userButton' | 'personalWorkspace';
|
|
65
65
|
type OrganizationPreviewId = 'organizationSwitcherTrigger' | 'organizationList' | 'organizationSwitcherListedOrganization' | 'organizationSwitcherActiveOrganization' | 'taskChooseOrganization';
|
66
66
|
type CardActionId = 'havingTrouble' | 'alternativeMethods' | 'signUp' | 'signIn' | 'usePasskey' | 'waitlist' | 'signOut';
|
67
67
|
type MenuId = 'invitation' | 'member' | ProfileSectionId;
|
68
|
-
type SelectId = 'countryCode' | 'role' | '
|
68
|
+
type SelectId = 'countryCode' | 'role' | 'paymentMethod' | 'apiKeyExpiration';
|
69
69
|
|
70
70
|
interface Web3ProviderData {
|
71
71
|
provider: Web3Provider;
|
@@ -310,19 +310,19 @@ type BillingSubscriptionPlanPeriod = 'month' | 'annual';
|
|
310
310
|
/**
|
311
311
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
312
312
|
*/
|
313
|
-
interface
|
313
|
+
interface BillingPayerMethods {
|
314
314
|
/**
|
315
315
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
316
316
|
*/
|
317
|
-
|
317
|
+
initializePaymentMethod: (params: Exclude<InitializePaymentMethodParams, 'orgId'>) => Promise<BillingInitializedPaymentMethodResource>;
|
318
318
|
/**
|
319
319
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
320
320
|
*/
|
321
|
-
|
321
|
+
addPaymentMethod: (params: Exclude<AddPaymentMethodParams, 'orgId'>) => Promise<BillingPaymentMethodResource>;
|
322
322
|
/**
|
323
323
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
324
324
|
*/
|
325
|
-
|
325
|
+
getPaymentMethods: (params: Exclude<GetPaymentMethodsParams, 'orgId'>) => Promise<ClerkPaginatedResponse<BillingPaymentMethodResource>>;
|
326
326
|
}
|
327
327
|
/**
|
328
328
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
@@ -437,11 +437,11 @@ interface FeatureResource extends ClerkResource {
|
|
437
437
|
* The status of a payment source.
|
438
438
|
* @inline
|
439
439
|
*/
|
440
|
-
type
|
440
|
+
type BillingPaymentMethodStatus = 'active' | 'expired' | 'disconnected';
|
441
441
|
/**
|
442
442
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
443
443
|
*/
|
444
|
-
type
|
444
|
+
type GetPaymentMethodsParams = WithOptionalOrgType<ClerkPaginationParams>;
|
445
445
|
/**
|
446
446
|
* @inline
|
447
447
|
*
|
@@ -451,7 +451,7 @@ type PaymentGateway = 'stripe' | 'paypal';
|
|
451
451
|
/**
|
452
452
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
453
453
|
*/
|
454
|
-
type
|
454
|
+
type InitializePaymentMethodParams = WithOptionalOrgType<{
|
455
455
|
/**
|
456
456
|
* The payment gateway to use.
|
457
457
|
*/
|
@@ -460,7 +460,7 @@ type InitializePaymentSourceParams = WithOptionalOrgType<{
|
|
460
460
|
/**
|
461
461
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
462
462
|
*/
|
463
|
-
type
|
463
|
+
type AddPaymentMethodParams = WithOptionalOrgType<{
|
464
464
|
/**
|
465
465
|
* The payment gateway to use.
|
466
466
|
*/
|
@@ -473,17 +473,17 @@ type AddPaymentSourceParams = WithOptionalOrgType<{
|
|
473
473
|
/**
|
474
474
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
475
475
|
*/
|
476
|
-
type
|
476
|
+
type RemovePaymentMethodParams = WithOptionalOrgType<unknown>;
|
477
477
|
/**
|
478
478
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
479
479
|
*/
|
480
|
-
type
|
480
|
+
type MakeDefaultPaymentMethodParams = WithOptionalOrgType<unknown>;
|
481
481
|
/**
|
482
|
-
* The `
|
482
|
+
* The `BillingPaymentMethodResource` type represents a payment method for a checkout session.
|
483
483
|
*
|
484
484
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
485
485
|
*/
|
486
|
-
interface
|
486
|
+
interface BillingPaymentMethodResource extends ClerkResource {
|
487
487
|
/**
|
488
488
|
* The unique identifier for the payment method.
|
489
489
|
*/
|
@@ -493,9 +493,9 @@ interface BillingPaymentSourceResource extends ClerkResource {
|
|
493
493
|
*/
|
494
494
|
last4: string;
|
495
495
|
/**
|
496
|
-
* The type of payment method. For example, `'card'` or `'
|
496
|
+
* The type of payment method. For example, `'card'` or `'link'`.
|
497
497
|
*/
|
498
|
-
|
498
|
+
paymentType: 'card' | 'link';
|
499
499
|
/**
|
500
500
|
* The brand or type of card. For example, `'visa'` or `'mastercard'`.
|
501
501
|
*/
|
@@ -511,7 +511,7 @@ interface BillingPaymentSourceResource extends ClerkResource {
|
|
511
511
|
/**
|
512
512
|
* The current status of the payment method.
|
513
513
|
*/
|
514
|
-
status:
|
514
|
+
status: BillingPaymentMethodStatus;
|
515
515
|
/**
|
516
516
|
* The type of digital wallet, if applicable. For example, `'apple_pay'`, or `'google_pay'`.
|
517
517
|
*/
|
@@ -525,7 +525,7 @@ interface BillingPaymentSourceResource extends ClerkResource {
|
|
525
525
|
* @param params - The parameters for the remove operation.
|
526
526
|
* @returns A promise that resolves to a `DeletedObjectResource` object.
|
527
527
|
*/
|
528
|
-
remove: (params?:
|
528
|
+
remove: (params?: RemovePaymentMethodParams) => Promise<DeletedObjectResource>;
|
529
529
|
/**
|
530
530
|
* A function that sets this payment source as the default for the account. Accepts the following parameters:
|
531
531
|
* <ul>
|
@@ -535,12 +535,12 @@ interface BillingPaymentSourceResource extends ClerkResource {
|
|
535
535
|
* @param params - The parameters for the make default operation.
|
536
536
|
* @returns A promise that resolves to `null`.
|
537
537
|
*/
|
538
|
-
makeDefault: (params?:
|
538
|
+
makeDefault: (params?: MakeDefaultPaymentMethodParams) => Promise<null>;
|
539
539
|
}
|
540
540
|
/**
|
541
541
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
542
542
|
*/
|
543
|
-
interface
|
543
|
+
interface BillingInitializedPaymentMethodResource extends ClerkResource {
|
544
544
|
/**
|
545
545
|
* A client secret from an external payment provider (such as Stripe) used to complete the payment on the client-side.
|
546
546
|
*/
|
@@ -595,7 +595,7 @@ interface BillingPaymentResource extends ClerkResource {
|
|
595
595
|
/**
|
596
596
|
* The payment source being used for the payment, such as credit card or bank account.
|
597
597
|
*/
|
598
|
-
|
598
|
+
paymentMethod: BillingPaymentMethodResource;
|
599
599
|
/**
|
600
600
|
* The subscription item being paid for.
|
601
601
|
*/
|
@@ -688,7 +688,7 @@ interface BillingSubscriptionItemResource extends ClerkResource {
|
|
688
688
|
/**
|
689
689
|
* The unique identifier for the payment source being used for the subscription item.
|
690
690
|
*/
|
691
|
-
|
691
|
+
paymentMethodId: string;
|
692
692
|
/**
|
693
693
|
* The plan associated with the subscription item.
|
694
694
|
*/
|
@@ -928,9 +928,9 @@ interface BillingCheckoutResource extends ClerkResource {
|
|
928
928
|
*/
|
929
929
|
externalGatewayId: string;
|
930
930
|
/**
|
931
|
-
* The payment
|
931
|
+
* The payment method being used for the checkout, such as a credit card or bank account.
|
932
932
|
*/
|
933
|
-
|
933
|
+
paymentMethod?: BillingPaymentMethodResource;
|
934
934
|
/**
|
935
935
|
* The subscription plan details for the checkout.
|
936
936
|
*/
|
@@ -1902,7 +1902,7 @@ declare global {
|
|
1902
1902
|
*
|
1903
1903
|
* The ClerkJS SDK provides some helper [methods](#methods) on the `User` object to help retrieve and update user information and authentication status.
|
1904
1904
|
*/
|
1905
|
-
interface UserResource extends ClerkResource,
|
1905
|
+
interface UserResource extends ClerkResource, BillingPayerMethods {
|
1906
1906
|
id: string;
|
1907
1907
|
externalId: string | null;
|
1908
1908
|
primaryEmailAddressId: string | null;
|
@@ -2348,7 +2348,7 @@ declare global {
|
|
2348
2348
|
*
|
2349
2349
|
* @interface
|
2350
2350
|
*/
|
2351
|
-
interface OrganizationResource extends ClerkResource,
|
2351
|
+
interface OrganizationResource extends ClerkResource, BillingPayerMethods {
|
2352
2352
|
id: string;
|
2353
2353
|
name: string;
|
2354
2354
|
slug: string | null;
|
@@ -4043,21 +4043,21 @@ interface BillingPlanJSON extends ClerkResourceJSON {
|
|
4043
4043
|
/**
|
4044
4044
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
4045
4045
|
*/
|
4046
|
-
interface
|
4047
|
-
object: '
|
4046
|
+
interface BillingPaymentMethodJSON extends ClerkResourceJSON {
|
4047
|
+
object: 'commerce_payment_method';
|
4048
4048
|
id: string;
|
4049
4049
|
last4: string;
|
4050
|
-
|
4050
|
+
payment_type: 'card' | 'link';
|
4051
4051
|
card_type: string;
|
4052
4052
|
is_default: boolean;
|
4053
4053
|
is_removable: boolean;
|
4054
|
-
status:
|
4054
|
+
status: BillingPaymentMethodStatus;
|
4055
4055
|
wallet_type: string | null;
|
4056
4056
|
}
|
4057
4057
|
/**
|
4058
4058
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
4059
4059
|
*/
|
4060
|
-
interface
|
4060
|
+
interface BillingInitializedPaymentMethodJSON extends ClerkResourceJSON {
|
4061
4061
|
object: 'commerce_payment_source_initialize';
|
4062
4062
|
external_client_secret: string;
|
4063
4063
|
external_gateway_id: string;
|
@@ -4092,7 +4092,7 @@ interface BillingPaymentJSON extends ClerkResourceJSON {
|
|
4092
4092
|
paid_at?: number;
|
4093
4093
|
failed_at?: number;
|
4094
4094
|
updated_at: number;
|
4095
|
-
|
4095
|
+
payment_method: BillingPaymentMethodJSON;
|
4096
4096
|
subscription: BillingSubscriptionItemJSON;
|
4097
4097
|
subscription_item: BillingSubscriptionItemJSON;
|
4098
4098
|
charge_type: BillingPaymentChargeType;
|
@@ -4108,7 +4108,7 @@ interface BillingSubscriptionItemJSON extends ClerkResourceJSON {
|
|
4108
4108
|
credit?: {
|
4109
4109
|
amount: BillingMoneyAmountJSON;
|
4110
4110
|
};
|
4111
|
-
|
4111
|
+
payment_method_id: string;
|
4112
4112
|
plan: BillingPlanJSON;
|
4113
4113
|
plan_period: BillingSubscriptionPlanPeriod;
|
4114
4114
|
status: BillingSubscriptionStatus;
|
@@ -4179,7 +4179,7 @@ interface BillingCheckoutJSON extends ClerkResourceJSON {
|
|
4179
4179
|
id: string;
|
4180
4180
|
external_client_secret: string;
|
4181
4181
|
external_gateway_id: string;
|
4182
|
-
|
4182
|
+
payment_method?: BillingPaymentMethodJSON;
|
4183
4183
|
plan: BillingPlanJSON;
|
4184
4184
|
plan_period: BillingSubscriptionPlanPeriod;
|
4185
4185
|
plan_period_start?: number;
|
@@ -9499,4 +9499,4 @@ type InitialState = Serializable<{
|
|
9499
9499
|
factorVerificationAge: [number, number];
|
9500
9500
|
}>;
|
9501
9501
|
|
9502
|
-
export { type APIKeyResource, type APIKeysNamespace, type APIKeysProps, type APIKeysSettingsJSON, type APIKeysSettingsJSONSnapshot, type APIKeysSettingsResource, type APIKeysTheme, type ActClaim, type ActJWTClaim, type Actions, type ActiveSessionResource, type AddMemberParams, type AddPaymentSourceParams, type AfterMultiSessionSingleSignOutUrl, type AfterSignOutUrl, type AlertId, type AlphaColorScale, type ApiKeyJSON, type Appearance, type AppleOauthProvider, type AtlassianOauthProvider, type AttemptAffiliationVerificationParams, type AttemptEmailAddressVerificationParams, type AttemptFirstFactorParams, type AttemptPhoneNumberVerificationParams, type AttemptSecondFactorParams, type AttemptVerificationParams, type AttemptWeb3WalletVerificationParams, type Attribute, type AttributeData, type AttributeDataJSON, type Attributes, type AttributesJSON, type AuthConfigJSON, type AuthConfigJSONSnapshot, type AuthConfigResource, type AuthenticateWithBaseParams, type AuthenticateWithCoinbaseWalletParams, type AuthenticateWithGoogleOneTapParams, type AuthenticateWithMetamaskParams, type AuthenticateWithOKXWalletParams, type AuthenticateWithPasskeyParams, type AuthenticateWithPopupParams, type AuthenticateWithRedirectParams, type AuthenticateWithWeb3Params, type Autocomplete, type BackupCodeAttempt, type BackupCodeFactor, type BackupCodeJSON, type BackupCodeResource, type BackupCodeStrategy, type BaseTheme, type BaseThemeTaggedType, type BaseWeb3Provider, type BeforeEmitCallback, type BillingCheckoutJSON, type BillingCheckoutResource, type BillingCheckoutTotals, type BillingCheckoutTotalsJSON, type BillingInitializedPaymentSourceJSON, type BillingInitializedPaymentSourceResource, type BillingMoneyAmount, type BillingMoneyAmountJSON, type BillingNamespace, type BillingPayerJSON, type BillingPayerResource, type BillingPayerResourceType, type BillingPaymentChargeType, type BillingPaymentJSON, type BillingPaymentResource, type BillingPaymentSourceJSON, type BillingPaymentSourceMethods, type BillingPaymentSourceResource, type BillingPaymentSourceStatus, type BillingPaymentStatus, type BillingPlanJSON, type BillingPlanResource, type BillingStatementGroup, type BillingStatementGroupJSON, type BillingStatementJSON, type BillingStatementResource, type BillingStatementStatus, type BillingStatementTotals, type BillingStatementTotalsJSON, type BillingSubscriptionItemJSON, type BillingSubscriptionItemResource, type BillingSubscriptionJSON, type BillingSubscriptionPlanPeriod, type BillingSubscriptionResource, type BillingSubscriptionStatus, type BitbucketOauthProvider, type BoxOauthProvider, type BoxShadow, type BuiltInColors, type CamelToSnake, type CancelSubscriptionParams, type CaptchaAppearanceOptions, type CaptchaProvider, type CaptchaWidgetType, type CardActionId, type CheckAuthorization, type CheckAuthorizationFn, type CheckAuthorizationFromSessionClaims, type CheckAuthorizationParamsFromSessionClaims, type CheckAuthorizationParamsWithCustomPermissions, type CheckAuthorizationWithCustomPermissions, type CheckoutTheme, type Clerk, type ClerkAPIError, type ClerkAPIErrorJSON, type ClerkAPIResponseError, type ClerkAuthenticateWithWeb3Params, type ClerkEventPayload, type ClerkHostRouter, type ClerkJWTClaims, type ClerkOptions, type ClerkPaginatedResponse, type ClerkPaginationParams, type ClerkPaginationRequest, type ClerkResource, type ClerkResourceJSON, type ClerkResourceReloadParams, type ClerkRuntimeError, type ClerkStatus, type ClerkThemeOptions, type ClientJSON, type ClientJSONSnapshot, type ClientResource, type CodeVerificationAttemptParam, type CoinbaseOauthProvider, type CoinbaseWalletWeb3Provider, type Color, type ColorScale, type ColorScaleWithRequiredBase, type ColorString, type CommerceSettingsJSON, type CommerceSettingsJSONSnapshot, type CommerceSettingsResource, type ComplexityErrors, type ConfirmCheckoutParams, type CreateAPIKeyParams, type CreateBulkOrganizationInvitationParams, type CreateCheckoutParams, type CreateEmailAddressParams, type CreateEmailLinkFlowReturn, type CreateEnterpriseSSOLinkFlowReturn, type CreateExternalAccountParams, type CreateOrganizationInvitationParams, type CreateOrganizationModalProps, type CreateOrganizationParams, type CreateOrganizationProps, type CreateOrganizationTheme, type CreatePhoneNumberParams, type CreateWeb3WalletParams, type CredentialReturn, type CssColorOrAlphaScale, type CssColorOrScale, type CustomMenuItem, type CustomNavigation, type CustomOAuthStrategy, type CustomOauthProvider, type CustomPage, type DeepCamelToSnake, type DeepPartial, type DeepRequired, type DeepSnakeToCamel, type DeletedObjectJSON, type DeletedObjectResource, type DiscordOauthProvider, type DisplayConfigJSON, type DisplayConfigJSONSnapshot, type DisplayConfigResource, type DisplayThemeJSON, type DomainOrProxyUrl, type DropboxOauthProvider, type ElementObjectKey, type ElementState, type Elements, type ElementsConfig, type EmUnit, type EmailAddressIdentifier, type EmailAddressJSON, type EmailAddressJSONSnapshot, type EmailAddressOrPhoneNumberIdentifier, type EmailAddressResource, type EmailCodeAttempt, type EmailCodeConfig, type EmailCodeFactor, type EmailCodeStrategy, type EmailLinkConfig, type EmailLinkFactor, type EmailLinkStrategy, type EnstallOauthProvider, type EnterpriseAccountConnectionJSON, type EnterpriseAccountConnectionJSONSnapshot, type EnterpriseAccountConnectionResource, type EnterpriseAccountJSON, type EnterpriseAccountJSONSnapshot, type EnterpriseAccountResource, type EnterpriseProtocol, type EnterpriseProvider, type EnterpriseSSOConfig, type EnterpriseSSOFactor, type EnterpriseSSOSettings, type EnterpriseSSOStrategy, type EnvironmentJSON, type EnvironmentJSONSnapshot, type EnvironmentResource, type Errors, type ExternalAccountJSON, type ExternalAccountJSONSnapshot, type ExternalAccountResource, type FacebookOauthProvider, type FeatureJSON, type FeatureResource, type FieldError, type FieldErrors, type FieldId, type FirstNameAttribute, type FontFamily, type FontWeight, type ForPayerType, type GenerateSignature, type GenerateSignatureParams, type GetAPIKeysParams, type GetDomainsParams, type GetInvitationsParams, type GetMembersParams, type GetMembershipRequestParams, type GetMemberships, type GetOrganizationMemberships, type GetPaymentAttemptsParams, type GetPaymentSourcesParams, type GetPlansParams, type GetRolesParams, type GetStatementsParams, type GetSubscriptionParams, type GetToken, type GetTokenOptions, type GetUserOrganizationInvitationsParams, type GetUserOrganizationMembershipParams, type GetUserOrganizationSuggestionsParams, type GithubOauthProvider, type GitlabOauthProvider, type GoogleOauthProvider, type GoogleOneTapProps, type GoogleOneTapStrategy, type HandleEmailLinkVerificationParams, type HandleOAuthCallbackParams, type HandleSamlCallbackParams, type HexColor, type HexColorString, type HslaColor, type HslaColorString, type HubspotOauthProvider, type HuggingfaceOAuthProvider, type IdSelectors, type IdentificationLinkJSON, type IdentificationLinkJSONSnapshot, type IdentificationLinkResource, type ImageJSON, type ImageResource, type InitialState, type InitializePaymentSourceParams, type InstagramOauthProvider, type InstanceType, type InviteMemberParams, type InviteMembersParams, type JWT, type JWTClaims, type JWTHeader, type JoinWaitlistParams, type Jwt, type JwtHeader, type JwtPayload, type LastAuthenticationStrategy, type LastNameAttribute, type Layout, type LegacyRedirectProps, type LegalAcceptedAttribute, type LineOauthProvider, type LinearOauthProvider, type LinkedinOIDCOauthProvider, type LinkedinOauthProvider, type ListenerCallback, type LoadedClerk, type LocalizationResource, type LocalizationValue, type MakeDefaultPaymentSourceParams, type MenuId, type MetamaskWeb3Provider, type MicrosoftOauthProvider, type MultiDomainAndOrProxy, type MultiDomainAndOrProxyPrimitives, type NavigateOptions, type NewSubscriptionRedirectUrl, type NotionOauthProvider, type Nullable, type NullableSignInSignal, type NullableSignUpSignal, OAUTH_PROVIDERS, type OAuthConfig, type OAuthConsentTheme, type OAuthProvider, type OAuthProviderData, type OAuthProviderSettings, type OAuthProviders, type OAuthScope, type OAuthStrategy, type OKXWalletWeb3Provider, type OauthFactor, type OrganizationCustomPermissionKey, type OrganizationCustomRoleKey, type OrganizationDomainJSON, type OrganizationDomainResource, type OrganizationDomainVerification, type OrganizationDomainVerificationJSON, type OrganizationDomainVerificationStatus, type OrganizationEnrollmentMode, type OrganizationInvitationJSON, type OrganizationInvitationResource, type OrganizationInvitationStatus, type OrganizationJSON, type OrganizationJSONSnapshot, type OrganizationListProps, type OrganizationListTheme, type OrganizationMembershipJSON, type OrganizationMembershipJSONSnapshot, type OrganizationMembershipRequestJSON, type OrganizationMembershipRequestResource, type OrganizationMembershipResource, type OrganizationPermissionKey, type OrganizationPreviewId, type OrganizationProfileModalProps, type OrganizationProfileProps, type OrganizationProfileTheme, type OrganizationResource, type OrganizationSettingsJSON, type OrganizationSettingsJSONSnapshot, type OrganizationSettingsResource, type OrganizationSuggestionJSON, type OrganizationSuggestionResource, type OrganizationSuggestionStatus, type OrganizationSwitcherProps, type OrganizationSwitcherTheme, type OrganizationSystemPermissionKey, type OrganizationSystemPermissionPrefix, type OrganizationsJWTClaim, type Override, type PartialWithClerkResource, type PassKeyConfig, type PasskeyAttempt, type PasskeyFactor, type PasskeyJSON, type PasskeyJSONSnapshot, type PasskeyResource, type PasskeySettingsData, type PasskeyStrategy, type PasskeyVerificationResource, type PasswordAttempt, type PasswordAttribute, type PasswordFactor, type PasswordSettingsData, type PasswordStrategy, type PasswordStrength, type PasswordValidation, type PathValue, type PaymentGateway, type PendingSessionOptions, type PendingSessionResource, type PermissionJSON, type PermissionResource, type PhoneCodeAttempt, type PhoneCodeChannel, type PhoneCodeChannelData, type PhoneCodeConfig, type PhoneCodeFactor, type PhoneCodeProvider, type PhoneCodeSMSChannel, type PhoneCodeSecondFactorConfig, type PhoneCodeStrategy, type PhoneCodeWhatsAppChannel, type PhoneNumberIdentifier, type PhoneNumberJSON, type PhoneNumberJSONSnapshot, type PhoneNumberResource, type PhoneNumberVerificationStrategy, type PlanDetailTheme, type PreferredSignInStrategy, type PrepareAffiliationVerificationParams, type PrepareEmailAddressVerificationParams, type PrepareFirstFactorParams, type PreparePhoneNumberVerificationParams, type PrepareSecondFactorParams, type PrepareVerificationParams, type PrepareWeb3WalletVerificationParams, type PricingTableProps, type PricingTableTheme, type ProfilePageId, type ProfileSectionId, type ProtectProps, type PublicKeyCredentialCreationOptionsJSON, type PublicKeyCredentialCreationOptionsWithoutExtensions, type PublicKeyCredentialRequestOptionsJSON, type PublicKeyCredentialRequestOptionsWithoutExtensions, type PublicKeyCredentialWithAuthenticatorAssertionResponse, type PublicKeyCredentialWithAuthenticatorAttestationResponse, type PublicOrganizationDataJSON, type PublicUserData, type PublicUserDataJSON, type PublicUserDataJSONSnapshot, type PublishableKey, type ReauthorizeExternalAccountParams, type RecordToPath, type RedirectOptions, type RedirectUrlProp, type RemovePaymentSourceParams, type RemoveUserPasswordParams, type ResetPasswordCodeFactor, type ResetPasswordEmailCodeAttempt, type ResetPasswordEmailCodeFactor, type ResetPasswordEmailCodeFactorConfig, type ResetPasswordEmailCodeStrategy, type ResetPasswordParams, type ResetPasswordPhoneCodeAttempt, type ResetPasswordPhoneCodeFactor, type ResetPasswordPhoneCodeFactorConfig, type ResetPasswordPhoneCodeStrategy, type Resources, type ReverificationConfig, type RevokeAPIKeyParams, type RgbaColor, type RgbaColorString, type RoleJSON, type RoleResource, type RoutingMode, type RoutingOptions, type RoutingStrategy, SAML_IDPS, type SDKMetadata, type SamlAccountConnectionJSON, type SamlAccountConnectionJSONSnapshot, type SamlAccountConnectionResource, type SamlAccountJSON, type SamlAccountJSONSnapshot, type SamlAccountResource, type SamlConfig, type SamlFactor, type SamlIdp, type SamlIdpMap, type SamlIdpSlug, type SamlSettings, type SamlStrategy, type SelectId, type Serializable, type ServerGetToken, type ServerGetTokenOptions, type SessionActivity, type SessionActivityJSON, type SessionJSON, type SessionJSONSnapshot, type SessionResource, type SessionStatus, type SessionStatusClaim, type SessionTask, type SessionVerificationAfterMinutes, type SessionVerificationFirstFactor, type SessionVerificationJSON, type SessionVerificationLevel, type SessionVerificationResource, type SessionVerificationSecondFactor, type SessionVerificationStatus, type SessionVerificationTypes, type SessionVerifyAttemptFirstFactorParams, type SessionVerifyAttemptSecondFactorParams, type SessionVerifyCreateParams, type SessionVerifyPrepareFirstFactorParams, type SessionVerifyPrepareSecondFactorParams, type SessionWithActivitiesJSON, type SessionWithActivitiesResource, type SetActive, type SetActiveNavigate, type SetActiveParams, type SetOrganizationLogoParams, type SetProfileImageParams, type SetReservedForSecondFactorParams, type SharedSignedInAuthObjectProperties, type SignInButtonProps, type SignInCreateParams, type SignInData, type SignInFactor, type SignInFallbackRedirectUrl, type SignInFirstFactor, type SignInFirstFactorJSON, type SignInForceRedirectUrl, type SignInFutureBackupCodeVerifyParams, type SignInFutureCreateParams, type SignInFutureEmailCodeSendParams, type SignInFutureEmailCodeVerifyParams, type SignInFutureEmailLinkSendParams, type SignInFutureFinalizeParams, type SignInFutureMFAPhoneCodeVerifyParams, type SignInFuturePasswordParams, type SignInFuturePhoneCodeSendParams, type SignInFuturePhoneCodeVerifyParams, type SignInFutureResetPasswordSubmitParams, type SignInFutureResource, type SignInFutureSSOParams, type SignInFutureTOTPVerifyParams, type SignInFutureTicketParams, type SignInFutureWeb3Params, type SignInIdentifier, type SignInInitialValues, type SignInJSON, type SignInJSONSnapshot, type SignInModalProps, type SignInProps, type SignInRedirectOptions, type SignInResource, type SignInSecondFactor, type SignInSecondFactorJSON, type SignInSignal, type SignInSignalValue, type SignInStartEmailLinkFlowParams, type SignInStatus, type SignInStrategy, type SignInTheme, type SignOut, type SignOutCallback, type SignOutOptions, type SignUpAttributeField, type SignUpAuthenticateWithMetamaskParams, type SignUpAuthenticateWithWeb3Params, type SignUpButtonProps, type SignUpCreateParams, type SignUpData, type SignUpFallbackRedirectUrl, type SignUpField, type SignUpForceRedirectUrl, type SignUpFutureCreateParams, type SignUpFutureEmailCodeVerifyParams, type SignUpFutureFinalizeParams, type SignUpFuturePasswordParams, type SignUpFuturePhoneCodeSendParams, type SignUpFuturePhoneCodeVerifyParams, type SignUpFutureResource, type SignUpFutureSSOParams, type SignUpFutureTicketParams, type SignUpFutureUpdateParams, type SignUpFutureWeb3Params, type SignUpIdentificationField, type SignUpInitialValues, type SignUpJSON, type SignUpJSONSnapshot, type SignUpModalProps, type SignUpModes, type SignUpProps, type SignUpRedirectOptions, type SignUpResource, type SignUpSignal, type SignUpSignalValue, type SignUpStatus, type SignUpTheme, type SignUpUpdateParams, type SignUpVerifiableField, type SignUpVerificationJSON, type SignUpVerificationJSONSnapshot, type SignUpVerificationResource, type SignUpVerificationsJSON, type SignUpVerificationsJSONSnapshot, type SignUpVerificationsResource, type SignatureVerificationAttemptParam, type SignedInSessionResource, type SlackOauthProvider, type SnakeToCamel, type SpotifyOauthProvider, type StartEmailLinkFlowParams, type StartEnterpriseSSOLinkFlowParams, type State, type StateSelectors, type SubscriptionDetailsTheme, type TOTPAttempt, type TOTPFactor, type TOTPJSON, type TOTPResource, type TOTPStrategy, type TaskChooseOrganizationProps, type TaskChooseOrganizationTheme, type TasksRedirectOptions, type TelemetryCollector, type TelemetryEvent, type TelemetryEventRaw, type TelemetryLogEntry, type Theme, type TicketStrategy, type TiktokOauthProvider, type TokenJSON, type TokenJSONSnapshot, type TokenResource, type TransferableOption, type TransparentColor, type TwitchOauthProvider, type TwitterOauthProvider, type UnsubscribeCallback, type UpdateEnrollmentModeParams, type UpdateMembershipParams, type UpdateOrganizationMembershipParams, type UpdateOrganizationParams, type UpdatePasskeyParams, type UpdateUserParams, type UpdateUserPasswordParams, type UseAuthReturn, type UseSessionListReturn, type UseSessionReturn, type UseSignInReturn, type UseSignUpReturn, type UseUserReturn, type UserAvatarProps, type UserAvatarTheme, type UserButtonProps, type UserButtonTheme, type UserData, type UserDataJSON, type UserDataJSONSnapshot, type UserJSON, type UserJSONSnapshot, type UserOrganizationInvitationJSON, type UserOrganizationInvitationResource, type UserPreviewId, type UserProfileModalProps, type UserProfileProps, type UserProfileTheme, type UserResource, type UserSettingsJSON, type UserSettingsJSONSnapshot, type UserSettingsResource, type UserVerificationTheme, type UsernameIdentifier, type UsernameSettingsData, type ValidatePasswordCallbacks, type Variables, type VerificationAttemptParams, type VerificationJSON, type VerificationJSONSnapshot, type VerificationResource, type VerificationStatus, type VerificationStrategy, type VerifyTOTPParams, type VersionedJwtPayload, WEB3_PROVIDERS, type WaitlistJSON, type WaitlistModalProps, type WaitlistProps, type WaitlistResource, type WaitlistTheme, type Web3Attempt, type Web3Provider, type Web3ProviderData, type Web3SignatureConfig, type Web3SignatureFactor, type Web3Strategy, type Web3WalletIdentifier, type Web3WalletJSON, type Web3WalletJSONSnapshot, type Web3WalletResource, type Without, type WithoutRouting, type XOauthProvider, type XeroOauthProvider, type ZxcvbnResult, type __experimental_CheckoutButtonProps, type __experimental_CheckoutCacheState, type __experimental_CheckoutInstance, type __experimental_CheckoutOptions, type __experimental_PlanDetailsButtonProps, type __experimental_SubscriptionDetailsButtonProps, type __internal_CheckoutProps, type __internal_ComponentNavigationContext, type __internal_LocalizationResource, type __internal_OAuthConsentProps, type __internal_PlanDetailsProps, type __internal_SubscriptionDetailsProps, type __internal_UserVerificationModalProps, type __internal_UserVerificationProps, getOAuthProviderData, getWeb3ProviderData, sortedOAuthProviders };
|
9502
|
+
export { type APIKeyResource, type APIKeysNamespace, type APIKeysProps, type APIKeysSettingsJSON, type APIKeysSettingsJSONSnapshot, type APIKeysSettingsResource, type APIKeysTheme, type ActClaim, type ActJWTClaim, type Actions, type ActiveSessionResource, type AddMemberParams, type AddPaymentMethodParams, type AfterMultiSessionSingleSignOutUrl, type AfterSignOutUrl, type AlertId, type AlphaColorScale, type ApiKeyJSON, type Appearance, type AppleOauthProvider, type AtlassianOauthProvider, type AttemptAffiliationVerificationParams, type AttemptEmailAddressVerificationParams, type AttemptFirstFactorParams, type AttemptPhoneNumberVerificationParams, type AttemptSecondFactorParams, type AttemptVerificationParams, type AttemptWeb3WalletVerificationParams, type Attribute, type AttributeData, type AttributeDataJSON, type Attributes, type AttributesJSON, type AuthConfigJSON, type AuthConfigJSONSnapshot, type AuthConfigResource, type AuthenticateWithBaseParams, type AuthenticateWithCoinbaseWalletParams, type AuthenticateWithGoogleOneTapParams, type AuthenticateWithMetamaskParams, type AuthenticateWithOKXWalletParams, type AuthenticateWithPasskeyParams, type AuthenticateWithPopupParams, type AuthenticateWithRedirectParams, type AuthenticateWithWeb3Params, type Autocomplete, type BackupCodeAttempt, type BackupCodeFactor, type BackupCodeJSON, type BackupCodeResource, type BackupCodeStrategy, type BaseTheme, type BaseThemeTaggedType, type BaseWeb3Provider, type BeforeEmitCallback, type BillingCheckoutJSON, type BillingCheckoutResource, type BillingCheckoutTotals, type BillingCheckoutTotalsJSON, type BillingInitializedPaymentMethodJSON, type BillingInitializedPaymentMethodResource, type BillingMoneyAmount, type BillingMoneyAmountJSON, type BillingNamespace, type BillingPayerJSON, type BillingPayerMethods, type BillingPayerResource, type BillingPayerResourceType, type BillingPaymentChargeType, type BillingPaymentJSON, type BillingPaymentMethodJSON, type BillingPaymentMethodResource, type BillingPaymentMethodStatus, type BillingPaymentResource, type BillingPaymentStatus, type BillingPlanJSON, type BillingPlanResource, type BillingStatementGroup, type BillingStatementGroupJSON, type BillingStatementJSON, type BillingStatementResource, type BillingStatementStatus, type BillingStatementTotals, type BillingStatementTotalsJSON, type BillingSubscriptionItemJSON, type BillingSubscriptionItemResource, type BillingSubscriptionJSON, type BillingSubscriptionPlanPeriod, type BillingSubscriptionResource, type BillingSubscriptionStatus, type BitbucketOauthProvider, type BoxOauthProvider, type BoxShadow, type BuiltInColors, type CamelToSnake, type CancelSubscriptionParams, type CaptchaAppearanceOptions, type CaptchaProvider, type CaptchaWidgetType, type CardActionId, type CheckAuthorization, type CheckAuthorizationFn, type CheckAuthorizationFromSessionClaims, type CheckAuthorizationParamsFromSessionClaims, type CheckAuthorizationParamsWithCustomPermissions, type CheckAuthorizationWithCustomPermissions, type CheckoutTheme, type Clerk, type ClerkAPIError, type ClerkAPIErrorJSON, type ClerkAPIResponseError, type ClerkAuthenticateWithWeb3Params, type ClerkEventPayload, type ClerkHostRouter, type ClerkJWTClaims, type ClerkOptions, type ClerkPaginatedResponse, type ClerkPaginationParams, type ClerkPaginationRequest, type ClerkResource, type ClerkResourceJSON, type ClerkResourceReloadParams, type ClerkRuntimeError, type ClerkStatus, type ClerkThemeOptions, type ClientJSON, type ClientJSONSnapshot, type ClientResource, type CodeVerificationAttemptParam, type CoinbaseOauthProvider, type CoinbaseWalletWeb3Provider, type Color, type ColorScale, type ColorScaleWithRequiredBase, type ColorString, type CommerceSettingsJSON, type CommerceSettingsJSONSnapshot, type CommerceSettingsResource, type ComplexityErrors, type ConfirmCheckoutParams, type CreateAPIKeyParams, type CreateBulkOrganizationInvitationParams, type CreateCheckoutParams, type CreateEmailAddressParams, type CreateEmailLinkFlowReturn, type CreateEnterpriseSSOLinkFlowReturn, type CreateExternalAccountParams, type CreateOrganizationInvitationParams, type CreateOrganizationModalProps, type CreateOrganizationParams, type CreateOrganizationProps, type CreateOrganizationTheme, type CreatePhoneNumberParams, type CreateWeb3WalletParams, type CredentialReturn, type CssColorOrAlphaScale, type CssColorOrScale, type CustomMenuItem, type CustomNavigation, type CustomOAuthStrategy, type CustomOauthProvider, type CustomPage, type DeepCamelToSnake, type DeepPartial, type DeepRequired, type DeepSnakeToCamel, type DeletedObjectJSON, type DeletedObjectResource, type DiscordOauthProvider, type DisplayConfigJSON, type DisplayConfigJSONSnapshot, type DisplayConfigResource, type DisplayThemeJSON, type DomainOrProxyUrl, type DropboxOauthProvider, type ElementObjectKey, type ElementState, type Elements, type ElementsConfig, type EmUnit, type EmailAddressIdentifier, type EmailAddressJSON, type EmailAddressJSONSnapshot, type EmailAddressOrPhoneNumberIdentifier, type EmailAddressResource, type EmailCodeAttempt, type EmailCodeConfig, type EmailCodeFactor, type EmailCodeStrategy, type EmailLinkConfig, type EmailLinkFactor, type EmailLinkStrategy, type EnstallOauthProvider, type EnterpriseAccountConnectionJSON, type EnterpriseAccountConnectionJSONSnapshot, type EnterpriseAccountConnectionResource, type EnterpriseAccountJSON, type EnterpriseAccountJSONSnapshot, type EnterpriseAccountResource, type EnterpriseProtocol, type EnterpriseProvider, type EnterpriseSSOConfig, type EnterpriseSSOFactor, type EnterpriseSSOSettings, type EnterpriseSSOStrategy, type EnvironmentJSON, type EnvironmentJSONSnapshot, type EnvironmentResource, type Errors, type ExternalAccountJSON, type ExternalAccountJSONSnapshot, type ExternalAccountResource, type FacebookOauthProvider, type FeatureJSON, type FeatureResource, type FieldError, type FieldErrors, type FieldId, type FirstNameAttribute, type FontFamily, type FontWeight, type ForPayerType, type GenerateSignature, type GenerateSignatureParams, type GetAPIKeysParams, type GetDomainsParams, type GetInvitationsParams, type GetMembersParams, type GetMembershipRequestParams, type GetMemberships, type GetOrganizationMemberships, type GetPaymentAttemptsParams, type GetPaymentMethodsParams, type GetPlansParams, type GetRolesParams, type GetStatementsParams, type GetSubscriptionParams, type GetToken, type GetTokenOptions, type GetUserOrganizationInvitationsParams, type GetUserOrganizationMembershipParams, type GetUserOrganizationSuggestionsParams, type GithubOauthProvider, type GitlabOauthProvider, type GoogleOauthProvider, type GoogleOneTapProps, type GoogleOneTapStrategy, type HandleEmailLinkVerificationParams, type HandleOAuthCallbackParams, type HandleSamlCallbackParams, type HexColor, type HexColorString, type HslaColor, type HslaColorString, type HubspotOauthProvider, type HuggingfaceOAuthProvider, type IdSelectors, type IdentificationLinkJSON, type IdentificationLinkJSONSnapshot, type IdentificationLinkResource, type ImageJSON, type ImageResource, type InitialState, type InitializePaymentMethodParams, type InstagramOauthProvider, type InstanceType, type InviteMemberParams, type InviteMembersParams, type JWT, type JWTClaims, type JWTHeader, type JoinWaitlistParams, type Jwt, type JwtHeader, type JwtPayload, type LastAuthenticationStrategy, type LastNameAttribute, type Layout, type LegacyRedirectProps, type LegalAcceptedAttribute, type LineOauthProvider, type LinearOauthProvider, type LinkedinOIDCOauthProvider, type LinkedinOauthProvider, type ListenerCallback, type LoadedClerk, type LocalizationResource, type LocalizationValue, type MakeDefaultPaymentMethodParams, type MenuId, type MetamaskWeb3Provider, type MicrosoftOauthProvider, type MultiDomainAndOrProxy, type MultiDomainAndOrProxyPrimitives, type NavigateOptions, type NewSubscriptionRedirectUrl, type NotionOauthProvider, type Nullable, type NullableSignInSignal, type NullableSignUpSignal, OAUTH_PROVIDERS, type OAuthConfig, type OAuthConsentTheme, type OAuthProvider, type OAuthProviderData, type OAuthProviderSettings, type OAuthProviders, type OAuthScope, type OAuthStrategy, type OKXWalletWeb3Provider, type OauthFactor, type OrganizationCustomPermissionKey, type OrganizationCustomRoleKey, type OrganizationDomainJSON, type OrganizationDomainResource, type OrganizationDomainVerification, type OrganizationDomainVerificationJSON, type OrganizationDomainVerificationStatus, type OrganizationEnrollmentMode, type OrganizationInvitationJSON, type OrganizationInvitationResource, type OrganizationInvitationStatus, type OrganizationJSON, type OrganizationJSONSnapshot, type OrganizationListProps, type OrganizationListTheme, type OrganizationMembershipJSON, type OrganizationMembershipJSONSnapshot, type OrganizationMembershipRequestJSON, type OrganizationMembershipRequestResource, type OrganizationMembershipResource, type OrganizationPermissionKey, type OrganizationPreviewId, type OrganizationProfileModalProps, type OrganizationProfileProps, type OrganizationProfileTheme, type OrganizationResource, type OrganizationSettingsJSON, type OrganizationSettingsJSONSnapshot, type OrganizationSettingsResource, type OrganizationSuggestionJSON, type OrganizationSuggestionResource, type OrganizationSuggestionStatus, type OrganizationSwitcherProps, type OrganizationSwitcherTheme, type OrganizationSystemPermissionKey, type OrganizationSystemPermissionPrefix, type OrganizationsJWTClaim, type Override, type PartialWithClerkResource, type PassKeyConfig, type PasskeyAttempt, type PasskeyFactor, type PasskeyJSON, type PasskeyJSONSnapshot, type PasskeyResource, type PasskeySettingsData, type PasskeyStrategy, type PasskeyVerificationResource, type PasswordAttempt, type PasswordAttribute, type PasswordFactor, type PasswordSettingsData, type PasswordStrategy, type PasswordStrength, type PasswordValidation, type PathValue, type PaymentGateway, type PendingSessionOptions, type PendingSessionResource, type PermissionJSON, type PermissionResource, type PhoneCodeAttempt, type PhoneCodeChannel, type PhoneCodeChannelData, type PhoneCodeConfig, type PhoneCodeFactor, type PhoneCodeProvider, type PhoneCodeSMSChannel, type PhoneCodeSecondFactorConfig, type PhoneCodeStrategy, type PhoneCodeWhatsAppChannel, type PhoneNumberIdentifier, type PhoneNumberJSON, type PhoneNumberJSONSnapshot, type PhoneNumberResource, type PhoneNumberVerificationStrategy, type PlanDetailTheme, type PreferredSignInStrategy, type PrepareAffiliationVerificationParams, type PrepareEmailAddressVerificationParams, type PrepareFirstFactorParams, type PreparePhoneNumberVerificationParams, type PrepareSecondFactorParams, type PrepareVerificationParams, type PrepareWeb3WalletVerificationParams, type PricingTableProps, type PricingTableTheme, type ProfilePageId, type ProfileSectionId, type ProtectProps, type PublicKeyCredentialCreationOptionsJSON, type PublicKeyCredentialCreationOptionsWithoutExtensions, type PublicKeyCredentialRequestOptionsJSON, type PublicKeyCredentialRequestOptionsWithoutExtensions, type PublicKeyCredentialWithAuthenticatorAssertionResponse, type PublicKeyCredentialWithAuthenticatorAttestationResponse, type PublicOrganizationDataJSON, type PublicUserData, type PublicUserDataJSON, type PublicUserDataJSONSnapshot, type PublishableKey, type ReauthorizeExternalAccountParams, type RecordToPath, type RedirectOptions, type RedirectUrlProp, type RemovePaymentMethodParams, type RemoveUserPasswordParams, type ResetPasswordCodeFactor, type ResetPasswordEmailCodeAttempt, type ResetPasswordEmailCodeFactor, type ResetPasswordEmailCodeFactorConfig, type ResetPasswordEmailCodeStrategy, type ResetPasswordParams, type ResetPasswordPhoneCodeAttempt, type ResetPasswordPhoneCodeFactor, type ResetPasswordPhoneCodeFactorConfig, type ResetPasswordPhoneCodeStrategy, type Resources, type ReverificationConfig, type RevokeAPIKeyParams, type RgbaColor, type RgbaColorString, type RoleJSON, type RoleResource, type RoutingMode, type RoutingOptions, type RoutingStrategy, SAML_IDPS, type SDKMetadata, type SamlAccountConnectionJSON, type SamlAccountConnectionJSONSnapshot, type SamlAccountConnectionResource, type SamlAccountJSON, type SamlAccountJSONSnapshot, type SamlAccountResource, type SamlConfig, type SamlFactor, type SamlIdp, type SamlIdpMap, type SamlIdpSlug, type SamlSettings, type SamlStrategy, type SelectId, type Serializable, type ServerGetToken, type ServerGetTokenOptions, type SessionActivity, type SessionActivityJSON, type SessionJSON, type SessionJSONSnapshot, type SessionResource, type SessionStatus, type SessionStatusClaim, type SessionTask, type SessionVerificationAfterMinutes, type SessionVerificationFirstFactor, type SessionVerificationJSON, type SessionVerificationLevel, type SessionVerificationResource, type SessionVerificationSecondFactor, type SessionVerificationStatus, type SessionVerificationTypes, type SessionVerifyAttemptFirstFactorParams, type SessionVerifyAttemptSecondFactorParams, type SessionVerifyCreateParams, type SessionVerifyPrepareFirstFactorParams, type SessionVerifyPrepareSecondFactorParams, type SessionWithActivitiesJSON, type SessionWithActivitiesResource, type SetActive, type SetActiveNavigate, type SetActiveParams, type SetOrganizationLogoParams, type SetProfileImageParams, type SetReservedForSecondFactorParams, type SharedSignedInAuthObjectProperties, type SignInButtonProps, type SignInCreateParams, type SignInData, type SignInFactor, type SignInFallbackRedirectUrl, type SignInFirstFactor, type SignInFirstFactorJSON, type SignInForceRedirectUrl, type SignInFutureBackupCodeVerifyParams, type SignInFutureCreateParams, type SignInFutureEmailCodeSendParams, type SignInFutureEmailCodeVerifyParams, type SignInFutureEmailLinkSendParams, type SignInFutureFinalizeParams, type SignInFutureMFAPhoneCodeVerifyParams, type SignInFuturePasswordParams, type SignInFuturePhoneCodeSendParams, type SignInFuturePhoneCodeVerifyParams, type SignInFutureResetPasswordSubmitParams, type SignInFutureResource, type SignInFutureSSOParams, type SignInFutureTOTPVerifyParams, type SignInFutureTicketParams, type SignInFutureWeb3Params, type SignInIdentifier, type SignInInitialValues, type SignInJSON, type SignInJSONSnapshot, type SignInModalProps, type SignInProps, type SignInRedirectOptions, type SignInResource, type SignInSecondFactor, type SignInSecondFactorJSON, type SignInSignal, type SignInSignalValue, type SignInStartEmailLinkFlowParams, type SignInStatus, type SignInStrategy, type SignInTheme, type SignOut, type SignOutCallback, type SignOutOptions, type SignUpAttributeField, type SignUpAuthenticateWithMetamaskParams, type SignUpAuthenticateWithWeb3Params, type SignUpButtonProps, type SignUpCreateParams, type SignUpData, type SignUpFallbackRedirectUrl, type SignUpField, type SignUpForceRedirectUrl, type SignUpFutureCreateParams, type SignUpFutureEmailCodeVerifyParams, type SignUpFutureFinalizeParams, type SignUpFuturePasswordParams, type SignUpFuturePhoneCodeSendParams, type SignUpFuturePhoneCodeVerifyParams, type SignUpFutureResource, type SignUpFutureSSOParams, type SignUpFutureTicketParams, type SignUpFutureUpdateParams, type SignUpFutureWeb3Params, type SignUpIdentificationField, type SignUpInitialValues, type SignUpJSON, type SignUpJSONSnapshot, type SignUpModalProps, type SignUpModes, type SignUpProps, type SignUpRedirectOptions, type SignUpResource, type SignUpSignal, type SignUpSignalValue, type SignUpStatus, type SignUpTheme, type SignUpUpdateParams, type SignUpVerifiableField, type SignUpVerificationJSON, type SignUpVerificationJSONSnapshot, type SignUpVerificationResource, type SignUpVerificationsJSON, type SignUpVerificationsJSONSnapshot, type SignUpVerificationsResource, type SignatureVerificationAttemptParam, type SignedInSessionResource, type SlackOauthProvider, type SnakeToCamel, type SpotifyOauthProvider, type StartEmailLinkFlowParams, type StartEnterpriseSSOLinkFlowParams, type State, type StateSelectors, type SubscriptionDetailsTheme, type TOTPAttempt, type TOTPFactor, type TOTPJSON, type TOTPResource, type TOTPStrategy, type TaskChooseOrganizationProps, type TaskChooseOrganizationTheme, type TasksRedirectOptions, type TelemetryCollector, type TelemetryEvent, type TelemetryEventRaw, type TelemetryLogEntry, type Theme, type TicketStrategy, type TiktokOauthProvider, type TokenJSON, type TokenJSONSnapshot, type TokenResource, type TransferableOption, type TransparentColor, type TwitchOauthProvider, type TwitterOauthProvider, type UnsubscribeCallback, type UpdateEnrollmentModeParams, type UpdateMembershipParams, type UpdateOrganizationMembershipParams, type UpdateOrganizationParams, type UpdatePasskeyParams, type UpdateUserParams, type UpdateUserPasswordParams, type UseAuthReturn, type UseSessionListReturn, type UseSessionReturn, type UseSignInReturn, type UseSignUpReturn, type UseUserReturn, type UserAvatarProps, type UserAvatarTheme, type UserButtonProps, type UserButtonTheme, type UserData, type UserDataJSON, type UserDataJSONSnapshot, type UserJSON, type UserJSONSnapshot, type UserOrganizationInvitationJSON, type UserOrganizationInvitationResource, type UserPreviewId, type UserProfileModalProps, type UserProfileProps, type UserProfileTheme, type UserResource, type UserSettingsJSON, type UserSettingsJSONSnapshot, type UserSettingsResource, type UserVerificationTheme, type UsernameIdentifier, type UsernameSettingsData, type ValidatePasswordCallbacks, type Variables, type VerificationAttemptParams, type VerificationJSON, type VerificationJSONSnapshot, type VerificationResource, type VerificationStatus, type VerificationStrategy, type VerifyTOTPParams, type VersionedJwtPayload, WEB3_PROVIDERS, type WaitlistJSON, type WaitlistModalProps, type WaitlistProps, type WaitlistResource, type WaitlistTheme, type Web3Attempt, type Web3Provider, type Web3ProviderData, type Web3SignatureConfig, type Web3SignatureFactor, type Web3Strategy, type Web3WalletIdentifier, type Web3WalletJSON, type Web3WalletJSONSnapshot, type Web3WalletResource, type Without, type WithoutRouting, type XOauthProvider, type XeroOauthProvider, type ZxcvbnResult, type __experimental_CheckoutButtonProps, type __experimental_CheckoutCacheState, type __experimental_CheckoutInstance, type __experimental_CheckoutOptions, type __experimental_PlanDetailsButtonProps, type __experimental_SubscriptionDetailsButtonProps, type __internal_CheckoutProps, type __internal_ComponentNavigationContext, type __internal_LocalizationResource, type __internal_OAuthConsentProps, type __internal_PlanDetailsProps, type __internal_SubscriptionDetailsProps, type __internal_UserVerificationModalProps, type __internal_UserVerificationProps, getOAuthProviderData, getWeb3ProviderData, sortedOAuthProviders };
|
package/dist/index.d.ts
CHANGED
@@ -65,7 +65,7 @@ type UserPreviewId = 'userButton' | 'personalWorkspace';
|
|
65
65
|
type OrganizationPreviewId = 'organizationSwitcherTrigger' | 'organizationList' | 'organizationSwitcherListedOrganization' | 'organizationSwitcherActiveOrganization' | 'taskChooseOrganization';
|
66
66
|
type CardActionId = 'havingTrouble' | 'alternativeMethods' | 'signUp' | 'signIn' | 'usePasskey' | 'waitlist' | 'signOut';
|
67
67
|
type MenuId = 'invitation' | 'member' | ProfileSectionId;
|
68
|
-
type SelectId = 'countryCode' | 'role' | '
|
68
|
+
type SelectId = 'countryCode' | 'role' | 'paymentMethod' | 'apiKeyExpiration';
|
69
69
|
|
70
70
|
interface Web3ProviderData {
|
71
71
|
provider: Web3Provider;
|
@@ -310,19 +310,19 @@ type BillingSubscriptionPlanPeriod = 'month' | 'annual';
|
|
310
310
|
/**
|
311
311
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
312
312
|
*/
|
313
|
-
interface
|
313
|
+
interface BillingPayerMethods {
|
314
314
|
/**
|
315
315
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
316
316
|
*/
|
317
|
-
|
317
|
+
initializePaymentMethod: (params: Exclude<InitializePaymentMethodParams, 'orgId'>) => Promise<BillingInitializedPaymentMethodResource>;
|
318
318
|
/**
|
319
319
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
320
320
|
*/
|
321
|
-
|
321
|
+
addPaymentMethod: (params: Exclude<AddPaymentMethodParams, 'orgId'>) => Promise<BillingPaymentMethodResource>;
|
322
322
|
/**
|
323
323
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
324
324
|
*/
|
325
|
-
|
325
|
+
getPaymentMethods: (params: Exclude<GetPaymentMethodsParams, 'orgId'>) => Promise<ClerkPaginatedResponse<BillingPaymentMethodResource>>;
|
326
326
|
}
|
327
327
|
/**
|
328
328
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
@@ -437,11 +437,11 @@ interface FeatureResource extends ClerkResource {
|
|
437
437
|
* The status of a payment source.
|
438
438
|
* @inline
|
439
439
|
*/
|
440
|
-
type
|
440
|
+
type BillingPaymentMethodStatus = 'active' | 'expired' | 'disconnected';
|
441
441
|
/**
|
442
442
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
443
443
|
*/
|
444
|
-
type
|
444
|
+
type GetPaymentMethodsParams = WithOptionalOrgType<ClerkPaginationParams>;
|
445
445
|
/**
|
446
446
|
* @inline
|
447
447
|
*
|
@@ -451,7 +451,7 @@ type PaymentGateway = 'stripe' | 'paypal';
|
|
451
451
|
/**
|
452
452
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
453
453
|
*/
|
454
|
-
type
|
454
|
+
type InitializePaymentMethodParams = WithOptionalOrgType<{
|
455
455
|
/**
|
456
456
|
* The payment gateway to use.
|
457
457
|
*/
|
@@ -460,7 +460,7 @@ type InitializePaymentSourceParams = WithOptionalOrgType<{
|
|
460
460
|
/**
|
461
461
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
462
462
|
*/
|
463
|
-
type
|
463
|
+
type AddPaymentMethodParams = WithOptionalOrgType<{
|
464
464
|
/**
|
465
465
|
* The payment gateway to use.
|
466
466
|
*/
|
@@ -473,17 +473,17 @@ type AddPaymentSourceParams = WithOptionalOrgType<{
|
|
473
473
|
/**
|
474
474
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
475
475
|
*/
|
476
|
-
type
|
476
|
+
type RemovePaymentMethodParams = WithOptionalOrgType<unknown>;
|
477
477
|
/**
|
478
478
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
479
479
|
*/
|
480
|
-
type
|
480
|
+
type MakeDefaultPaymentMethodParams = WithOptionalOrgType<unknown>;
|
481
481
|
/**
|
482
|
-
* The `
|
482
|
+
* The `BillingPaymentMethodResource` type represents a payment method for a checkout session.
|
483
483
|
*
|
484
484
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
485
485
|
*/
|
486
|
-
interface
|
486
|
+
interface BillingPaymentMethodResource extends ClerkResource {
|
487
487
|
/**
|
488
488
|
* The unique identifier for the payment method.
|
489
489
|
*/
|
@@ -493,9 +493,9 @@ interface BillingPaymentSourceResource extends ClerkResource {
|
|
493
493
|
*/
|
494
494
|
last4: string;
|
495
495
|
/**
|
496
|
-
* The type of payment method. For example, `'card'` or `'
|
496
|
+
* The type of payment method. For example, `'card'` or `'link'`.
|
497
497
|
*/
|
498
|
-
|
498
|
+
paymentType: 'card' | 'link';
|
499
499
|
/**
|
500
500
|
* The brand or type of card. For example, `'visa'` or `'mastercard'`.
|
501
501
|
*/
|
@@ -511,7 +511,7 @@ interface BillingPaymentSourceResource extends ClerkResource {
|
|
511
511
|
/**
|
512
512
|
* The current status of the payment method.
|
513
513
|
*/
|
514
|
-
status:
|
514
|
+
status: BillingPaymentMethodStatus;
|
515
515
|
/**
|
516
516
|
* The type of digital wallet, if applicable. For example, `'apple_pay'`, or `'google_pay'`.
|
517
517
|
*/
|
@@ -525,7 +525,7 @@ interface BillingPaymentSourceResource extends ClerkResource {
|
|
525
525
|
* @param params - The parameters for the remove operation.
|
526
526
|
* @returns A promise that resolves to a `DeletedObjectResource` object.
|
527
527
|
*/
|
528
|
-
remove: (params?:
|
528
|
+
remove: (params?: RemovePaymentMethodParams) => Promise<DeletedObjectResource>;
|
529
529
|
/**
|
530
530
|
* A function that sets this payment source as the default for the account. Accepts the following parameters:
|
531
531
|
* <ul>
|
@@ -535,12 +535,12 @@ interface BillingPaymentSourceResource extends ClerkResource {
|
|
535
535
|
* @param params - The parameters for the make default operation.
|
536
536
|
* @returns A promise that resolves to `null`.
|
537
537
|
*/
|
538
|
-
makeDefault: (params?:
|
538
|
+
makeDefault: (params?: MakeDefaultPaymentMethodParams) => Promise<null>;
|
539
539
|
}
|
540
540
|
/**
|
541
541
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
542
542
|
*/
|
543
|
-
interface
|
543
|
+
interface BillingInitializedPaymentMethodResource extends ClerkResource {
|
544
544
|
/**
|
545
545
|
* A client secret from an external payment provider (such as Stripe) used to complete the payment on the client-side.
|
546
546
|
*/
|
@@ -595,7 +595,7 @@ interface BillingPaymentResource extends ClerkResource {
|
|
595
595
|
/**
|
596
596
|
* The payment source being used for the payment, such as credit card or bank account.
|
597
597
|
*/
|
598
|
-
|
598
|
+
paymentMethod: BillingPaymentMethodResource;
|
599
599
|
/**
|
600
600
|
* The subscription item being paid for.
|
601
601
|
*/
|
@@ -688,7 +688,7 @@ interface BillingSubscriptionItemResource extends ClerkResource {
|
|
688
688
|
/**
|
689
689
|
* The unique identifier for the payment source being used for the subscription item.
|
690
690
|
*/
|
691
|
-
|
691
|
+
paymentMethodId: string;
|
692
692
|
/**
|
693
693
|
* The plan associated with the subscription item.
|
694
694
|
*/
|
@@ -928,9 +928,9 @@ interface BillingCheckoutResource extends ClerkResource {
|
|
928
928
|
*/
|
929
929
|
externalGatewayId: string;
|
930
930
|
/**
|
931
|
-
* The payment
|
931
|
+
* The payment method being used for the checkout, such as a credit card or bank account.
|
932
932
|
*/
|
933
|
-
|
933
|
+
paymentMethod?: BillingPaymentMethodResource;
|
934
934
|
/**
|
935
935
|
* The subscription plan details for the checkout.
|
936
936
|
*/
|
@@ -1902,7 +1902,7 @@ declare global {
|
|
1902
1902
|
*
|
1903
1903
|
* The ClerkJS SDK provides some helper [methods](#methods) on the `User` object to help retrieve and update user information and authentication status.
|
1904
1904
|
*/
|
1905
|
-
interface UserResource extends ClerkResource,
|
1905
|
+
interface UserResource extends ClerkResource, BillingPayerMethods {
|
1906
1906
|
id: string;
|
1907
1907
|
externalId: string | null;
|
1908
1908
|
primaryEmailAddressId: string | null;
|
@@ -2348,7 +2348,7 @@ declare global {
|
|
2348
2348
|
*
|
2349
2349
|
* @interface
|
2350
2350
|
*/
|
2351
|
-
interface OrganizationResource extends ClerkResource,
|
2351
|
+
interface OrganizationResource extends ClerkResource, BillingPayerMethods {
|
2352
2352
|
id: string;
|
2353
2353
|
name: string;
|
2354
2354
|
slug: string | null;
|
@@ -4043,21 +4043,21 @@ interface BillingPlanJSON extends ClerkResourceJSON {
|
|
4043
4043
|
/**
|
4044
4044
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
4045
4045
|
*/
|
4046
|
-
interface
|
4047
|
-
object: '
|
4046
|
+
interface BillingPaymentMethodJSON extends ClerkResourceJSON {
|
4047
|
+
object: 'commerce_payment_method';
|
4048
4048
|
id: string;
|
4049
4049
|
last4: string;
|
4050
|
-
|
4050
|
+
payment_type: 'card' | 'link';
|
4051
4051
|
card_type: string;
|
4052
4052
|
is_default: boolean;
|
4053
4053
|
is_removable: boolean;
|
4054
|
-
status:
|
4054
|
+
status: BillingPaymentMethodStatus;
|
4055
4055
|
wallet_type: string | null;
|
4056
4056
|
}
|
4057
4057
|
/**
|
4058
4058
|
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
|
4059
4059
|
*/
|
4060
|
-
interface
|
4060
|
+
interface BillingInitializedPaymentMethodJSON extends ClerkResourceJSON {
|
4061
4061
|
object: 'commerce_payment_source_initialize';
|
4062
4062
|
external_client_secret: string;
|
4063
4063
|
external_gateway_id: string;
|
@@ -4092,7 +4092,7 @@ interface BillingPaymentJSON extends ClerkResourceJSON {
|
|
4092
4092
|
paid_at?: number;
|
4093
4093
|
failed_at?: number;
|
4094
4094
|
updated_at: number;
|
4095
|
-
|
4095
|
+
payment_method: BillingPaymentMethodJSON;
|
4096
4096
|
subscription: BillingSubscriptionItemJSON;
|
4097
4097
|
subscription_item: BillingSubscriptionItemJSON;
|
4098
4098
|
charge_type: BillingPaymentChargeType;
|
@@ -4108,7 +4108,7 @@ interface BillingSubscriptionItemJSON extends ClerkResourceJSON {
|
|
4108
4108
|
credit?: {
|
4109
4109
|
amount: BillingMoneyAmountJSON;
|
4110
4110
|
};
|
4111
|
-
|
4111
|
+
payment_method_id: string;
|
4112
4112
|
plan: BillingPlanJSON;
|
4113
4113
|
plan_period: BillingSubscriptionPlanPeriod;
|
4114
4114
|
status: BillingSubscriptionStatus;
|
@@ -4179,7 +4179,7 @@ interface BillingCheckoutJSON extends ClerkResourceJSON {
|
|
4179
4179
|
id: string;
|
4180
4180
|
external_client_secret: string;
|
4181
4181
|
external_gateway_id: string;
|
4182
|
-
|
4182
|
+
payment_method?: BillingPaymentMethodJSON;
|
4183
4183
|
plan: BillingPlanJSON;
|
4184
4184
|
plan_period: BillingSubscriptionPlanPeriod;
|
4185
4185
|
plan_period_start?: number;
|
@@ -9499,4 +9499,4 @@ type InitialState = Serializable<{
|
|
9499
9499
|
factorVerificationAge: [number, number];
|
9500
9500
|
}>;
|
9501
9501
|
|
9502
|
-
export { type APIKeyResource, type APIKeysNamespace, type APIKeysProps, type APIKeysSettingsJSON, type APIKeysSettingsJSONSnapshot, type APIKeysSettingsResource, type APIKeysTheme, type ActClaim, type ActJWTClaim, type Actions, type ActiveSessionResource, type AddMemberParams, type AddPaymentSourceParams, type AfterMultiSessionSingleSignOutUrl, type AfterSignOutUrl, type AlertId, type AlphaColorScale, type ApiKeyJSON, type Appearance, type AppleOauthProvider, type AtlassianOauthProvider, type AttemptAffiliationVerificationParams, type AttemptEmailAddressVerificationParams, type AttemptFirstFactorParams, type AttemptPhoneNumberVerificationParams, type AttemptSecondFactorParams, type AttemptVerificationParams, type AttemptWeb3WalletVerificationParams, type Attribute, type AttributeData, type AttributeDataJSON, type Attributes, type AttributesJSON, type AuthConfigJSON, type AuthConfigJSONSnapshot, type AuthConfigResource, type AuthenticateWithBaseParams, type AuthenticateWithCoinbaseWalletParams, type AuthenticateWithGoogleOneTapParams, type AuthenticateWithMetamaskParams, type AuthenticateWithOKXWalletParams, type AuthenticateWithPasskeyParams, type AuthenticateWithPopupParams, type AuthenticateWithRedirectParams, type AuthenticateWithWeb3Params, type Autocomplete, type BackupCodeAttempt, type BackupCodeFactor, type BackupCodeJSON, type BackupCodeResource, type BackupCodeStrategy, type BaseTheme, type BaseThemeTaggedType, type BaseWeb3Provider, type BeforeEmitCallback, type BillingCheckoutJSON, type BillingCheckoutResource, type BillingCheckoutTotals, type BillingCheckoutTotalsJSON, type BillingInitializedPaymentSourceJSON, type BillingInitializedPaymentSourceResource, type BillingMoneyAmount, type BillingMoneyAmountJSON, type BillingNamespace, type BillingPayerJSON, type BillingPayerResource, type BillingPayerResourceType, type BillingPaymentChargeType, type BillingPaymentJSON, type BillingPaymentResource, type BillingPaymentSourceJSON, type BillingPaymentSourceMethods, type BillingPaymentSourceResource, type BillingPaymentSourceStatus, type BillingPaymentStatus, type BillingPlanJSON, type BillingPlanResource, type BillingStatementGroup, type BillingStatementGroupJSON, type BillingStatementJSON, type BillingStatementResource, type BillingStatementStatus, type BillingStatementTotals, type BillingStatementTotalsJSON, type BillingSubscriptionItemJSON, type BillingSubscriptionItemResource, type BillingSubscriptionJSON, type BillingSubscriptionPlanPeriod, type BillingSubscriptionResource, type BillingSubscriptionStatus, type BitbucketOauthProvider, type BoxOauthProvider, type BoxShadow, type BuiltInColors, type CamelToSnake, type CancelSubscriptionParams, type CaptchaAppearanceOptions, type CaptchaProvider, type CaptchaWidgetType, type CardActionId, type CheckAuthorization, type CheckAuthorizationFn, type CheckAuthorizationFromSessionClaims, type CheckAuthorizationParamsFromSessionClaims, type CheckAuthorizationParamsWithCustomPermissions, type CheckAuthorizationWithCustomPermissions, type CheckoutTheme, type Clerk, type ClerkAPIError, type ClerkAPIErrorJSON, type ClerkAPIResponseError, type ClerkAuthenticateWithWeb3Params, type ClerkEventPayload, type ClerkHostRouter, type ClerkJWTClaims, type ClerkOptions, type ClerkPaginatedResponse, type ClerkPaginationParams, type ClerkPaginationRequest, type ClerkResource, type ClerkResourceJSON, type ClerkResourceReloadParams, type ClerkRuntimeError, type ClerkStatus, type ClerkThemeOptions, type ClientJSON, type ClientJSONSnapshot, type ClientResource, type CodeVerificationAttemptParam, type CoinbaseOauthProvider, type CoinbaseWalletWeb3Provider, type Color, type ColorScale, type ColorScaleWithRequiredBase, type ColorString, type CommerceSettingsJSON, type CommerceSettingsJSONSnapshot, type CommerceSettingsResource, type ComplexityErrors, type ConfirmCheckoutParams, type CreateAPIKeyParams, type CreateBulkOrganizationInvitationParams, type CreateCheckoutParams, type CreateEmailAddressParams, type CreateEmailLinkFlowReturn, type CreateEnterpriseSSOLinkFlowReturn, type CreateExternalAccountParams, type CreateOrganizationInvitationParams, type CreateOrganizationModalProps, type CreateOrganizationParams, type CreateOrganizationProps, type CreateOrganizationTheme, type CreatePhoneNumberParams, type CreateWeb3WalletParams, type CredentialReturn, type CssColorOrAlphaScale, type CssColorOrScale, type CustomMenuItem, type CustomNavigation, type CustomOAuthStrategy, type CustomOauthProvider, type CustomPage, type DeepCamelToSnake, type DeepPartial, type DeepRequired, type DeepSnakeToCamel, type DeletedObjectJSON, type DeletedObjectResource, type DiscordOauthProvider, type DisplayConfigJSON, type DisplayConfigJSONSnapshot, type DisplayConfigResource, type DisplayThemeJSON, type DomainOrProxyUrl, type DropboxOauthProvider, type ElementObjectKey, type ElementState, type Elements, type ElementsConfig, type EmUnit, type EmailAddressIdentifier, type EmailAddressJSON, type EmailAddressJSONSnapshot, type EmailAddressOrPhoneNumberIdentifier, type EmailAddressResource, type EmailCodeAttempt, type EmailCodeConfig, type EmailCodeFactor, type EmailCodeStrategy, type EmailLinkConfig, type EmailLinkFactor, type EmailLinkStrategy, type EnstallOauthProvider, type EnterpriseAccountConnectionJSON, type EnterpriseAccountConnectionJSONSnapshot, type EnterpriseAccountConnectionResource, type EnterpriseAccountJSON, type EnterpriseAccountJSONSnapshot, type EnterpriseAccountResource, type EnterpriseProtocol, type EnterpriseProvider, type EnterpriseSSOConfig, type EnterpriseSSOFactor, type EnterpriseSSOSettings, type EnterpriseSSOStrategy, type EnvironmentJSON, type EnvironmentJSONSnapshot, type EnvironmentResource, type Errors, type ExternalAccountJSON, type ExternalAccountJSONSnapshot, type ExternalAccountResource, type FacebookOauthProvider, type FeatureJSON, type FeatureResource, type FieldError, type FieldErrors, type FieldId, type FirstNameAttribute, type FontFamily, type FontWeight, type ForPayerType, type GenerateSignature, type GenerateSignatureParams, type GetAPIKeysParams, type GetDomainsParams, type GetInvitationsParams, type GetMembersParams, type GetMembershipRequestParams, type GetMemberships, type GetOrganizationMemberships, type GetPaymentAttemptsParams, type GetPaymentSourcesParams, type GetPlansParams, type GetRolesParams, type GetStatementsParams, type GetSubscriptionParams, type GetToken, type GetTokenOptions, type GetUserOrganizationInvitationsParams, type GetUserOrganizationMembershipParams, type GetUserOrganizationSuggestionsParams, type GithubOauthProvider, type GitlabOauthProvider, type GoogleOauthProvider, type GoogleOneTapProps, type GoogleOneTapStrategy, type HandleEmailLinkVerificationParams, type HandleOAuthCallbackParams, type HandleSamlCallbackParams, type HexColor, type HexColorString, type HslaColor, type HslaColorString, type HubspotOauthProvider, type HuggingfaceOAuthProvider, type IdSelectors, type IdentificationLinkJSON, type IdentificationLinkJSONSnapshot, type IdentificationLinkResource, type ImageJSON, type ImageResource, type InitialState, type InitializePaymentSourceParams, type InstagramOauthProvider, type InstanceType, type InviteMemberParams, type InviteMembersParams, type JWT, type JWTClaims, type JWTHeader, type JoinWaitlistParams, type Jwt, type JwtHeader, type JwtPayload, type LastAuthenticationStrategy, type LastNameAttribute, type Layout, type LegacyRedirectProps, type LegalAcceptedAttribute, type LineOauthProvider, type LinearOauthProvider, type LinkedinOIDCOauthProvider, type LinkedinOauthProvider, type ListenerCallback, type LoadedClerk, type LocalizationResource, type LocalizationValue, type MakeDefaultPaymentSourceParams, type MenuId, type MetamaskWeb3Provider, type MicrosoftOauthProvider, type MultiDomainAndOrProxy, type MultiDomainAndOrProxyPrimitives, type NavigateOptions, type NewSubscriptionRedirectUrl, type NotionOauthProvider, type Nullable, type NullableSignInSignal, type NullableSignUpSignal, OAUTH_PROVIDERS, type OAuthConfig, type OAuthConsentTheme, type OAuthProvider, type OAuthProviderData, type OAuthProviderSettings, type OAuthProviders, type OAuthScope, type OAuthStrategy, type OKXWalletWeb3Provider, type OauthFactor, type OrganizationCustomPermissionKey, type OrganizationCustomRoleKey, type OrganizationDomainJSON, type OrganizationDomainResource, type OrganizationDomainVerification, type OrganizationDomainVerificationJSON, type OrganizationDomainVerificationStatus, type OrganizationEnrollmentMode, type OrganizationInvitationJSON, type OrganizationInvitationResource, type OrganizationInvitationStatus, type OrganizationJSON, type OrganizationJSONSnapshot, type OrganizationListProps, type OrganizationListTheme, type OrganizationMembershipJSON, type OrganizationMembershipJSONSnapshot, type OrganizationMembershipRequestJSON, type OrganizationMembershipRequestResource, type OrganizationMembershipResource, type OrganizationPermissionKey, type OrganizationPreviewId, type OrganizationProfileModalProps, type OrganizationProfileProps, type OrganizationProfileTheme, type OrganizationResource, type OrganizationSettingsJSON, type OrganizationSettingsJSONSnapshot, type OrganizationSettingsResource, type OrganizationSuggestionJSON, type OrganizationSuggestionResource, type OrganizationSuggestionStatus, type OrganizationSwitcherProps, type OrganizationSwitcherTheme, type OrganizationSystemPermissionKey, type OrganizationSystemPermissionPrefix, type OrganizationsJWTClaim, type Override, type PartialWithClerkResource, type PassKeyConfig, type PasskeyAttempt, type PasskeyFactor, type PasskeyJSON, type PasskeyJSONSnapshot, type PasskeyResource, type PasskeySettingsData, type PasskeyStrategy, type PasskeyVerificationResource, type PasswordAttempt, type PasswordAttribute, type PasswordFactor, type PasswordSettingsData, type PasswordStrategy, type PasswordStrength, type PasswordValidation, type PathValue, type PaymentGateway, type PendingSessionOptions, type PendingSessionResource, type PermissionJSON, type PermissionResource, type PhoneCodeAttempt, type PhoneCodeChannel, type PhoneCodeChannelData, type PhoneCodeConfig, type PhoneCodeFactor, type PhoneCodeProvider, type PhoneCodeSMSChannel, type PhoneCodeSecondFactorConfig, type PhoneCodeStrategy, type PhoneCodeWhatsAppChannel, type PhoneNumberIdentifier, type PhoneNumberJSON, type PhoneNumberJSONSnapshot, type PhoneNumberResource, type PhoneNumberVerificationStrategy, type PlanDetailTheme, type PreferredSignInStrategy, type PrepareAffiliationVerificationParams, type PrepareEmailAddressVerificationParams, type PrepareFirstFactorParams, type PreparePhoneNumberVerificationParams, type PrepareSecondFactorParams, type PrepareVerificationParams, type PrepareWeb3WalletVerificationParams, type PricingTableProps, type PricingTableTheme, type ProfilePageId, type ProfileSectionId, type ProtectProps, type PublicKeyCredentialCreationOptionsJSON, type PublicKeyCredentialCreationOptionsWithoutExtensions, type PublicKeyCredentialRequestOptionsJSON, type PublicKeyCredentialRequestOptionsWithoutExtensions, type PublicKeyCredentialWithAuthenticatorAssertionResponse, type PublicKeyCredentialWithAuthenticatorAttestationResponse, type PublicOrganizationDataJSON, type PublicUserData, type PublicUserDataJSON, type PublicUserDataJSONSnapshot, type PublishableKey, type ReauthorizeExternalAccountParams, type RecordToPath, type RedirectOptions, type RedirectUrlProp, type RemovePaymentSourceParams, type RemoveUserPasswordParams, type ResetPasswordCodeFactor, type ResetPasswordEmailCodeAttempt, type ResetPasswordEmailCodeFactor, type ResetPasswordEmailCodeFactorConfig, type ResetPasswordEmailCodeStrategy, type ResetPasswordParams, type ResetPasswordPhoneCodeAttempt, type ResetPasswordPhoneCodeFactor, type ResetPasswordPhoneCodeFactorConfig, type ResetPasswordPhoneCodeStrategy, type Resources, type ReverificationConfig, type RevokeAPIKeyParams, type RgbaColor, type RgbaColorString, type RoleJSON, type RoleResource, type RoutingMode, type RoutingOptions, type RoutingStrategy, SAML_IDPS, type SDKMetadata, type SamlAccountConnectionJSON, type SamlAccountConnectionJSONSnapshot, type SamlAccountConnectionResource, type SamlAccountJSON, type SamlAccountJSONSnapshot, type SamlAccountResource, type SamlConfig, type SamlFactor, type SamlIdp, type SamlIdpMap, type SamlIdpSlug, type SamlSettings, type SamlStrategy, type SelectId, type Serializable, type ServerGetToken, type ServerGetTokenOptions, type SessionActivity, type SessionActivityJSON, type SessionJSON, type SessionJSONSnapshot, type SessionResource, type SessionStatus, type SessionStatusClaim, type SessionTask, type SessionVerificationAfterMinutes, type SessionVerificationFirstFactor, type SessionVerificationJSON, type SessionVerificationLevel, type SessionVerificationResource, type SessionVerificationSecondFactor, type SessionVerificationStatus, type SessionVerificationTypes, type SessionVerifyAttemptFirstFactorParams, type SessionVerifyAttemptSecondFactorParams, type SessionVerifyCreateParams, type SessionVerifyPrepareFirstFactorParams, type SessionVerifyPrepareSecondFactorParams, type SessionWithActivitiesJSON, type SessionWithActivitiesResource, type SetActive, type SetActiveNavigate, type SetActiveParams, type SetOrganizationLogoParams, type SetProfileImageParams, type SetReservedForSecondFactorParams, type SharedSignedInAuthObjectProperties, type SignInButtonProps, type SignInCreateParams, type SignInData, type SignInFactor, type SignInFallbackRedirectUrl, type SignInFirstFactor, type SignInFirstFactorJSON, type SignInForceRedirectUrl, type SignInFutureBackupCodeVerifyParams, type SignInFutureCreateParams, type SignInFutureEmailCodeSendParams, type SignInFutureEmailCodeVerifyParams, type SignInFutureEmailLinkSendParams, type SignInFutureFinalizeParams, type SignInFutureMFAPhoneCodeVerifyParams, type SignInFuturePasswordParams, type SignInFuturePhoneCodeSendParams, type SignInFuturePhoneCodeVerifyParams, type SignInFutureResetPasswordSubmitParams, type SignInFutureResource, type SignInFutureSSOParams, type SignInFutureTOTPVerifyParams, type SignInFutureTicketParams, type SignInFutureWeb3Params, type SignInIdentifier, type SignInInitialValues, type SignInJSON, type SignInJSONSnapshot, type SignInModalProps, type SignInProps, type SignInRedirectOptions, type SignInResource, type SignInSecondFactor, type SignInSecondFactorJSON, type SignInSignal, type SignInSignalValue, type SignInStartEmailLinkFlowParams, type SignInStatus, type SignInStrategy, type SignInTheme, type SignOut, type SignOutCallback, type SignOutOptions, type SignUpAttributeField, type SignUpAuthenticateWithMetamaskParams, type SignUpAuthenticateWithWeb3Params, type SignUpButtonProps, type SignUpCreateParams, type SignUpData, type SignUpFallbackRedirectUrl, type SignUpField, type SignUpForceRedirectUrl, type SignUpFutureCreateParams, type SignUpFutureEmailCodeVerifyParams, type SignUpFutureFinalizeParams, type SignUpFuturePasswordParams, type SignUpFuturePhoneCodeSendParams, type SignUpFuturePhoneCodeVerifyParams, type SignUpFutureResource, type SignUpFutureSSOParams, type SignUpFutureTicketParams, type SignUpFutureUpdateParams, type SignUpFutureWeb3Params, type SignUpIdentificationField, type SignUpInitialValues, type SignUpJSON, type SignUpJSONSnapshot, type SignUpModalProps, type SignUpModes, type SignUpProps, type SignUpRedirectOptions, type SignUpResource, type SignUpSignal, type SignUpSignalValue, type SignUpStatus, type SignUpTheme, type SignUpUpdateParams, type SignUpVerifiableField, type SignUpVerificationJSON, type SignUpVerificationJSONSnapshot, type SignUpVerificationResource, type SignUpVerificationsJSON, type SignUpVerificationsJSONSnapshot, type SignUpVerificationsResource, type SignatureVerificationAttemptParam, type SignedInSessionResource, type SlackOauthProvider, type SnakeToCamel, type SpotifyOauthProvider, type StartEmailLinkFlowParams, type StartEnterpriseSSOLinkFlowParams, type State, type StateSelectors, type SubscriptionDetailsTheme, type TOTPAttempt, type TOTPFactor, type TOTPJSON, type TOTPResource, type TOTPStrategy, type TaskChooseOrganizationProps, type TaskChooseOrganizationTheme, type TasksRedirectOptions, type TelemetryCollector, type TelemetryEvent, type TelemetryEventRaw, type TelemetryLogEntry, type Theme, type TicketStrategy, type TiktokOauthProvider, type TokenJSON, type TokenJSONSnapshot, type TokenResource, type TransferableOption, type TransparentColor, type TwitchOauthProvider, type TwitterOauthProvider, type UnsubscribeCallback, type UpdateEnrollmentModeParams, type UpdateMembershipParams, type UpdateOrganizationMembershipParams, type UpdateOrganizationParams, type UpdatePasskeyParams, type UpdateUserParams, type UpdateUserPasswordParams, type UseAuthReturn, type UseSessionListReturn, type UseSessionReturn, type UseSignInReturn, type UseSignUpReturn, type UseUserReturn, type UserAvatarProps, type UserAvatarTheme, type UserButtonProps, type UserButtonTheme, type UserData, type UserDataJSON, type UserDataJSONSnapshot, type UserJSON, type UserJSONSnapshot, type UserOrganizationInvitationJSON, type UserOrganizationInvitationResource, type UserPreviewId, type UserProfileModalProps, type UserProfileProps, type UserProfileTheme, type UserResource, type UserSettingsJSON, type UserSettingsJSONSnapshot, type UserSettingsResource, type UserVerificationTheme, type UsernameIdentifier, type UsernameSettingsData, type ValidatePasswordCallbacks, type Variables, type VerificationAttemptParams, type VerificationJSON, type VerificationJSONSnapshot, type VerificationResource, type VerificationStatus, type VerificationStrategy, type VerifyTOTPParams, type VersionedJwtPayload, WEB3_PROVIDERS, type WaitlistJSON, type WaitlistModalProps, type WaitlistProps, type WaitlistResource, type WaitlistTheme, type Web3Attempt, type Web3Provider, type Web3ProviderData, type Web3SignatureConfig, type Web3SignatureFactor, type Web3Strategy, type Web3WalletIdentifier, type Web3WalletJSON, type Web3WalletJSONSnapshot, type Web3WalletResource, type Without, type WithoutRouting, type XOauthProvider, type XeroOauthProvider, type ZxcvbnResult, type __experimental_CheckoutButtonProps, type __experimental_CheckoutCacheState, type __experimental_CheckoutInstance, type __experimental_CheckoutOptions, type __experimental_PlanDetailsButtonProps, type __experimental_SubscriptionDetailsButtonProps, type __internal_CheckoutProps, type __internal_ComponentNavigationContext, type __internal_LocalizationResource, type __internal_OAuthConsentProps, type __internal_PlanDetailsProps, type __internal_SubscriptionDetailsProps, type __internal_UserVerificationModalProps, type __internal_UserVerificationProps, getOAuthProviderData, getWeb3ProviderData, sortedOAuthProviders };
|
9502
|
+
export { type APIKeyResource, type APIKeysNamespace, type APIKeysProps, type APIKeysSettingsJSON, type APIKeysSettingsJSONSnapshot, type APIKeysSettingsResource, type APIKeysTheme, type ActClaim, type ActJWTClaim, type Actions, type ActiveSessionResource, type AddMemberParams, type AddPaymentMethodParams, type AfterMultiSessionSingleSignOutUrl, type AfterSignOutUrl, type AlertId, type AlphaColorScale, type ApiKeyJSON, type Appearance, type AppleOauthProvider, type AtlassianOauthProvider, type AttemptAffiliationVerificationParams, type AttemptEmailAddressVerificationParams, type AttemptFirstFactorParams, type AttemptPhoneNumberVerificationParams, type AttemptSecondFactorParams, type AttemptVerificationParams, type AttemptWeb3WalletVerificationParams, type Attribute, type AttributeData, type AttributeDataJSON, type Attributes, type AttributesJSON, type AuthConfigJSON, type AuthConfigJSONSnapshot, type AuthConfigResource, type AuthenticateWithBaseParams, type AuthenticateWithCoinbaseWalletParams, type AuthenticateWithGoogleOneTapParams, type AuthenticateWithMetamaskParams, type AuthenticateWithOKXWalletParams, type AuthenticateWithPasskeyParams, type AuthenticateWithPopupParams, type AuthenticateWithRedirectParams, type AuthenticateWithWeb3Params, type Autocomplete, type BackupCodeAttempt, type BackupCodeFactor, type BackupCodeJSON, type BackupCodeResource, type BackupCodeStrategy, type BaseTheme, type BaseThemeTaggedType, type BaseWeb3Provider, type BeforeEmitCallback, type BillingCheckoutJSON, type BillingCheckoutResource, type BillingCheckoutTotals, type BillingCheckoutTotalsJSON, type BillingInitializedPaymentMethodJSON, type BillingInitializedPaymentMethodResource, type BillingMoneyAmount, type BillingMoneyAmountJSON, type BillingNamespace, type BillingPayerJSON, type BillingPayerMethods, type BillingPayerResource, type BillingPayerResourceType, type BillingPaymentChargeType, type BillingPaymentJSON, type BillingPaymentMethodJSON, type BillingPaymentMethodResource, type BillingPaymentMethodStatus, type BillingPaymentResource, type BillingPaymentStatus, type BillingPlanJSON, type BillingPlanResource, type BillingStatementGroup, type BillingStatementGroupJSON, type BillingStatementJSON, type BillingStatementResource, type BillingStatementStatus, type BillingStatementTotals, type BillingStatementTotalsJSON, type BillingSubscriptionItemJSON, type BillingSubscriptionItemResource, type BillingSubscriptionJSON, type BillingSubscriptionPlanPeriod, type BillingSubscriptionResource, type BillingSubscriptionStatus, type BitbucketOauthProvider, type BoxOauthProvider, type BoxShadow, type BuiltInColors, type CamelToSnake, type CancelSubscriptionParams, type CaptchaAppearanceOptions, type CaptchaProvider, type CaptchaWidgetType, type CardActionId, type CheckAuthorization, type CheckAuthorizationFn, type CheckAuthorizationFromSessionClaims, type CheckAuthorizationParamsFromSessionClaims, type CheckAuthorizationParamsWithCustomPermissions, type CheckAuthorizationWithCustomPermissions, type CheckoutTheme, type Clerk, type ClerkAPIError, type ClerkAPIErrorJSON, type ClerkAPIResponseError, type ClerkAuthenticateWithWeb3Params, type ClerkEventPayload, type ClerkHostRouter, type ClerkJWTClaims, type ClerkOptions, type ClerkPaginatedResponse, type ClerkPaginationParams, type ClerkPaginationRequest, type ClerkResource, type ClerkResourceJSON, type ClerkResourceReloadParams, type ClerkRuntimeError, type ClerkStatus, type ClerkThemeOptions, type ClientJSON, type ClientJSONSnapshot, type ClientResource, type CodeVerificationAttemptParam, type CoinbaseOauthProvider, type CoinbaseWalletWeb3Provider, type Color, type ColorScale, type ColorScaleWithRequiredBase, type ColorString, type CommerceSettingsJSON, type CommerceSettingsJSONSnapshot, type CommerceSettingsResource, type ComplexityErrors, type ConfirmCheckoutParams, type CreateAPIKeyParams, type CreateBulkOrganizationInvitationParams, type CreateCheckoutParams, type CreateEmailAddressParams, type CreateEmailLinkFlowReturn, type CreateEnterpriseSSOLinkFlowReturn, type CreateExternalAccountParams, type CreateOrganizationInvitationParams, type CreateOrganizationModalProps, type CreateOrganizationParams, type CreateOrganizationProps, type CreateOrganizationTheme, type CreatePhoneNumberParams, type CreateWeb3WalletParams, type CredentialReturn, type CssColorOrAlphaScale, type CssColorOrScale, type CustomMenuItem, type CustomNavigation, type CustomOAuthStrategy, type CustomOauthProvider, type CustomPage, type DeepCamelToSnake, type DeepPartial, type DeepRequired, type DeepSnakeToCamel, type DeletedObjectJSON, type DeletedObjectResource, type DiscordOauthProvider, type DisplayConfigJSON, type DisplayConfigJSONSnapshot, type DisplayConfigResource, type DisplayThemeJSON, type DomainOrProxyUrl, type DropboxOauthProvider, type ElementObjectKey, type ElementState, type Elements, type ElementsConfig, type EmUnit, type EmailAddressIdentifier, type EmailAddressJSON, type EmailAddressJSONSnapshot, type EmailAddressOrPhoneNumberIdentifier, type EmailAddressResource, type EmailCodeAttempt, type EmailCodeConfig, type EmailCodeFactor, type EmailCodeStrategy, type EmailLinkConfig, type EmailLinkFactor, type EmailLinkStrategy, type EnstallOauthProvider, type EnterpriseAccountConnectionJSON, type EnterpriseAccountConnectionJSONSnapshot, type EnterpriseAccountConnectionResource, type EnterpriseAccountJSON, type EnterpriseAccountJSONSnapshot, type EnterpriseAccountResource, type EnterpriseProtocol, type EnterpriseProvider, type EnterpriseSSOConfig, type EnterpriseSSOFactor, type EnterpriseSSOSettings, type EnterpriseSSOStrategy, type EnvironmentJSON, type EnvironmentJSONSnapshot, type EnvironmentResource, type Errors, type ExternalAccountJSON, type ExternalAccountJSONSnapshot, type ExternalAccountResource, type FacebookOauthProvider, type FeatureJSON, type FeatureResource, type FieldError, type FieldErrors, type FieldId, type FirstNameAttribute, type FontFamily, type FontWeight, type ForPayerType, type GenerateSignature, type GenerateSignatureParams, type GetAPIKeysParams, type GetDomainsParams, type GetInvitationsParams, type GetMembersParams, type GetMembershipRequestParams, type GetMemberships, type GetOrganizationMemberships, type GetPaymentAttemptsParams, type GetPaymentMethodsParams, type GetPlansParams, type GetRolesParams, type GetStatementsParams, type GetSubscriptionParams, type GetToken, type GetTokenOptions, type GetUserOrganizationInvitationsParams, type GetUserOrganizationMembershipParams, type GetUserOrganizationSuggestionsParams, type GithubOauthProvider, type GitlabOauthProvider, type GoogleOauthProvider, type GoogleOneTapProps, type GoogleOneTapStrategy, type HandleEmailLinkVerificationParams, type HandleOAuthCallbackParams, type HandleSamlCallbackParams, type HexColor, type HexColorString, type HslaColor, type HslaColorString, type HubspotOauthProvider, type HuggingfaceOAuthProvider, type IdSelectors, type IdentificationLinkJSON, type IdentificationLinkJSONSnapshot, type IdentificationLinkResource, type ImageJSON, type ImageResource, type InitialState, type InitializePaymentMethodParams, type InstagramOauthProvider, type InstanceType, type InviteMemberParams, type InviteMembersParams, type JWT, type JWTClaims, type JWTHeader, type JoinWaitlistParams, type Jwt, type JwtHeader, type JwtPayload, type LastAuthenticationStrategy, type LastNameAttribute, type Layout, type LegacyRedirectProps, type LegalAcceptedAttribute, type LineOauthProvider, type LinearOauthProvider, type LinkedinOIDCOauthProvider, type LinkedinOauthProvider, type ListenerCallback, type LoadedClerk, type LocalizationResource, type LocalizationValue, type MakeDefaultPaymentMethodParams, type MenuId, type MetamaskWeb3Provider, type MicrosoftOauthProvider, type MultiDomainAndOrProxy, type MultiDomainAndOrProxyPrimitives, type NavigateOptions, type NewSubscriptionRedirectUrl, type NotionOauthProvider, type Nullable, type NullableSignInSignal, type NullableSignUpSignal, OAUTH_PROVIDERS, type OAuthConfig, type OAuthConsentTheme, type OAuthProvider, type OAuthProviderData, type OAuthProviderSettings, type OAuthProviders, type OAuthScope, type OAuthStrategy, type OKXWalletWeb3Provider, type OauthFactor, type OrganizationCustomPermissionKey, type OrganizationCustomRoleKey, type OrganizationDomainJSON, type OrganizationDomainResource, type OrganizationDomainVerification, type OrganizationDomainVerificationJSON, type OrganizationDomainVerificationStatus, type OrganizationEnrollmentMode, type OrganizationInvitationJSON, type OrganizationInvitationResource, type OrganizationInvitationStatus, type OrganizationJSON, type OrganizationJSONSnapshot, type OrganizationListProps, type OrganizationListTheme, type OrganizationMembershipJSON, type OrganizationMembershipJSONSnapshot, type OrganizationMembershipRequestJSON, type OrganizationMembershipRequestResource, type OrganizationMembershipResource, type OrganizationPermissionKey, type OrganizationPreviewId, type OrganizationProfileModalProps, type OrganizationProfileProps, type OrganizationProfileTheme, type OrganizationResource, type OrganizationSettingsJSON, type OrganizationSettingsJSONSnapshot, type OrganizationSettingsResource, type OrganizationSuggestionJSON, type OrganizationSuggestionResource, type OrganizationSuggestionStatus, type OrganizationSwitcherProps, type OrganizationSwitcherTheme, type OrganizationSystemPermissionKey, type OrganizationSystemPermissionPrefix, type OrganizationsJWTClaim, type Override, type PartialWithClerkResource, type PassKeyConfig, type PasskeyAttempt, type PasskeyFactor, type PasskeyJSON, type PasskeyJSONSnapshot, type PasskeyResource, type PasskeySettingsData, type PasskeyStrategy, type PasskeyVerificationResource, type PasswordAttempt, type PasswordAttribute, type PasswordFactor, type PasswordSettingsData, type PasswordStrategy, type PasswordStrength, type PasswordValidation, type PathValue, type PaymentGateway, type PendingSessionOptions, type PendingSessionResource, type PermissionJSON, type PermissionResource, type PhoneCodeAttempt, type PhoneCodeChannel, type PhoneCodeChannelData, type PhoneCodeConfig, type PhoneCodeFactor, type PhoneCodeProvider, type PhoneCodeSMSChannel, type PhoneCodeSecondFactorConfig, type PhoneCodeStrategy, type PhoneCodeWhatsAppChannel, type PhoneNumberIdentifier, type PhoneNumberJSON, type PhoneNumberJSONSnapshot, type PhoneNumberResource, type PhoneNumberVerificationStrategy, type PlanDetailTheme, type PreferredSignInStrategy, type PrepareAffiliationVerificationParams, type PrepareEmailAddressVerificationParams, type PrepareFirstFactorParams, type PreparePhoneNumberVerificationParams, type PrepareSecondFactorParams, type PrepareVerificationParams, type PrepareWeb3WalletVerificationParams, type PricingTableProps, type PricingTableTheme, type ProfilePageId, type ProfileSectionId, type ProtectProps, type PublicKeyCredentialCreationOptionsJSON, type PublicKeyCredentialCreationOptionsWithoutExtensions, type PublicKeyCredentialRequestOptionsJSON, type PublicKeyCredentialRequestOptionsWithoutExtensions, type PublicKeyCredentialWithAuthenticatorAssertionResponse, type PublicKeyCredentialWithAuthenticatorAttestationResponse, type PublicOrganizationDataJSON, type PublicUserData, type PublicUserDataJSON, type PublicUserDataJSONSnapshot, type PublishableKey, type ReauthorizeExternalAccountParams, type RecordToPath, type RedirectOptions, type RedirectUrlProp, type RemovePaymentMethodParams, type RemoveUserPasswordParams, type ResetPasswordCodeFactor, type ResetPasswordEmailCodeAttempt, type ResetPasswordEmailCodeFactor, type ResetPasswordEmailCodeFactorConfig, type ResetPasswordEmailCodeStrategy, type ResetPasswordParams, type ResetPasswordPhoneCodeAttempt, type ResetPasswordPhoneCodeFactor, type ResetPasswordPhoneCodeFactorConfig, type ResetPasswordPhoneCodeStrategy, type Resources, type ReverificationConfig, type RevokeAPIKeyParams, type RgbaColor, type RgbaColorString, type RoleJSON, type RoleResource, type RoutingMode, type RoutingOptions, type RoutingStrategy, SAML_IDPS, type SDKMetadata, type SamlAccountConnectionJSON, type SamlAccountConnectionJSONSnapshot, type SamlAccountConnectionResource, type SamlAccountJSON, type SamlAccountJSONSnapshot, type SamlAccountResource, type SamlConfig, type SamlFactor, type SamlIdp, type SamlIdpMap, type SamlIdpSlug, type SamlSettings, type SamlStrategy, type SelectId, type Serializable, type ServerGetToken, type ServerGetTokenOptions, type SessionActivity, type SessionActivityJSON, type SessionJSON, type SessionJSONSnapshot, type SessionResource, type SessionStatus, type SessionStatusClaim, type SessionTask, type SessionVerificationAfterMinutes, type SessionVerificationFirstFactor, type SessionVerificationJSON, type SessionVerificationLevel, type SessionVerificationResource, type SessionVerificationSecondFactor, type SessionVerificationStatus, type SessionVerificationTypes, type SessionVerifyAttemptFirstFactorParams, type SessionVerifyAttemptSecondFactorParams, type SessionVerifyCreateParams, type SessionVerifyPrepareFirstFactorParams, type SessionVerifyPrepareSecondFactorParams, type SessionWithActivitiesJSON, type SessionWithActivitiesResource, type SetActive, type SetActiveNavigate, type SetActiveParams, type SetOrganizationLogoParams, type SetProfileImageParams, type SetReservedForSecondFactorParams, type SharedSignedInAuthObjectProperties, type SignInButtonProps, type SignInCreateParams, type SignInData, type SignInFactor, type SignInFallbackRedirectUrl, type SignInFirstFactor, type SignInFirstFactorJSON, type SignInForceRedirectUrl, type SignInFutureBackupCodeVerifyParams, type SignInFutureCreateParams, type SignInFutureEmailCodeSendParams, type SignInFutureEmailCodeVerifyParams, type SignInFutureEmailLinkSendParams, type SignInFutureFinalizeParams, type SignInFutureMFAPhoneCodeVerifyParams, type SignInFuturePasswordParams, type SignInFuturePhoneCodeSendParams, type SignInFuturePhoneCodeVerifyParams, type SignInFutureResetPasswordSubmitParams, type SignInFutureResource, type SignInFutureSSOParams, type SignInFutureTOTPVerifyParams, type SignInFutureTicketParams, type SignInFutureWeb3Params, type SignInIdentifier, type SignInInitialValues, type SignInJSON, type SignInJSONSnapshot, type SignInModalProps, type SignInProps, type SignInRedirectOptions, type SignInResource, type SignInSecondFactor, type SignInSecondFactorJSON, type SignInSignal, type SignInSignalValue, type SignInStartEmailLinkFlowParams, type SignInStatus, type SignInStrategy, type SignInTheme, type SignOut, type SignOutCallback, type SignOutOptions, type SignUpAttributeField, type SignUpAuthenticateWithMetamaskParams, type SignUpAuthenticateWithWeb3Params, type SignUpButtonProps, type SignUpCreateParams, type SignUpData, type SignUpFallbackRedirectUrl, type SignUpField, type SignUpForceRedirectUrl, type SignUpFutureCreateParams, type SignUpFutureEmailCodeVerifyParams, type SignUpFutureFinalizeParams, type SignUpFuturePasswordParams, type SignUpFuturePhoneCodeSendParams, type SignUpFuturePhoneCodeVerifyParams, type SignUpFutureResource, type SignUpFutureSSOParams, type SignUpFutureTicketParams, type SignUpFutureUpdateParams, type SignUpFutureWeb3Params, type SignUpIdentificationField, type SignUpInitialValues, type SignUpJSON, type SignUpJSONSnapshot, type SignUpModalProps, type SignUpModes, type SignUpProps, type SignUpRedirectOptions, type SignUpResource, type SignUpSignal, type SignUpSignalValue, type SignUpStatus, type SignUpTheme, type SignUpUpdateParams, type SignUpVerifiableField, type SignUpVerificationJSON, type SignUpVerificationJSONSnapshot, type SignUpVerificationResource, type SignUpVerificationsJSON, type SignUpVerificationsJSONSnapshot, type SignUpVerificationsResource, type SignatureVerificationAttemptParam, type SignedInSessionResource, type SlackOauthProvider, type SnakeToCamel, type SpotifyOauthProvider, type StartEmailLinkFlowParams, type StartEnterpriseSSOLinkFlowParams, type State, type StateSelectors, type SubscriptionDetailsTheme, type TOTPAttempt, type TOTPFactor, type TOTPJSON, type TOTPResource, type TOTPStrategy, type TaskChooseOrganizationProps, type TaskChooseOrganizationTheme, type TasksRedirectOptions, type TelemetryCollector, type TelemetryEvent, type TelemetryEventRaw, type TelemetryLogEntry, type Theme, type TicketStrategy, type TiktokOauthProvider, type TokenJSON, type TokenJSONSnapshot, type TokenResource, type TransferableOption, type TransparentColor, type TwitchOauthProvider, type TwitterOauthProvider, type UnsubscribeCallback, type UpdateEnrollmentModeParams, type UpdateMembershipParams, type UpdateOrganizationMembershipParams, type UpdateOrganizationParams, type UpdatePasskeyParams, type UpdateUserParams, type UpdateUserPasswordParams, type UseAuthReturn, type UseSessionListReturn, type UseSessionReturn, type UseSignInReturn, type UseSignUpReturn, type UseUserReturn, type UserAvatarProps, type UserAvatarTheme, type UserButtonProps, type UserButtonTheme, type UserData, type UserDataJSON, type UserDataJSONSnapshot, type UserJSON, type UserJSONSnapshot, type UserOrganizationInvitationJSON, type UserOrganizationInvitationResource, type UserPreviewId, type UserProfileModalProps, type UserProfileProps, type UserProfileTheme, type UserResource, type UserSettingsJSON, type UserSettingsJSONSnapshot, type UserSettingsResource, type UserVerificationTheme, type UsernameIdentifier, type UsernameSettingsData, type ValidatePasswordCallbacks, type Variables, type VerificationAttemptParams, type VerificationJSON, type VerificationJSONSnapshot, type VerificationResource, type VerificationStatus, type VerificationStrategy, type VerifyTOTPParams, type VersionedJwtPayload, WEB3_PROVIDERS, type WaitlistJSON, type WaitlistModalProps, type WaitlistProps, type WaitlistResource, type WaitlistTheme, type Web3Attempt, type Web3Provider, type Web3ProviderData, type Web3SignatureConfig, type Web3SignatureFactor, type Web3Strategy, type Web3WalletIdentifier, type Web3WalletJSON, type Web3WalletJSONSnapshot, type Web3WalletResource, type Without, type WithoutRouting, type XOauthProvider, type XeroOauthProvider, type ZxcvbnResult, type __experimental_CheckoutButtonProps, type __experimental_CheckoutCacheState, type __experimental_CheckoutInstance, type __experimental_CheckoutOptions, type __experimental_PlanDetailsButtonProps, type __experimental_SubscriptionDetailsButtonProps, type __internal_CheckoutProps, type __internal_ComponentNavigationContext, type __internal_LocalizationResource, type __internal_OAuthConsentProps, type __internal_PlanDetailsProps, type __internal_SubscriptionDetailsProps, type __internal_UserVerificationModalProps, type __internal_UserVerificationProps, getOAuthProviderData, getWeb3ProviderData, sortedOAuthProviders };
|