Skip to content

Commit

Permalink
feat: move skip_http_redirect to options
Browse files Browse the repository at this point in the history
  • Loading branch information
joel authored and joel committed Jan 17, 2024
1 parent 8dca4a5 commit 0547a2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gotrue/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 0547a2a

Please sign in to comment.