File tree Expand file tree Collapse file tree
packages/shared/src/types Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -169,9 +169,9 @@ export type SignInCreateParams = (
169169 transfer ?: boolean ;
170170 locale ?: string ;
171171 signUpIfMissing ?: boolean ;
172- captcha_token ?: string ;
173- captcha_error ?: unknown ;
174- captcha_widget_type ?: string | null ;
172+ captchaToken ?: string ;
173+ captchaError ?: unknown ;
174+ captchaWidgetType ?: string | null ;
175175} ;
176176
177177export type ResetPasswordParams = {
Original file line number Diff line number Diff line change @@ -52,19 +52,19 @@ export interface SignInFutureCreateParams {
5252 *
5353 * @internal
5454 */
55- captcha_token ?: string ;
55+ captchaToken ?: string ;
5656 /**
5757 * The captcha error if the captcha challenge failed.
5858 *
5959 * @internal
6060 */
61- captcha_error ?: unknown ;
61+ captchaError ?: unknown ;
6262 /**
6363 * The type of captcha widget used ('smart', 'invisible', or null).
6464 *
6565 * @internal
6666 */
67- captcha_widget_type ?: string | null ;
67+ captchaWidgetType ?: string | null ;
6868}
6969
7070export type SignInFuturePasswordParams = {
You can’t perform that action at this time.
0 commit comments