Добавлен get_user_emotes

This commit is contained in:
2025-12-11 17:14:35 +03:00
parent a95ddc36d4
commit 9d80ad7d69
2 changed files with 55 additions and 1 deletions

View File

@ -492,7 +492,22 @@ class ChannelEmote(BaseModel):
name: str
images: ChannelEmoteImages
tier: int
emote_type: Literal['bitstier', 'follower', 'subscriptions']
emote_type: Literal[
'none',
'bitstier',
'follower',
'subscriptions',
'channelpoints',
'rewards',
'hypetrain',
'prime',
'turbo',
'smilies',
'globals',
'owl2019',
'twofactor',
'limitedtime'
]
format: list[Literal['animated', 'static']]
scale: list[Literal['1.0', '2.0', '3.0']]
theme_mode: list[Literal['dark', 'light']]
@ -585,3 +600,7 @@ class SharedChatSession(BaseModel):
model_config = ConfigDict(extra='forbid')
data: list[SharedChatSessionData]
class UserEmotes(ChannelEmotes):
pagination: Pagination | dict[Any, Any] | None = None