From 3f4f860d48e11558f8d4e089b78fe476c14fbaf5 Mon Sep 17 00:00:00 2001 From: Wamy <25761442+Wamy-Dev@users.noreply.github.com> Date: Sun, 29 Dec 2024 11:00:08 -0600 Subject: [PATCH] feat: adds banned_until to user type --- supabase_auth/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supabase_auth/types.py b/supabase_auth/types.py index 86bda3e2..014284ba 100644 --- a/supabase_auth/types.py +++ b/supabase_auth/types.py @@ -222,7 +222,7 @@ class User(BaseModel): identities: Optional[List[UserIdentity]] = None is_anonymous: bool = False factors: Optional[List[Factor]] = None - + banned_until: Optional[datetime] = None class UserAttributes(TypedDict): email: NotRequired[str]