Browse Source

Add WebhookType.application

pull/6997/head
Rapptz 4 years ago
parent
commit
267fad9180
  1. 1
      discord/enums.py
  2. 2
      discord/types/webhook.py
  3. 6
      docs/api.rst

1
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

2
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):

6
docs/api.rst

@ -2018,6 +2018,12 @@ of :class:`enum.Enum`.
Represents a webhook that is internally managed by Discord, used for following channels.
.. attribute:: application
Represents a webhook that is used for interactions or applications.
.. versionadded:: 2.0
.. class:: ExpireBehaviour
Represents the behaviour the :class:`Integration` should perform

Loading…
Cancel
Save