From 6098d68a9a3c2aa966ada67192aa5198b18ba4a2 Mon Sep 17 00:00:00 2001 From: Fleny Date: Mon, 7 Oct 2024 06:40:27 +0200 Subject: [PATCH] Add the poll object to InteractionCallbackData (#3905) --- packages/types/src/discordeno.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/types/src/discordeno.ts b/packages/types/src/discordeno.ts index aa2041f96..3d9ec568d 100644 --- a/packages/types/src/discordeno.ts +++ b/packages/types/src/discordeno.ts @@ -539,6 +539,8 @@ export interface InteractionCallbackData { flags?: number /** Autocomplete choices (max of 25 choices) */ choices?: Camelize + /** Details about the poll */ + poll?: CreatePoll } /** https://discord.com/developers/docs/interactions/slash-commands#interaction-response */