Skip to content

Commit

Permalink
feat(APIGuild): add max_stage_video_channel_users (#550)
Browse files Browse the repository at this point in the history
  • Loading branch information
vvito7 committed Apr 13, 2023
1 parent bb0ccf1 commit 9a66d21
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deno/payloads/v10/guild.ts
Expand Up @@ -235,6 +235,10 @@ export interface APIGuild extends APIPartialGuild {
* The maximum amount of users in a video channel
*/
max_video_channel_users?: number;
/**
* The maximum amount of users in a stage video channel
*/
max_stage_video_channel_users?: number;
/**
* Approximate number of members in this guild,
* returned from the `GET /guilds/<id>` and `/users/@me/guilds` (OAuth2) endpoints when `with_counts` is `true`
Expand Down
4 changes: 4 additions & 0 deletions deno/payloads/v9/guild.ts
Expand Up @@ -235,6 +235,10 @@ export interface APIGuild extends APIPartialGuild {
* The maximum amount of users in a video channel
*/
max_video_channel_users?: number;
/**
* The maximum amount of users in a stage video channel
*/
max_stage_video_channel_users?: number;
/**
* Approximate number of members in this guild,
* returned from the `GET /guilds/<id>` and `/users/@me/guilds` (OAuth2) endpoints when `with_counts` is `true`
Expand Down
4 changes: 4 additions & 0 deletions payloads/v10/guild.ts
Expand Up @@ -235,6 +235,10 @@ export interface APIGuild extends APIPartialGuild {
* The maximum amount of users in a video channel
*/
max_video_channel_users?: number;
/**
* The maximum amount of users in a stage video channel
*/
max_stage_video_channel_users?: number;
/**
* Approximate number of members in this guild,
* returned from the `GET /guilds/<id>` and `/users/@me/guilds` (OAuth2) endpoints when `with_counts` is `true`
Expand Down
4 changes: 4 additions & 0 deletions payloads/v9/guild.ts
Expand Up @@ -235,6 +235,10 @@ export interface APIGuild extends APIPartialGuild {
* The maximum amount of users in a video channel
*/
max_video_channel_users?: number;
/**
* The maximum amount of users in a stage video channel
*/
max_stage_video_channel_users?: number;
/**
* Approximate number of members in this guild,
* returned from the `GET /guilds/<id>` and `/users/@me/guilds` (OAuth2) endpoints when `with_counts` is `true`
Expand Down

1 comment on commit 9a66d21

@vercel
Copy link

@vercel vercel bot commented on 9a66d21 Apr 13, 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.