diff options
Diffstat (limited to 'api/schemas')
-rw-r--r-- | api/schemas/auth_schemas.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/api/schemas/auth_schemas.py b/api/schemas/auth_schemas.py index d5b9a88..006a7c8 100644 --- a/api/schemas/auth_schemas.py +++ b/api/schemas/auth_schemas.py @@ -3,6 +3,7 @@ from pydantic import BaseModel class Token(BaseModel): access_token: str + refresh_token: str | None = None token_type: str |