diff --git a/deno/payloads/v10/_interactions/_applicationCommands/_chatInput/string.ts b/deno/payloads/v10/_interactions/_applicationCommands/_chatInput/string.ts index 0d64d28c2..48b443c8c 100644 --- a/deno/payloads/v10/_interactions/_applicationCommands/_chatInput/string.ts +++ b/deno/payloads/v10/_interactions/_applicationCommands/_chatInput/string.ts @@ -8,11 +8,11 @@ import type { APIApplicationCommandOptionChoice, ApplicationCommandOptionType } interface APIApplicationCommandStringOptionBase extends APIApplicationCommandOptionBase { /** - * For option type `STRING`, the minimum allowed length (minimum of 0). + * For option type `STRING`, the minimum allowed length (minimum of `0`, maximum of `6000`). */ min_length?: number; /** - * For option type `STRING`, the maximum allowed length (minimum of 1). + * For option type `STRING`, the maximum allowed length (minimum of `1`, maximum of `6000`). */ max_length?: number; } diff --git a/deno/payloads/v9/_interactions/_applicationCommands/_chatInput/string.ts b/deno/payloads/v9/_interactions/_applicationCommands/_chatInput/string.ts index 0d64d28c2..48b443c8c 100644 --- a/deno/payloads/v9/_interactions/_applicationCommands/_chatInput/string.ts +++ b/deno/payloads/v9/_interactions/_applicationCommands/_chatInput/string.ts @@ -8,11 +8,11 @@ import type { APIApplicationCommandOptionChoice, ApplicationCommandOptionType } interface APIApplicationCommandStringOptionBase extends APIApplicationCommandOptionBase { /** - * For option type `STRING`, the minimum allowed length (minimum of 0). + * For option type `STRING`, the minimum allowed length (minimum of `0`, maximum of `6000`). */ min_length?: number; /** - * For option type `STRING`, the maximum allowed length (minimum of 1). + * For option type `STRING`, the maximum allowed length (minimum of `1`, maximum of `6000`). */ max_length?: number; } diff --git a/payloads/v10/_interactions/_applicationCommands/_chatInput/string.ts b/payloads/v10/_interactions/_applicationCommands/_chatInput/string.ts index 5dc0e3cfd..a789acedb 100644 --- a/payloads/v10/_interactions/_applicationCommands/_chatInput/string.ts +++ b/payloads/v10/_interactions/_applicationCommands/_chatInput/string.ts @@ -8,11 +8,11 @@ import type { APIApplicationCommandOptionChoice, ApplicationCommandOptionType } interface APIApplicationCommandStringOptionBase extends APIApplicationCommandOptionBase { /** - * For option type `STRING`, the minimum allowed length (minimum of 0). + * For option type `STRING`, the minimum allowed length (minimum of `0`, maximum of `6000`). */ min_length?: number; /** - * For option type `STRING`, the maximum allowed length (minimum of 1). + * For option type `STRING`, the maximum allowed length (minimum of `1`, maximum of `6000`). */ max_length?: number; } diff --git a/payloads/v9/_interactions/_applicationCommands/_chatInput/string.ts b/payloads/v9/_interactions/_applicationCommands/_chatInput/string.ts index 5dc0e3cfd..a789acedb 100644 --- a/payloads/v9/_interactions/_applicationCommands/_chatInput/string.ts +++ b/payloads/v9/_interactions/_applicationCommands/_chatInput/string.ts @@ -8,11 +8,11 @@ import type { APIApplicationCommandOptionChoice, ApplicationCommandOptionType } interface APIApplicationCommandStringOptionBase extends APIApplicationCommandOptionBase { /** - * For option type `STRING`, the minimum allowed length (minimum of 0). + * For option type `STRING`, the minimum allowed length (minimum of `0`, maximum of `6000`). */ min_length?: number; /** - * For option type `STRING`, the maximum allowed length (minimum of 1). + * For option type `STRING`, the maximum allowed length (minimum of `1`, maximum of `6000`). */ max_length?: number; }