fix: optional ssl for kafka and optional tg user fields

This commit is contained in:
2025-04-10 11:19:46 +04:00
parent f083c19cdc
commit b5c8e35910
6 changed files with 16 additions and 20 deletions

View File

@@ -9,9 +9,9 @@ from schemas.user import UserSchema
class TgUserSchema(BaseSchema):
id: int
first_name: str
last_name: str
username: str
first_name: Optional[str]
last_name: Optional[str]
username: Optional[str]
class MessageFileSchema(BaseSchema):