From 748db34e30338cf4a9fd8ce7b86d1d5c7dde63b1 Mon Sep 17 00:00:00 2001 From: Suneet Tipirneni <77477100+suneettipirneni@users.noreply.github.com> Date: Wed, 25 May 2022 02:22:51 -0400 Subject: [PATCH] feat(RESTPostAPIGuildChannels): update post body fields (#419) * chore(guildChannel): update post body fields * chore: add missing field --- deno/rest/v10/guild.ts | 2 ++ deno/rest/v9/guild.ts | 2 ++ rest/v10/guild.ts | 2 ++ rest/v9/guild.ts | 2 ++ 4 files changed, 8 insertions(+) diff --git a/deno/rest/v10/guild.ts b/deno/rest/v10/guild.ts index 2a9fab1d..08cf06aa 100644 --- a/deno/rest/v10/guild.ts +++ b/deno/rest/v10/guild.ts @@ -49,6 +49,8 @@ export type APIGuildCreatePartialChannel = StrictPartial< | 'rate_limit_per_user' | 'default_auto_archive_duration' | 'position' + | 'rtc_region' + | 'video_quality_mode' | 'flags' > > & diff --git a/deno/rest/v9/guild.ts b/deno/rest/v9/guild.ts index b5a9d831..311ba23f 100644 --- a/deno/rest/v9/guild.ts +++ b/deno/rest/v9/guild.ts @@ -49,6 +49,8 @@ export type APIGuildCreatePartialChannel = StrictPartial< | 'rate_limit_per_user' | 'default_auto_archive_duration' | 'position' + | 'rtc_region' + | 'video_quality_mode' | 'flags' > > & diff --git a/rest/v10/guild.ts b/rest/v10/guild.ts index ad80d367..e6a6f613 100644 --- a/rest/v10/guild.ts +++ b/rest/v10/guild.ts @@ -49,6 +49,8 @@ export type APIGuildCreatePartialChannel = StrictPartial< | 'rate_limit_per_user' | 'default_auto_archive_duration' | 'position' + | 'rtc_region' + | 'video_quality_mode' | 'flags' > > & diff --git a/rest/v9/guild.ts b/rest/v9/guild.ts index 24b75051..548c227f 100644 --- a/rest/v9/guild.ts +++ b/rest/v9/guild.ts @@ -49,6 +49,8 @@ export type APIGuildCreatePartialChannel = StrictPartial< | 'rate_limit_per_user' | 'default_auto_archive_duration' | 'position' + | 'rtc_region' + | 'video_quality_mode' | 'flags' > > &