fix(RESTPatchAPIChannelJSONBody): add missing applied_tags field (#828)

This commit is contained in:
Suneet Tipirneni
2023-09-25 07:23:01 -04:00
committed by GitHub
parent 06fb47c51d
commit a4cdbbfdf8
4 changed files with 24 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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