Browse Source

[types] Update typings to match API

pull/7492/head
Nadir Chowdhury 3 years ago
committed by GitHub
parent
commit
8269e99a7a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/types/components.py
  2. 21
      discord/types/embed.py
  3. 2
      discord/types/guild.py

2
discord/types/components.py

@ -27,7 +27,7 @@ from __future__ import annotations
from typing import List, Literal, TypedDict, Union
from .emoji import PartialEmoji
ComponentType = Literal[1, 2, 3]
ComponentType = Literal[1, 2, 3, 4]
ButtonStyle = Literal[1, 2, 3, 4, 5]
TextStyle = Literal[1, 2]

21
discord/types/embed.py

@ -43,13 +43,16 @@ class EmbedField(_EmbedFieldOptional):
value: str
class EmbedThumbnail(TypedDict, total=False):
url: str
class _EmbedThumbnailOptional(TypedDict, total=False):
proxy_url: str
height: int
width: int
class EmbedThumbnail(_EmbedThumbnailOptional):
url: str
class EmbedVideo(TypedDict, total=False):
url: str
proxy_url: str
@ -57,25 +60,31 @@ class EmbedVideo(TypedDict, total=False):
width: int
class EmbedImage(TypedDict, total=False):
url: str
class _EmbedImageOptional(TypedDict, total=False):
proxy_url: str
height: int
width: int
class EmbedImage(_EmbedImageOptional):
url: str
class EmbedProvider(TypedDict, total=False):
name: str
url: str
class EmbedAuthor(TypedDict, total=False):
name: str
class _EmbedAuthorOptional(TypedDict, total=False):
url: str
icon_url: str
proxy_icon_url: str
class EmbedAuthor(_EmbedAuthorOptional):
name: str
EmbedType = Literal['rich', 'image', 'video', 'gifv', 'article', 'link']

2
discord/types/guild.py

@ -32,6 +32,7 @@ from .role import Role
from .member import Member
from .emoji import Emoji
from .user import User
from .sticker import GuildSticker
from .threads import Thread
@ -107,6 +108,7 @@ class _BaseGuildPreview(UnavailableGuild):
splash: Optional[str]
discovery_splash: Optional[str]
emojis: List[Emoji]
stickers: List[GuildSticker]
features: List[GuildFeature]
description: Optional[str]

Loading…
Cancel
Save