diff --git a/src/types/webhook.ts b/src/types/webhook.ts index 573b0117a..754d682c3 100644 --- a/src/types/webhook.ts +++ b/src/types/webhook.ts @@ -244,13 +244,7 @@ export interface UpsertSlashCommandOptions { options?: SlashCommandOption[] | null; } -export interface UpsertSlashCommandsOptions { +export interface UpsertSlashCommandsOptions extends UpsertSlashCommandOptions { /** The id of the command */ id: string; - /** 3-32 character command name */ - name?: string; - /** 1-100 character description */ - description?: string; - /** The parameters for the command */ - options?: SlashCommandOption[] | null; }