diff --git a/deno/rest/v10/channel.ts b/deno/rest/v10/channel.ts index 75beeccc..29c54143 100644 --- a/deno/rest/v10/channel.ts +++ b/deno/rest/v10/channel.ts @@ -181,6 +181,12 @@ export interface RESTPatchAPIChannelJSONBody { * Channel types: forum */ default_forum_layout?: ForumLayoutType | undefined; + /** + * The ids of the set of tags that have been applied to a thread-only channel; limited to 5 + * + * Channel types: forum, media + */ + applied_tags?: Snowflake[] | undefined; } /** diff --git a/deno/rest/v9/channel.ts b/deno/rest/v9/channel.ts index cdfb9d83..a5e1a828 100644 --- a/deno/rest/v9/channel.ts +++ b/deno/rest/v9/channel.ts @@ -181,6 +181,12 @@ export interface RESTPatchAPIChannelJSONBody { * Channel types: forum */ default_forum_layout?: ForumLayoutType | undefined; + /** + * The ids of the set of tags that have been applied to a thread-only channel; limited to 5 + * + * Channel types: forum, media + */ + applied_tags?: Snowflake[] | undefined; } /** diff --git a/rest/v10/channel.ts b/rest/v10/channel.ts index b994294a..33e94d3f 100644 --- a/rest/v10/channel.ts +++ b/rest/v10/channel.ts @@ -181,6 +181,12 @@ export interface RESTPatchAPIChannelJSONBody { * Channel types: forum */ default_forum_layout?: ForumLayoutType | undefined; + /** + * The ids of the set of tags that have been applied to a thread-only channel; limited to 5 + * + * Channel types: forum, media + */ + applied_tags?: Snowflake[] | undefined; } /** diff --git a/rest/v9/channel.ts b/rest/v9/channel.ts index ec583a0f..ed437bba 100644 --- a/rest/v9/channel.ts +++ b/rest/v9/channel.ts @@ -181,6 +181,12 @@ export interface RESTPatchAPIChannelJSONBody { * Channel types: forum */ default_forum_layout?: ForumLayoutType | undefined; + /** + * The ids of the set of tags that have been applied to a thread-only channel; limited to 5 + * + * Channel types: forum, media + */ + applied_tags?: Snowflake[] | undefined; } /**