diff --git a/boosty/types/post.py b/boosty/types/post.py index 75d0de6..2c2f0be 100644 --- a/boosty/types/post.py +++ b/boosty/types/post.py @@ -72,6 +72,8 @@ class FrameItem(BaseObject): class Post(PostCommon): int_id: int """Unknown, probably post.id to int""" + intId: int + """Unknown, probably post.id to int""" user: BlogUser """Blogger user object""" @@ -127,7 +129,9 @@ class Post(PostCommon): """TODO""" sortOrder: int """TODO""" - showcaseStatus: str + showcaseStatus: str | dict | list | None = None + """TODO""" + isShowcaseVisible: bool | None = None """TODO""" frame: dict[Literal["previous", "next"], FrameItem | None] | None = None """TODO""" diff --git a/boosty/types/users.py b/boosty/types/users.py index db67dd9..9e44847 100644 --- a/boosty/types/users.py +++ b/boosty/types/users.py @@ -8,6 +8,7 @@ class BaseUser(BaseObject): id: int name: str + isOfficial: bool | None = None # is Offical representor # nick: str hasAvatar: bool avatarUrl: HttpUrl | Literal[""]