🐛 Fixed incorrect model fields

This commit is contained in:
Oskar Dudziński
2025-05-23 10:39:49 +02:00
committed by GitHub
parent 13b3c8b03b
commit f32bab434c
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ class AuthUser(BaseModel):
postalcode: Optional[str]
usState: Optional[str]
phoneNumber: Optional[str]
birthday: Optional[str]
birthday: Optional[int]
channelId: int
parentId: int
acceptedEULA: bool
+2 -2
View File
@@ -67,7 +67,7 @@ class Video(BaseModel):
id: int
title: str
cover: str
vibrantColor: str
vibrantColor: Optional[str] = None
videoCover: Optional[str] = None
id: int
@@ -77,7 +77,7 @@ class Video(BaseModel):
streamStartDate: Optional[datetime] = None
imagePath: Optional[str] = None
imageId: str
vibrantColor: str
vibrantColor: Optional[str] = None
duration: int
quality: str
streamReady: bool