Добавлен get_user_emotes
This commit is contained in:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user