File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
workos/types/user_management Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ class AuthenticationResponse(_AuthenticationResponseBase):
2929 impersonator : Optional [Impersonator ] = None
3030 organization_id : Optional [str ] = None
3131 user : User
32- oauth_tokens : Optional [OAuthTokens ] = None
3332
3433
3534class AuthKitAuthenticationResponse (AuthenticationResponse ):
3635 """Representation of a WorkOS User and Organization ID response."""
3736
3837 impersonator : Optional [Impersonator ] = None
38+ oauth_tokens : Optional [OAuthTokens ] = None
3939
4040
4141class RefreshTokenAuthenticationResponse (_AuthenticationResponseBase ):
Original file line number Diff line number Diff line change 1- from typing import Literal , List
1+ from typing import Literal , Sequence
2+
23from workos .types .workos_model import WorkOSModel
34
45OAuthTokensProvidersType = Literal [
@@ -16,4 +17,4 @@ class OAuthTokens(WorkOSModel):
1617 access_token : str
1718 refresh_token : str
1819 expires_at : int
19- scopes : List [str ]
20+ scopes : Sequence [str ]
You can’t perform that action at this time.
0 commit comments