diff options
Diffstat (limited to 'discord')
| -rw-r--r-- | discord/enums.py | 1 | ||||
| -rw-r--r-- | discord/types/webhook.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/discord/enums.py b/discord/enums.py index aaa59b25..f34d135c 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -417,6 +417,7 @@ class TeamMembershipState(Enum): class WebhookType(Enum): incoming = 1 channel_follower = 2 + application = 3 class ExpireBehaviour(Enum): remove_role = 0 diff --git a/discord/types/webhook.py b/discord/types/webhook.py index 851b5ec7..c526d750 100644 --- a/discord/types/webhook.py +++ b/discord/types/webhook.py @@ -41,7 +41,7 @@ class _WebhookOptional(TypedDict, total=False): token: str -WebhookType = Literal[1, 2] +WebhookType = Literal[1, 2, 3] class _FollowerWebhookOptional(TypedDict, total=False): |