From 0547a2a740bbf7620331cf371b12f42a3dacc801 Mon Sep 17 00:00:00 2001 From: joel Date: Wed, 17 Jan 2024 13:40:38 +0800 Subject: [PATCH] feat: move skip_http_redirect to options --- gotrue/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gotrue/types.py b/gotrue/types.py index b4ab5968..8b5e7fd6 100644 --- a/gotrue/types.py +++ b/gotrue/types.py @@ -326,13 +326,13 @@ class SignInWithOAuthCredentials(TypedDict): class SignInWithSSOCredentials(TypedDict): provider_id: NotRequired[str] domain: NotRequired[str] - skip_http_redirect: NotRequired[str] options: NotRequired[SignInWithSSOOptions] class SignInWithSSOOptions(TypedDict): redirect_to: NotRequired[str] captcha_token: NotRequired[str] + skip_http_redirect: NotRequired[str] class VerifyOtpParamsOptions(TypedDict):