From 36f3b21847a7f8d35f8185eceea7ce00281e0ac2 Mon Sep 17 00:00:00 2001 From: Helloyunho Date: Thu, 30 Nov 2023 09:27:33 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F=20fix:=20forgor=20to=20ad?= =?UTF-8?q?d=20the=20properties=20to=20other=20types?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/src/interactions/command.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/types/src/interactions/command.ts b/types/src/interactions/command.ts index 850cff0f..a0c84558 100644 --- a/types/src/interactions/command.ts +++ b/types/src/interactions/command.ts @@ -113,6 +113,8 @@ export interface CreateGlobalApplicationCommandPayload { dm_permission?: boolean; type?: ApplicationCommandType; nsfw?: boolean; + contexts?: ApplicationCommandContextType[]; + integration_types?: ApplicationIntegrationType[]; } export interface EditGlobalApplicationCommandPayload { @@ -124,6 +126,8 @@ export interface EditGlobalApplicationCommandPayload { default_member_permissions?: string | null; dm_permission?: boolean; nsfw?: boolean; + contexts?: ApplicationCommandContextType[]; + integration_types?: ApplicationIntegrationType[]; } export type BulkOverwriteGlobalApplicationCommandsPayload =