From 9a66d21f4913c63ed7c192cf9340febe603bf516 Mon Sep 17 00:00:00 2001 From: Vitor Date: Thu, 13 Apr 2023 18:25:22 +0100 Subject: [PATCH] feat(APIGuild): add `max_stage_video_channel_users` (#550) --- deno/payloads/v10/guild.ts | 4 ++++ deno/payloads/v9/guild.ts | 4 ++++ payloads/v10/guild.ts | 4 ++++ payloads/v9/guild.ts | 4 ++++ 4 files changed, 16 insertions(+) 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`