diff --git a/models/data/core/auth_token.py b/models/data/core/auth_token.py index 22bc14b..43f0ebb 100644 --- a/models/data/core/auth_token.py +++ b/models/data/core/auth_token.py @@ -135,13 +135,13 @@ class CoreAuthTokenModel(BaseModel): auth: dict | None = Field( description = "any direct auth details like api keys or passwords; will differ for each client", - frozen = True, + frozen = False, default = None ) token: dict | None = Field( description = "the actual auth tokens of that client; will differ for each client", - frozen = True, + frozen = False, default = None )