We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53d6c8f commit 567b3a7Copy full SHA for 567b3a7
interactions/models/discord/enums.py
@@ -382,6 +382,10 @@ class MessageType(CursedIntEnum):
382
STAGE_SPEAKER = 29
383
STAGE_TOPIC = 31
384
GUILD_APPLICATION_PREMIUM_SUBSCRIPTION = 32
385
+ GUILD_INCIDENT_ALERT_MODE_ENABLED = 36
386
+ GUILD_INCIDENT_ALERT_MODE_DISABLED = 37
387
+ GUILD_INCIDENT_REPORT_RAID = 38
388
+ GUILD_INCIDENT_REPORT_FALSE_ALARM = 39
389
390
@classmethod
391
def deletable(cls) -> Tuple["MessageType", ...]:
@@ -407,6 +411,7 @@ def deletable(cls) -> Tuple["MessageType", ...]:
407
411
cls.STAGE_END,
408
412
cls.STAGE_SPEAKER,
409
413
cls.STAGE_TOPIC,
414
+ cls.GUILD_APPLICATION_PREMIUM_SUBSCRIPTION,
410
415
)
416
417
0 commit comments