Add WebhookType.application
This commit is contained in:
@ -417,6 +417,7 @@ class TeamMembershipState(Enum):
|
||||
class WebhookType(Enum):
|
||||
incoming = 1
|
||||
channel_follower = 2
|
||||
application = 3
|
||||
|
||||
class ExpireBehaviour(Enum):
|
||||
remove_role = 0
|
||||
|
@ -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):
|
||||
|
Reference in New Issue
Block a user