diff --git a/deno/payloads/v10/guild.ts b/deno/payloads/v10/guild.ts index d9573e56..9cf0fb54 100644 --- a/deno/payloads/v10/guild.ts +++ b/deno/payloads/v10/guild.ts @@ -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/` and `/users/@me/guilds` (OAuth2) endpoints when `with_counts` is `true` diff --git a/deno/payloads/v9/guild.ts b/deno/payloads/v9/guild.ts index a9255cb3..927e63ec 100644 --- a/deno/payloads/v9/guild.ts +++ b/deno/payloads/v9/guild.ts @@ -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/` and `/users/@me/guilds` (OAuth2) endpoints when `with_counts` is `true` diff --git a/payloads/v10/guild.ts b/payloads/v10/guild.ts index 484a0b44..ef544e17 100644 --- a/payloads/v10/guild.ts +++ b/payloads/v10/guild.ts @@ -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/` and `/users/@me/guilds` (OAuth2) endpoints when `with_counts` is `true` diff --git a/payloads/v9/guild.ts b/payloads/v9/guild.ts index 953c5222..786be8f2 100644 --- a/payloads/v9/guild.ts +++ b/payloads/v9/guild.ts @@ -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/` and `/users/@me/guilds` (OAuth2) endpoints when `with_counts` is `true`