From 19d04c00c9f5ba585fc0d21dbf869b74f2ea2dda Mon Sep 17 00:00:00 2001 From: Almeida Date: Thu, 9 Apr 2026 16:22:25 +0100 Subject: [PATCH] fix(Channel): add applied_tags to forum thread form data body (#1615) Co-authored-by: Claude Opus 4.6 (1M context) --- deno/rest/v10/channel.ts | 4 ++++ deno/rest/v9/channel.ts | 4 ++++ rest/v10/channel.ts | 4 ++++ rest/v9/channel.ts | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/deno/rest/v10/channel.ts b/deno/rest/v10/channel.ts index a77ce825..997d2bc8 100644 --- a/deno/rest/v10/channel.ts +++ b/deno/rest/v10/channel.ts @@ -746,6 +746,10 @@ export type RESTPostAPIGuildForumThreadsFormDataBody = RESTPostAPIChannelMessage * The initial message of the thread */ message: string; + /** + * The IDs of the set of tags to apply to the thread; limited to 5 + */ + applied_tags?: Snowflake[] | undefined; }; /** diff --git a/deno/rest/v9/channel.ts b/deno/rest/v9/channel.ts index e6120422..22b04442 100644 --- a/deno/rest/v9/channel.ts +++ b/deno/rest/v9/channel.ts @@ -759,6 +759,10 @@ export type RESTPostAPIGuildForumThreadsFormDataBody = RESTPostAPIChannelMessage * The initial message of the thread */ message: string; + /** + * The IDs of the set of tags to apply to the thread; limited to 5 + */ + applied_tags?: Snowflake[] | undefined; }; /** diff --git a/rest/v10/channel.ts b/rest/v10/channel.ts index 623d26be..54da2ecf 100644 --- a/rest/v10/channel.ts +++ b/rest/v10/channel.ts @@ -746,6 +746,10 @@ export type RESTPostAPIGuildForumThreadsFormDataBody = RESTPostAPIChannelMessage * The initial message of the thread */ message: string; + /** + * The IDs of the set of tags to apply to the thread; limited to 5 + */ + applied_tags?: Snowflake[] | undefined; }; /** diff --git a/rest/v9/channel.ts b/rest/v9/channel.ts index dd87d956..9c7a346d 100644 --- a/rest/v9/channel.ts +++ b/rest/v9/channel.ts @@ -759,6 +759,10 @@ export type RESTPostAPIGuildForumThreadsFormDataBody = RESTPostAPIChannelMessage * The initial message of the thread */ message: string; + /** + * The IDs of the set of tags to apply to the thread; limited to 5 + */ + applied_tags?: Snowflake[] | undefined; }; /**