feat(structs): add intents for guild and direct message polls (#1612)

This commit is contained in:
Evan Robinson 2025-03-30 07:03:57 -04:00 committed by GitHub
parent 1270b0f9cf
commit 69ea356662
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3008,6 +3008,8 @@ const (
IntentGuildScheduledEvents Intent = 1 << 16 IntentGuildScheduledEvents Intent = 1 << 16
IntentAutoModerationConfiguration Intent = 1 << 20 IntentAutoModerationConfiguration Intent = 1 << 20
IntentAutoModerationExecution Intent = 1 << 21 IntentAutoModerationExecution Intent = 1 << 21
IntentGuildMessagePolls Intent = 1 << 24
IntentDirectMessagePolls Intent = 1 << 25
// TODO: remove when compatibility is not needed // TODO: remove when compatibility is not needed