From 5e295706b83e776919a9da821f1d40562e08b61f Mon Sep 17 00:00:00 2001 From: Isidro Casiano Date: Mon, 4 Mar 2024 13:59:49 -0500 Subject: [PATCH] docs(APISelectMenuOption): correct character limit (#881) --- deno/payloads/v10/channel.ts | 4 ++-- deno/payloads/v9/channel.ts | 4 ++-- payloads/v10/channel.ts | 4 ++-- payloads/v9/channel.ts | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/deno/payloads/v10/channel.ts b/deno/payloads/v10/channel.ts index 4cb5ad2b..dc969d7f 100644 --- a/deno/payloads/v10/channel.ts +++ b/deno/payloads/v10/channel.ts @@ -1766,7 +1766,7 @@ export type APISelectMenuComponent = */ export interface APISelectMenuOption { /** - * The user-facing name of the option (max 25 chars) + * The user-facing name of the option (max 100 chars) */ label: string; /** @@ -1774,7 +1774,7 @@ export interface APISelectMenuOption { */ value: string; /** - * An additional description of the option (max 50 chars) + * An additional description of the option (max 100 chars) */ description?: string; /** diff --git a/deno/payloads/v9/channel.ts b/deno/payloads/v9/channel.ts index 5a555e28..50f09a9e 100644 --- a/deno/payloads/v9/channel.ts +++ b/deno/payloads/v9/channel.ts @@ -1735,7 +1735,7 @@ export type APISelectMenuComponent = */ export interface APISelectMenuOption { /** - * The user-facing name of the option (max 25 chars) + * The user-facing name of the option (max 100 chars) */ label: string; /** @@ -1743,7 +1743,7 @@ export interface APISelectMenuOption { */ value: string; /** - * An additional description of the option (max 50 chars) + * An additional description of the option (max 100 chars) */ description?: string; /** diff --git a/payloads/v10/channel.ts b/payloads/v10/channel.ts index 42f575ed..6cedec61 100644 --- a/payloads/v10/channel.ts +++ b/payloads/v10/channel.ts @@ -1766,7 +1766,7 @@ export type APISelectMenuComponent = */ export interface APISelectMenuOption { /** - * The user-facing name of the option (max 25 chars) + * The user-facing name of the option (max 100 chars) */ label: string; /** @@ -1774,7 +1774,7 @@ export interface APISelectMenuOption { */ value: string; /** - * An additional description of the option (max 50 chars) + * An additional description of the option (max 100 chars) */ description?: string; /** diff --git a/payloads/v9/channel.ts b/payloads/v9/channel.ts index e8ba0dd7..32b21027 100644 --- a/payloads/v9/channel.ts +++ b/payloads/v9/channel.ts @@ -1735,7 +1735,7 @@ export type APISelectMenuComponent = */ export interface APISelectMenuOption { /** - * The user-facing name of the option (max 25 chars) + * The user-facing name of the option (max 100 chars) */ label: string; /** @@ -1743,7 +1743,7 @@ export interface APISelectMenuOption { */ value: string; /** - * An additional description of the option (max 50 chars) + * An additional description of the option (max 100 chars) */ description?: string; /**