@clerk/types 4.59.0 → 4.59.1-snapshot.v20250520075007
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 +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2772,6 +2772,7 @@ interface AuthConfigJSON extends ClerkResourceJSON {
|
|
|
2772
2772
|
single_session_mode: boolean;
|
|
2773
2773
|
claimed_at: number | null;
|
|
2774
2774
|
reverification: boolean;
|
|
2775
|
+
preferred_channels?: Record<string, PhoneCodeChannel>;
|
|
2775
2776
|
}
|
|
2776
2777
|
interface VerificationJSON extends ClerkResourceJSON {
|
|
2777
2778
|
status: VerificationStatus;
|
|
@@ -3405,6 +3406,7 @@ type ElementsConfig = {
|
|
|
3405
3406
|
checkoutSuccessBadge: WithOptions;
|
|
3406
3407
|
checkoutSuccessTitle: WithOptions;
|
|
3407
3408
|
checkoutSuccessDescription: WithOptions;
|
|
3409
|
+
checkoutSuccessHighlight: WithOptions;
|
|
3408
3410
|
otpCodeField: WithOptions;
|
|
3409
3411
|
otpCodeFieldInputs: WithOptions;
|
|
3410
3412
|
otpCodeFieldInput: WithOptions;
|
|
@@ -4035,6 +4037,10 @@ interface AuthConfigResource extends ClerkResource {
|
|
|
4035
4037
|
* Whether Reverification is enabled at the instance level.
|
|
4036
4038
|
*/
|
|
4037
4039
|
reverification: boolean;
|
|
4040
|
+
/**
|
|
4041
|
+
* Preferred channels for phone code providers.
|
|
4042
|
+
*/
|
|
4043
|
+
preferredChannels: Record<string, PhoneCodeChannel> | null;
|
|
4038
4044
|
__internal_toSnapshot: () => AuthConfigJSONSnapshot;
|
|
4039
4045
|
}
|
|
4040
4046
|
|
|
@@ -4163,6 +4169,7 @@ type _LocalizationResource = {
|
|
|
4163
4169
|
signInEnterPasswordTitle: LocalizationValue;
|
|
4164
4170
|
backButton: LocalizationValue;
|
|
4165
4171
|
footerActionLink__useAnotherMethod: LocalizationValue;
|
|
4172
|
+
footerActionLink__alternativePhoneCodeProvider: LocalizationValue;
|
|
4166
4173
|
badge__primary: LocalizationValue;
|
|
4167
4174
|
badge__thisDevice: LocalizationValue;
|
|
4168
4175
|
badge__userDevice: LocalizationValue;
|
package/dist/index.d.ts
CHANGED
|
@@ -2772,6 +2772,7 @@ interface AuthConfigJSON extends ClerkResourceJSON {
|
|
|
2772
2772
|
single_session_mode: boolean;
|
|
2773
2773
|
claimed_at: number | null;
|
|
2774
2774
|
reverification: boolean;
|
|
2775
|
+
preferred_channels?: Record<string, PhoneCodeChannel>;
|
|
2775
2776
|
}
|
|
2776
2777
|
interface VerificationJSON extends ClerkResourceJSON {
|
|
2777
2778
|
status: VerificationStatus;
|
|
@@ -3405,6 +3406,7 @@ type ElementsConfig = {
|
|
|
3405
3406
|
checkoutSuccessBadge: WithOptions;
|
|
3406
3407
|
checkoutSuccessTitle: WithOptions;
|
|
3407
3408
|
checkoutSuccessDescription: WithOptions;
|
|
3409
|
+
checkoutSuccessHighlight: WithOptions;
|
|
3408
3410
|
otpCodeField: WithOptions;
|
|
3409
3411
|
otpCodeFieldInputs: WithOptions;
|
|
3410
3412
|
otpCodeFieldInput: WithOptions;
|
|
@@ -4035,6 +4037,10 @@ interface AuthConfigResource extends ClerkResource {
|
|
|
4035
4037
|
* Whether Reverification is enabled at the instance level.
|
|
4036
4038
|
*/
|
|
4037
4039
|
reverification: boolean;
|
|
4040
|
+
/**
|
|
4041
|
+
* Preferred channels for phone code providers.
|
|
4042
|
+
*/
|
|
4043
|
+
preferredChannels: Record<string, PhoneCodeChannel> | null;
|
|
4038
4044
|
__internal_toSnapshot: () => AuthConfigJSONSnapshot;
|
|
4039
4045
|
}
|
|
4040
4046
|
|
|
@@ -4163,6 +4169,7 @@ type _LocalizationResource = {
|
|
|
4163
4169
|
signInEnterPasswordTitle: LocalizationValue;
|
|
4164
4170
|
backButton: LocalizationValue;
|
|
4165
4171
|
footerActionLink__useAnotherMethod: LocalizationValue;
|
|
4172
|
+
footerActionLink__alternativePhoneCodeProvider: LocalizationValue;
|
|
4166
4173
|
badge__primary: LocalizationValue;
|
|
4167
4174
|
badge__thisDevice: LocalizationValue;
|
|
4168
4175
|
badge__userDevice: LocalizationValue;
|