From 262e6cee7e201d017eaf0b9ba8d7bf7526bbfca7 Mon Sep 17 00:00:00 2001 From: Fleny Date: Wed, 21 Feb 2024 14:57:56 +0100 Subject: [PATCH] Add SUPPRESS_NOTIFICATIONS to InteractionCallbackData.flags (#3448) --- 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 0e1c3eb9f..433399547 100644 --- a/packages/types/src/discordeno.ts +++ b/packages/types/src/discordeno.ts @@ -482,7 +482,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 and EPHEMERAL can be set) */ + /** Message flags combined as a bit field (only `SUPPRESS_EMBEDS`, `EPHEMERAL` and `SUPPRESS_NOTIFICATIONS` can be set) */ flags?: number /** Autocomplete choices (max of 25 choices) */ choices?: Camelize