@clerk/types 4.73.0-snapshot.v20250806121921 → 4.73.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2 -28
- package/dist/index.d.ts +2 -28
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -62,8 +62,8 @@ type FieldId = 'firstName' | 'lastName' | 'name' | 'slug' | 'emailAddress' | 'ph
|
|
|
62
62
|
type ProfileSectionId = 'profile' | 'username' | 'emailAddresses' | 'phoneNumbers' | 'connectedAccounts' | 'enterpriseAccounts' | 'web3Wallets' | 'password' | 'passkeys' | 'mfa' | 'danger' | 'activeDevices' | 'organizationProfile' | 'organizationDanger' | 'organizationDomains' | 'manageVerifiedDomains' | 'subscriptionsList' | 'paymentSources';
|
|
63
63
|
type ProfilePageId = 'account' | 'security' | 'organizationGeneral' | 'organizationMembers' | 'billing';
|
|
64
64
|
type UserPreviewId = 'userButton' | 'personalWorkspace';
|
|
65
|
-
type OrganizationPreviewId = 'organizationSwitcherTrigger' | 'organizationList' | 'organizationSwitcherListedOrganization' | 'organizationSwitcherActiveOrganization'
|
|
66
|
-
type CardActionId = 'havingTrouble' | 'alternativeMethods' | 'signUp' | 'signIn' | 'usePasskey' | 'waitlist'
|
|
65
|
+
type OrganizationPreviewId = 'organizationSwitcherTrigger' | 'organizationList' | 'organizationSwitcherListedOrganization' | 'organizationSwitcherActiveOrganization';
|
|
66
|
+
type CardActionId = 'havingTrouble' | 'alternativeMethods' | 'signUp' | 'signIn' | 'usePasskey' | 'waitlist';
|
|
67
67
|
type MenuId = 'invitation' | 'member' | ProfileSectionId;
|
|
68
68
|
type SelectId = 'countryCode' | 'role' | 'paymentSource' | 'apiKeyExpiration';
|
|
69
69
|
|
|
@@ -5118,10 +5118,6 @@ type ElementsConfig = {
|
|
|
5118
5118
|
organizationListPreviewButton: WithOptions;
|
|
5119
5119
|
organizationListPreviewItemActionButton: WithOptions;
|
|
5120
5120
|
organizationListCreateOrganizationActionButton: WithOptions;
|
|
5121
|
-
taskSelectOrganizationPreviewItem: WithOptions;
|
|
5122
|
-
taskSelectOrganizationPreviewItems: WithOptions;
|
|
5123
|
-
taskSelectOrganizationCreateOrganizationActionButton: WithOptions;
|
|
5124
|
-
taskSelectOrganizationPreviewButton: WithOptions;
|
|
5125
5121
|
userPreview: WithOptions<UserPreviewId>;
|
|
5126
5122
|
userPreviewAvatarContainer: WithOptions<UserPreviewId>;
|
|
5127
5123
|
userPreviewAvatarBox: WithOptions<UserPreviewId>;
|
|
@@ -7089,28 +7085,6 @@ type __internal_LocalizationResource = {
|
|
|
7089
7085
|
formFieldCaption__expiration__never: LocalizationValue;
|
|
7090
7086
|
formFieldCaption__expiration__expiresOn: LocalizationValue<'date'>;
|
|
7091
7087
|
};
|
|
7092
|
-
taskSelectOrganization: {
|
|
7093
|
-
title: LocalizationValue;
|
|
7094
|
-
subtitle: LocalizationValue;
|
|
7095
|
-
signOut: {
|
|
7096
|
-
actionText: LocalizationValue<'identifier'>;
|
|
7097
|
-
actionLink: LocalizationValue;
|
|
7098
|
-
};
|
|
7099
|
-
createOrganization: {
|
|
7100
|
-
title: LocalizationValue;
|
|
7101
|
-
subtitle: LocalizationValue;
|
|
7102
|
-
formButtonSubmit: LocalizationValue;
|
|
7103
|
-
formButtonReset: LocalizationValue;
|
|
7104
|
-
};
|
|
7105
|
-
selectOrganization: {
|
|
7106
|
-
title: LocalizationValue;
|
|
7107
|
-
subtitle: LocalizationValue;
|
|
7108
|
-
suggestionsAcceptedLabel: LocalizationValue;
|
|
7109
|
-
action__suggestionsAccept: LocalizationValue;
|
|
7110
|
-
action__createOrganization: LocalizationValue;
|
|
7111
|
-
action__invitationAccept: LocalizationValue;
|
|
7112
|
-
};
|
|
7113
|
-
};
|
|
7114
7088
|
};
|
|
7115
7089
|
type WithParamName<T> = T & Partial<Record<`${keyof T & string}__${CamelToSnake<Exclude<FieldId, 'role'>>}`, LocalizationValue>>;
|
|
7116
7090
|
type UnstableErrors = WithParamName<{
|
package/dist/index.d.ts
CHANGED
|
@@ -62,8 +62,8 @@ type FieldId = 'firstName' | 'lastName' | 'name' | 'slug' | 'emailAddress' | 'ph
|
|
|
62
62
|
type ProfileSectionId = 'profile' | 'username' | 'emailAddresses' | 'phoneNumbers' | 'connectedAccounts' | 'enterpriseAccounts' | 'web3Wallets' | 'password' | 'passkeys' | 'mfa' | 'danger' | 'activeDevices' | 'organizationProfile' | 'organizationDanger' | 'organizationDomains' | 'manageVerifiedDomains' | 'subscriptionsList' | 'paymentSources';
|
|
63
63
|
type ProfilePageId = 'account' | 'security' | 'organizationGeneral' | 'organizationMembers' | 'billing';
|
|
64
64
|
type UserPreviewId = 'userButton' | 'personalWorkspace';
|
|
65
|
-
type OrganizationPreviewId = 'organizationSwitcherTrigger' | 'organizationList' | 'organizationSwitcherListedOrganization' | 'organizationSwitcherActiveOrganization'
|
|
66
|
-
type CardActionId = 'havingTrouble' | 'alternativeMethods' | 'signUp' | 'signIn' | 'usePasskey' | 'waitlist'
|
|
65
|
+
type OrganizationPreviewId = 'organizationSwitcherTrigger' | 'organizationList' | 'organizationSwitcherListedOrganization' | 'organizationSwitcherActiveOrganization';
|
|
66
|
+
type CardActionId = 'havingTrouble' | 'alternativeMethods' | 'signUp' | 'signIn' | 'usePasskey' | 'waitlist';
|
|
67
67
|
type MenuId = 'invitation' | 'member' | ProfileSectionId;
|
|
68
68
|
type SelectId = 'countryCode' | 'role' | 'paymentSource' | 'apiKeyExpiration';
|
|
69
69
|
|
|
@@ -5118,10 +5118,6 @@ type ElementsConfig = {
|
|
|
5118
5118
|
organizationListPreviewButton: WithOptions;
|
|
5119
5119
|
organizationListPreviewItemActionButton: WithOptions;
|
|
5120
5120
|
organizationListCreateOrganizationActionButton: WithOptions;
|
|
5121
|
-
taskSelectOrganizationPreviewItem: WithOptions;
|
|
5122
|
-
taskSelectOrganizationPreviewItems: WithOptions;
|
|
5123
|
-
taskSelectOrganizationCreateOrganizationActionButton: WithOptions;
|
|
5124
|
-
taskSelectOrganizationPreviewButton: WithOptions;
|
|
5125
5121
|
userPreview: WithOptions<UserPreviewId>;
|
|
5126
5122
|
userPreviewAvatarContainer: WithOptions<UserPreviewId>;
|
|
5127
5123
|
userPreviewAvatarBox: WithOptions<UserPreviewId>;
|
|
@@ -7089,28 +7085,6 @@ type __internal_LocalizationResource = {
|
|
|
7089
7085
|
formFieldCaption__expiration__never: LocalizationValue;
|
|
7090
7086
|
formFieldCaption__expiration__expiresOn: LocalizationValue<'date'>;
|
|
7091
7087
|
};
|
|
7092
|
-
taskSelectOrganization: {
|
|
7093
|
-
title: LocalizationValue;
|
|
7094
|
-
subtitle: LocalizationValue;
|
|
7095
|
-
signOut: {
|
|
7096
|
-
actionText: LocalizationValue<'identifier'>;
|
|
7097
|
-
actionLink: LocalizationValue;
|
|
7098
|
-
};
|
|
7099
|
-
createOrganization: {
|
|
7100
|
-
title: LocalizationValue;
|
|
7101
|
-
subtitle: LocalizationValue;
|
|
7102
|
-
formButtonSubmit: LocalizationValue;
|
|
7103
|
-
formButtonReset: LocalizationValue;
|
|
7104
|
-
};
|
|
7105
|
-
selectOrganization: {
|
|
7106
|
-
title: LocalizationValue;
|
|
7107
|
-
subtitle: LocalizationValue;
|
|
7108
|
-
suggestionsAcceptedLabel: LocalizationValue;
|
|
7109
|
-
action__suggestionsAccept: LocalizationValue;
|
|
7110
|
-
action__createOrganization: LocalizationValue;
|
|
7111
|
-
action__invitationAccept: LocalizationValue;
|
|
7112
|
-
};
|
|
7113
|
-
};
|
|
7114
7088
|
};
|
|
7115
7089
|
type WithParamName<T> = T & Partial<Record<`${keyof T & string}__${CamelToSnake<Exclude<FieldId, 'role'>>}`, LocalizationValue>>;
|
|
7116
7090
|
type UnstableErrors = WithParamName<{
|