diff --git a/discord/enums.py b/discord/enums.py index 14aa54d460..91425b8cf8 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -224,6 +224,7 @@ class ChannelType(Enum): stage_voice = 13 directory = 14 forum = 15 + media = 16 def __str__(self): return self.name diff --git a/discord/types/channel.py b/discord/types/channel.py index 1b7fb1fe5e..822ee9283f 100644 --- a/discord/types/channel.py +++ b/discord/types/channel.py @@ -44,7 +44,7 @@ class PermissionOverwrite(TypedDict): deny: str -ChannelType = Literal[0, 1, 2, 3, 4, 5, 10, 11, 12, 13] +ChannelType = Literal[0, 1, 2, 3, 4, 5, 10, 11, 12, 13, 14, 15, 16] class _BaseChannel(TypedDict):