Skip to content

Commit

Permalink
fix(RESTPatchAPIChannelJSONBody): add missing applied_tags field (#828
Browse files Browse the repository at this point in the history
)
  • Loading branch information
suneettipirneni committed Sep 25, 2023
1 parent 06fb47c commit a4cdbbf
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
6 changes: 6 additions & 0 deletions deno/rest/v10/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down
6 changes: 6 additions & 0 deletions deno/rest/v9/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down
6 changes: 6 additions & 0 deletions rest/v10/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down
6 changes: 6 additions & 0 deletions rest/v9/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down

1 comment on commit a4cdbbf

@vercel
Copy link

@vercel vercel bot commented on a4cdbbf Sep 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.