Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 6fef36a

Browse files
committed
optional last_sign_in_at in UserIdentity type
1 parent 736f334 commit 6fef36a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gotrue/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class UserIdentity(BaseModel):
120120
identity_data: Dict[str, Any]
121121
provider: str
122122
created_at: datetime
123-
last_sign_in_at: datetime
123+
last_sign_in_at: Union[datetime, None] = None
124124
updated_at: Union[datetime, None] = None
125125

126126

0 commit comments

Comments
 (0)