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; }; /**