From 04b53a68c7ebfcc01d8f9ee3e3e5b480e2aa3a86 Mon Sep 17 00:00:00 2001 From: Fleny Date: Fri, 13 Jun 2025 15:09:11 +0200 Subject: [PATCH] fix(types): update InteractionCallbackData flags (#4221) Co-authored-by: Awesome Stickz --- packages/types/src/discordeno.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/src/discordeno.ts b/packages/types/src/discordeno.ts index fd3af62bd..8d92699f8 100644 --- a/packages/types/src/discordeno.ts +++ b/packages/types/src/discordeno.ts @@ -661,7 +661,7 @@ export interface InteractionCallbackData { title?: string /** The components you would like to have sent in this message */ components?: MessageComponents - /** Message flags combined as a bit field (only `SUPPRESS_EMBEDS`, `EPHEMERAL`, `SUPPRESS_NOTIFICATIONS` and `IS_COMPONENTS_V2` can be set) */ + /** Message flags combined as a bit field (only `SUPPRESS_EMBEDS`, `EPHEMERAL`, `IS_COMPONENTS_V2`, `IS_VOICE_MESSAGE` and `SUPPRESS_NOTIFICATIONS` can be set) */ flags?: number /** Autocomplete choices (max of 25 choices) */ choices?: Camelize