@clerk/types 4.72.0 → 4.72.1-snapshot.v20250731223424
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 +26 -2
- package/dist/index.d.ts +26 -2
- 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' | 'taskSelectOrganization';
|
|
66
|
+
type CardActionId = 'havingTrouble' | 'alternativeMethods' | 'signUp' | 'signIn' | 'usePasskey' | 'waitlist' | 'signOut';
|
|
67
67
|
type MenuId = 'invitation' | 'member' | ProfileSectionId;
|
|
68
68
|
type SelectId = 'countryCode' | 'role' | 'paymentSource' | 'apiKeyExpiration';
|
|
69
69
|
|
|
@@ -5118,6 +5118,10 @@ 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;
|
|
5121
5125
|
userPreview: WithOptions<UserPreviewId>;
|
|
5122
5126
|
userPreviewAvatarContainer: WithOptions<UserPreviewId>;
|
|
5123
5127
|
userPreviewAvatarBox: WithOptions<UserPreviewId>;
|
|
@@ -7085,6 +7089,26 @@ type __internal_LocalizationResource = {
|
|
|
7085
7089
|
formFieldCaption__expiration__never: LocalizationValue;
|
|
7086
7090
|
formFieldCaption__expiration__expiresOn: LocalizationValue<'date'>;
|
|
7087
7091
|
};
|
|
7092
|
+
taskSelectOrganization: {
|
|
7093
|
+
title: LocalizationValue;
|
|
7094
|
+
subtitle: LocalizationValue;
|
|
7095
|
+
signOut: {
|
|
7096
|
+
actionText: LocalizationValue<'identifier'>;
|
|
7097
|
+
actionLink: LocalizationValue;
|
|
7098
|
+
};
|
|
7099
|
+
createOrganizationScreen: {
|
|
7100
|
+
formButtonSubmit: LocalizationValue;
|
|
7101
|
+
formButtonReset: LocalizationValue;
|
|
7102
|
+
action__uploadAvatar: LocalizationValue;
|
|
7103
|
+
avatarLabel: LocalizationValue;
|
|
7104
|
+
};
|
|
7105
|
+
selectOrganizationScreen: {
|
|
7106
|
+
suggestionsAcceptedLabel: LocalizationValue;
|
|
7107
|
+
action__suggestionsAccept: LocalizationValue;
|
|
7108
|
+
action__createOrganization: LocalizationValue;
|
|
7109
|
+
action__invitationAccept: LocalizationValue;
|
|
7110
|
+
};
|
|
7111
|
+
};
|
|
7088
7112
|
};
|
|
7089
7113
|
type WithParamName<T> = T & Partial<Record<`${keyof T & string}__${CamelToSnake<Exclude<FieldId, 'role'>>}`, LocalizationValue>>;
|
|
7090
7114
|
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' | 'taskSelectOrganization';
|
|
66
|
+
type CardActionId = 'havingTrouble' | 'alternativeMethods' | 'signUp' | 'signIn' | 'usePasskey' | 'waitlist' | 'signOut';
|
|
67
67
|
type MenuId = 'invitation' | 'member' | ProfileSectionId;
|
|
68
68
|
type SelectId = 'countryCode' | 'role' | 'paymentSource' | 'apiKeyExpiration';
|
|
69
69
|
|
|
@@ -5118,6 +5118,10 @@ 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;
|
|
5121
5125
|
userPreview: WithOptions<UserPreviewId>;
|
|
5122
5126
|
userPreviewAvatarContainer: WithOptions<UserPreviewId>;
|
|
5123
5127
|
userPreviewAvatarBox: WithOptions<UserPreviewId>;
|
|
@@ -7085,6 +7089,26 @@ type __internal_LocalizationResource = {
|
|
|
7085
7089
|
formFieldCaption__expiration__never: LocalizationValue;
|
|
7086
7090
|
formFieldCaption__expiration__expiresOn: LocalizationValue<'date'>;
|
|
7087
7091
|
};
|
|
7092
|
+
taskSelectOrganization: {
|
|
7093
|
+
title: LocalizationValue;
|
|
7094
|
+
subtitle: LocalizationValue;
|
|
7095
|
+
signOut: {
|
|
7096
|
+
actionText: LocalizationValue<'identifier'>;
|
|
7097
|
+
actionLink: LocalizationValue;
|
|
7098
|
+
};
|
|
7099
|
+
createOrganizationScreen: {
|
|
7100
|
+
formButtonSubmit: LocalizationValue;
|
|
7101
|
+
formButtonReset: LocalizationValue;
|
|
7102
|
+
action__uploadAvatar: LocalizationValue;
|
|
7103
|
+
avatarLabel: LocalizationValue;
|
|
7104
|
+
};
|
|
7105
|
+
selectOrganizationScreen: {
|
|
7106
|
+
suggestionsAcceptedLabel: LocalizationValue;
|
|
7107
|
+
action__suggestionsAccept: LocalizationValue;
|
|
7108
|
+
action__createOrganization: LocalizationValue;
|
|
7109
|
+
action__invitationAccept: LocalizationValue;
|
|
7110
|
+
};
|
|
7111
|
+
};
|
|
7088
7112
|
};
|
|
7089
7113
|
type WithParamName<T> = T & Partial<Record<`${keyof T & string}__${CamelToSnake<Exclude<FieldId, 'role'>>}`, LocalizationValue>>;
|
|
7090
7114
|
type UnstableErrors = WithParamName<{
|