From 1c8c9a11ffc0e3344ef48d442b40d869a46d28ac Mon Sep 17 00:00:00 2001 From: ITOH Date: Thu, 30 Sep 2021 20:36:14 +0200 Subject: [PATCH] feat(types): add DiscordInteractionResponseTypes.ApplicationCommandAutocompleteResult --- src/types/interactions/interaction_response_types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/interactions/interaction_response_types.ts b/src/types/interactions/interaction_response_types.ts index 47c38e2d4..6332c6648 100644 --- a/src/types/interactions/interaction_response_types.ts +++ b/src/types/interactions/interaction_response_types.ts @@ -10,6 +10,8 @@ export enum DiscordInteractionResponseTypes { DeferredUpdateMessage, /** For components, edit the message the component was attached to */ UpdateMessage, + /** For Application Command Options, send an autocomplete result */ + ApplicationCommandAutocompleteResult, } export type InteractionResponseTypes = DiscordInteractionResponseTypes;