fix(types): update InteractionCallbackData flags (#4221)

Co-authored-by: Awesome Stickz <awesome@stickz.dev>
This commit is contained in:
Fleny
2025-06-13 15:09:11 +02:00
committed by GitHub
parent 430a708b2d
commit 04b53a68c7

View File

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