Skip to content

Commit 63ca86a

Browse files
author
Vitor
authored
docs(RESTPatchAPIChannelJSONBody): voice channels can be set as nsfw (#474)
1 parent 20653b3 commit 63ca86a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

deno/rest/v10/channel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert
6464
/**
6565
* Whether the channel is nsfw
6666
*
67-
* Channel types: text, news
67+
* Channel types: text, voice, news
6868
*/
6969
nsfw?: boolean | null;
7070
/**
@@ -96,7 +96,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert
9696
/**
9797
* ID of the new parent category for a channel
9898
*
99-
* Channel types: text, news, voice
99+
* Channel types: text, voice, news
100100
*/
101101
parent_id?: Snowflake | null;
102102
/**

deno/rest/v9/channel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert
6464
/**
6565
* Whether the channel is nsfw
6666
*
67-
* Channel types: text, news
67+
* Channel types: text, voice, news
6868
*/
6969
nsfw?: boolean | null;
7070
/**
@@ -96,7 +96,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert
9696
/**
9797
* ID of the new parent category for a channel
9898
*
99-
* Channel types: text, news, voice
99+
* Channel types: text, voice, news
100100
*/
101101
parent_id?: Snowflake | null;
102102
/**

rest/v10/channel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert
6464
/**
6565
* Whether the channel is nsfw
6666
*
67-
* Channel types: text, news
67+
* Channel types: text, voice, news
6868
*/
6969
nsfw?: boolean | null;
7070
/**
@@ -96,7 +96,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert
9696
/**
9797
* ID of the new parent category for a channel
9898
*
99-
* Channel types: text, news, voice
99+
* Channel types: text, voice, news
100100
*/
101101
parent_id?: Snowflake | null;
102102
/**

rest/v9/channel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert
6464
/**
6565
* Whether the channel is nsfw
6666
*
67-
* Channel types: text, news
67+
* Channel types: text, voice, news
6868
*/
6969
nsfw?: boolean | null;
7070
/**
@@ -96,7 +96,7 @@ export type RESTPatchAPIChannelJSONBody = AddUndefinedToPossiblyUndefinedPropert
9696
/**
9797
* ID of the new parent category for a channel
9898
*
99-
* Channel types: text, news, voice
99+
* Channel types: text, voice, news
100100
*/
101101
parent_id?: Snowflake | null;
102102
/**

0 commit comments

Comments
 (0)