diff --git a/deno/payloads/v8/_interactions/_applicationCommands/_chatInput/integer.ts b/deno/payloads/v8/_interactions/_applicationCommands/_chatInput/integer.ts index 1985ba1f4..21b739b1d 100644 --- a/deno/payloads/v8/_interactions/_applicationCommands/_chatInput/integer.ts +++ b/deno/payloads/v8/_interactions/_applicationCommands/_chatInput/integer.ts @@ -5,7 +5,7 @@ import type { } from './base.ts'; import type { APIApplicationCommandOptionChoice, ApplicationCommandOptionType } from './shared.ts'; -export interface APIApplicationCommandIntegerOptionBase +interface APIApplicationCommandIntegerOptionBase extends APIApplicationCommandOptionBase { /** * If the option is an `INTEGER` or `NUMBER` type, the minimum value permitted. diff --git a/deno/payloads/v8/_interactions/_applicationCommands/_chatInput/number.ts b/deno/payloads/v8/_interactions/_applicationCommands/_chatInput/number.ts index 859450bb8..54faeafcf 100644 --- a/deno/payloads/v8/_interactions/_applicationCommands/_chatInput/number.ts +++ b/deno/payloads/v8/_interactions/_applicationCommands/_chatInput/number.ts @@ -5,7 +5,7 @@ import type { } from './base.ts'; import type { APIApplicationCommandOptionChoice, ApplicationCommandOptionType } from './shared.ts'; -export interface APIApplicationCommandNumberOptionBase +interface APIApplicationCommandNumberOptionBase extends APIApplicationCommandOptionBase { /** * If the option is an `INTEGER` or `NUMBER` type, the minimum value permitted. diff --git a/deno/payloads/v8/_interactions/_applicationCommands/chatInput.ts b/deno/payloads/v8/_interactions/_applicationCommands/chatInput.ts index 951b24231..fb658888b 100644 --- a/deno/payloads/v8/_interactions/_applicationCommands/chatInput.ts +++ b/deno/payloads/v8/_interactions/_applicationCommands/chatInput.ts @@ -14,7 +14,7 @@ import type { APIApplicationCommandInteractionDataStringOption, } from './_chatInput/string.ts'; import type { - APIApplicationCommandIntegerOptionBase, + APIApplicationCommandIntegerOption, APIApplicationCommandInteractionDataIntegerOption, } from './_chatInput/integer.ts'; import type { @@ -38,7 +38,7 @@ import type { APIApplicationCommandInteractionDataMentionableOption, } from './_chatInput/mentionable.ts'; import type { - APIApplicationCommandNumberOptionBase, + APIApplicationCommandNumberOption, APIApplicationCommandInteractionDataNumberOption, } from './_chatInput/number.ts'; import type { @@ -67,13 +67,13 @@ export * from './_chatInput/shared.ts'; */ export type APIApplicationCommandBasicOption = | APIApplicationCommandStringOption - | APIApplicationCommandIntegerOptionBase + | APIApplicationCommandIntegerOption | APIApplicationCommandBooleanOption | APIApplicationCommandUserOption | APIApplicationCommandChannelOption | APIApplicationCommandRoleOption | APIApplicationCommandMentionableOption - | APIApplicationCommandNumberOptionBase; + | APIApplicationCommandNumberOption; /** * https://discord.com/developers/docs/interactions/application-commands#application-command-object-application-command-option-structure diff --git a/deno/payloads/v9/_interactions/_applicationCommands/_chatInput/integer.ts b/deno/payloads/v9/_interactions/_applicationCommands/_chatInput/integer.ts index 1985ba1f4..21b739b1d 100644 --- a/deno/payloads/v9/_interactions/_applicationCommands/_chatInput/integer.ts +++ b/deno/payloads/v9/_interactions/_applicationCommands/_chatInput/integer.ts @@ -5,7 +5,7 @@ import type { } from './base.ts'; import type { APIApplicationCommandOptionChoice, ApplicationCommandOptionType } from './shared.ts'; -export interface APIApplicationCommandIntegerOptionBase +interface APIApplicationCommandIntegerOptionBase extends APIApplicationCommandOptionBase { /** * If the option is an `INTEGER` or `NUMBER` type, the minimum value permitted. diff --git a/deno/payloads/v9/_interactions/_applicationCommands/_chatInput/number.ts b/deno/payloads/v9/_interactions/_applicationCommands/_chatInput/number.ts index 859450bb8..54faeafcf 100644 --- a/deno/payloads/v9/_interactions/_applicationCommands/_chatInput/number.ts +++ b/deno/payloads/v9/_interactions/_applicationCommands/_chatInput/number.ts @@ -5,7 +5,7 @@ import type { } from './base.ts'; import type { APIApplicationCommandOptionChoice, ApplicationCommandOptionType } from './shared.ts'; -export interface APIApplicationCommandNumberOptionBase +interface APIApplicationCommandNumberOptionBase extends APIApplicationCommandOptionBase { /** * If the option is an `INTEGER` or `NUMBER` type, the minimum value permitted. diff --git a/deno/payloads/v9/_interactions/_applicationCommands/chatInput.ts b/deno/payloads/v9/_interactions/_applicationCommands/chatInput.ts index 951b24231..fb658888b 100644 --- a/deno/payloads/v9/_interactions/_applicationCommands/chatInput.ts +++ b/deno/payloads/v9/_interactions/_applicationCommands/chatInput.ts @@ -14,7 +14,7 @@ import type { APIApplicationCommandInteractionDataStringOption, } from './_chatInput/string.ts'; import type { - APIApplicationCommandIntegerOptionBase, + APIApplicationCommandIntegerOption, APIApplicationCommandInteractionDataIntegerOption, } from './_chatInput/integer.ts'; import type { @@ -38,7 +38,7 @@ import type { APIApplicationCommandInteractionDataMentionableOption, } from './_chatInput/mentionable.ts'; import type { - APIApplicationCommandNumberOptionBase, + APIApplicationCommandNumberOption, APIApplicationCommandInteractionDataNumberOption, } from './_chatInput/number.ts'; import type { @@ -67,13 +67,13 @@ export * from './_chatInput/shared.ts'; */ export type APIApplicationCommandBasicOption = | APIApplicationCommandStringOption - | APIApplicationCommandIntegerOptionBase + | APIApplicationCommandIntegerOption | APIApplicationCommandBooleanOption | APIApplicationCommandUserOption | APIApplicationCommandChannelOption | APIApplicationCommandRoleOption | APIApplicationCommandMentionableOption - | APIApplicationCommandNumberOptionBase; + | APIApplicationCommandNumberOption; /** * https://discord.com/developers/docs/interactions/application-commands#application-command-object-application-command-option-structure diff --git a/payloads/v8/_interactions/_applicationCommands/_chatInput/integer.ts b/payloads/v8/_interactions/_applicationCommands/_chatInput/integer.ts index 6b735127d..9448ff404 100644 --- a/payloads/v8/_interactions/_applicationCommands/_chatInput/integer.ts +++ b/payloads/v8/_interactions/_applicationCommands/_chatInput/integer.ts @@ -5,7 +5,7 @@ import type { } from './base'; import type { APIApplicationCommandOptionChoice, ApplicationCommandOptionType } from './shared'; -export interface APIApplicationCommandIntegerOptionBase +interface APIApplicationCommandIntegerOptionBase extends APIApplicationCommandOptionBase { /** * If the option is an `INTEGER` or `NUMBER` type, the minimum value permitted. diff --git a/payloads/v8/_interactions/_applicationCommands/_chatInput/number.ts b/payloads/v8/_interactions/_applicationCommands/_chatInput/number.ts index cfc888dcb..aec6c8e52 100644 --- a/payloads/v8/_interactions/_applicationCommands/_chatInput/number.ts +++ b/payloads/v8/_interactions/_applicationCommands/_chatInput/number.ts @@ -5,7 +5,7 @@ import type { } from './base'; import type { APIApplicationCommandOptionChoice, ApplicationCommandOptionType } from './shared'; -export interface APIApplicationCommandNumberOptionBase +interface APIApplicationCommandNumberOptionBase extends APIApplicationCommandOptionBase { /** * If the option is an `INTEGER` or `NUMBER` type, the minimum value permitted. diff --git a/payloads/v8/_interactions/_applicationCommands/chatInput.ts b/payloads/v8/_interactions/_applicationCommands/chatInput.ts index 003752c24..c8ce722e1 100644 --- a/payloads/v8/_interactions/_applicationCommands/chatInput.ts +++ b/payloads/v8/_interactions/_applicationCommands/chatInput.ts @@ -14,7 +14,7 @@ import type { APIApplicationCommandInteractionDataStringOption, } from './_chatInput/string'; import type { - APIApplicationCommandIntegerOptionBase, + APIApplicationCommandIntegerOption, APIApplicationCommandInteractionDataIntegerOption, } from './_chatInput/integer'; import type { @@ -38,7 +38,7 @@ import type { APIApplicationCommandInteractionDataMentionableOption, } from './_chatInput/mentionable'; import type { - APIApplicationCommandNumberOptionBase, + APIApplicationCommandNumberOption, APIApplicationCommandInteractionDataNumberOption, } from './_chatInput/number'; import type { @@ -67,13 +67,13 @@ export * from './_chatInput/shared'; */ export type APIApplicationCommandBasicOption = | APIApplicationCommandStringOption - | APIApplicationCommandIntegerOptionBase + | APIApplicationCommandIntegerOption | APIApplicationCommandBooleanOption | APIApplicationCommandUserOption | APIApplicationCommandChannelOption | APIApplicationCommandRoleOption | APIApplicationCommandMentionableOption - | APIApplicationCommandNumberOptionBase; + | APIApplicationCommandNumberOption; /** * https://discord.com/developers/docs/interactions/application-commands#application-command-object-application-command-option-structure diff --git a/payloads/v9/_interactions/_applicationCommands/_chatInput/integer.ts b/payloads/v9/_interactions/_applicationCommands/_chatInput/integer.ts index 6b735127d..9448ff404 100644 --- a/payloads/v9/_interactions/_applicationCommands/_chatInput/integer.ts +++ b/payloads/v9/_interactions/_applicationCommands/_chatInput/integer.ts @@ -5,7 +5,7 @@ import type { } from './base'; import type { APIApplicationCommandOptionChoice, ApplicationCommandOptionType } from './shared'; -export interface APIApplicationCommandIntegerOptionBase +interface APIApplicationCommandIntegerOptionBase extends APIApplicationCommandOptionBase { /** * If the option is an `INTEGER` or `NUMBER` type, the minimum value permitted. diff --git a/payloads/v9/_interactions/_applicationCommands/_chatInput/number.ts b/payloads/v9/_interactions/_applicationCommands/_chatInput/number.ts index cfc888dcb..aec6c8e52 100644 --- a/payloads/v9/_interactions/_applicationCommands/_chatInput/number.ts +++ b/payloads/v9/_interactions/_applicationCommands/_chatInput/number.ts @@ -5,7 +5,7 @@ import type { } from './base'; import type { APIApplicationCommandOptionChoice, ApplicationCommandOptionType } from './shared'; -export interface APIApplicationCommandNumberOptionBase +interface APIApplicationCommandNumberOptionBase extends APIApplicationCommandOptionBase { /** * If the option is an `INTEGER` or `NUMBER` type, the minimum value permitted. diff --git a/payloads/v9/_interactions/_applicationCommands/chatInput.ts b/payloads/v9/_interactions/_applicationCommands/chatInput.ts index 003752c24..c8ce722e1 100644 --- a/payloads/v9/_interactions/_applicationCommands/chatInput.ts +++ b/payloads/v9/_interactions/_applicationCommands/chatInput.ts @@ -14,7 +14,7 @@ import type { APIApplicationCommandInteractionDataStringOption, } from './_chatInput/string'; import type { - APIApplicationCommandIntegerOptionBase, + APIApplicationCommandIntegerOption, APIApplicationCommandInteractionDataIntegerOption, } from './_chatInput/integer'; import type { @@ -38,7 +38,7 @@ import type { APIApplicationCommandInteractionDataMentionableOption, } from './_chatInput/mentionable'; import type { - APIApplicationCommandNumberOptionBase, + APIApplicationCommandNumberOption, APIApplicationCommandInteractionDataNumberOption, } from './_chatInput/number'; import type { @@ -67,13 +67,13 @@ export * from './_chatInput/shared'; */ export type APIApplicationCommandBasicOption = | APIApplicationCommandStringOption - | APIApplicationCommandIntegerOptionBase + | APIApplicationCommandIntegerOption | APIApplicationCommandBooleanOption | APIApplicationCommandUserOption | APIApplicationCommandChannelOption | APIApplicationCommandRoleOption | APIApplicationCommandMentionableOption - | APIApplicationCommandNumberOptionBase; + | APIApplicationCommandNumberOption; /** * https://discord.com/developers/docs/interactions/application-commands#application-command-object-application-command-option-structure