Add SUPPRESS_NOTIFICATIONS to InteractionCallbackData.flags (#3448)

This commit is contained in:
Fleny
2024-02-21 14:57:56 +01:00
committed by GitHub
parent 7e505951a1
commit 262e6cee7e

View File

@@ -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<DiscordApplicationCommandOptionChoice[]>