Skip to content

Commit

Permalink
optional last_sign_in_at in UserIdentity type
Browse files Browse the repository at this point in the history
  • Loading branch information
lmoj committed May 16, 2023
1 parent 736f334 commit 6fef36a
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 @@ -120,7 +120,7 @@ class UserIdentity(BaseModel):
identity_data: Dict[str, Any]
provider: str
created_at: datetime
last_sign_in_at: datetime
last_sign_in_at: Union[datetime, None] = None
updated_at: Union[datetime, None] = None


Expand Down

0 comments on commit 6fef36a

Please sign in to comment.