From 63ca86afbd27566aeed1ea8a3004d5d278169e50 Mon Sep 17 00:00:00 2001 From: Vitor Date: Wed, 8 Jun 2022 19:54:54 +0100 Subject: [PATCH] docs(RESTPatchAPIChannelJSONBody): voice channels can be set as nsfw (#474) --- deno/rest/v10/channel.ts | 4 ++-- deno/rest/v9/channel.ts | 4 ++-- rest/v10/channel.ts | 4 ++-- rest/v9/channel.ts | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/deno/rest/v10/channel.ts b/deno/rest/v10/channel.ts index f260fa61..72ad9ac0 100644 --- a/deno/rest/v10/channel.ts +++ b/deno/rest/v10/channel.ts @@ -64,7 +64,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert /** * Whether the channel is nsfw * - * Channel types: text, news + * Channel types: text, voice, news */ nsfw?: boolean | null; /** @@ -96,7 +96,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert /** * ID of the new parent category for a channel * - * Channel types: text, news, voice + * Channel types: text, voice, news */ parent_id?: Snowflake | null; /** diff --git a/deno/rest/v9/channel.ts b/deno/rest/v9/channel.ts index 3aab0b94..55163fd3 100644 --- a/deno/rest/v9/channel.ts +++ b/deno/rest/v9/channel.ts @@ -64,7 +64,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert /** * Whether the channel is nsfw * - * Channel types: text, news + * Channel types: text, voice, news */ nsfw?: boolean | null; /** @@ -96,7 +96,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert /** * ID of the new parent category for a channel * - * Channel types: text, news, voice + * Channel types: text, voice, news */ parent_id?: Snowflake | null; /** diff --git a/rest/v10/channel.ts b/rest/v10/channel.ts index 08691db3..b35f64e5 100644 --- a/rest/v10/channel.ts +++ b/rest/v10/channel.ts @@ -64,7 +64,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert /** * Whether the channel is nsfw * - * Channel types: text, news + * Channel types: text, voice, news */ nsfw?: boolean | null; /** @@ -96,7 +96,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert /** * ID of the new parent category for a channel * - * Channel types: text, news, voice + * Channel types: text, voice, news */ parent_id?: Snowflake | null; /** diff --git a/rest/v9/channel.ts b/rest/v9/channel.ts index 175d6f3c..6eea82fc 100644 --- a/rest/v9/channel.ts +++ b/rest/v9/channel.ts @@ -64,7 +64,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert /** * Whether the channel is nsfw * - * Channel types: text, news + * Channel types: text, voice, news */ nsfw?: boolean | null; /** @@ -96,7 +96,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert /** * ID of the new parent category for a channel * - * Channel types: text, news, voice + * Channel types: text, voice, news */ parent_id?: Snowflake | null; /**