Skip to content

Commit

Permalink
fix(RESTPatchAPIGuildVoiceStateCurrentMemberJSONBody): channel_id i…
Browse files Browse the repository at this point in the history
…s optional (#547)
  • Loading branch information
vvito7 committed Aug 29, 2022
1 parent 4e362d5 commit b7b855b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deno/rest/v10/guild.ts
Expand Up @@ -861,7 +861,7 @@ export type RESTPatchAPIGuildVoiceStateCurrentMemberJSONBody = AddUndefinedToPos
/**
* The id of the channel the user is currently in
*/
channel_id: Snowflake;
channel_id?: Snowflake;
/**
* Toggles the user's suppress state
*/
Expand Down
2 changes: 1 addition & 1 deletion deno/rest/v9/guild.ts
Expand Up @@ -867,7 +867,7 @@ export type RESTPatchAPIGuildVoiceStateCurrentMemberJSONBody = AddUndefinedToPos
/**
* The id of the channel the user is currently in
*/
channel_id: Snowflake;
channel_id?: Snowflake;
/**
* Toggles the user's suppress state
*/
Expand Down
2 changes: 1 addition & 1 deletion rest/v10/guild.ts
Expand Up @@ -861,7 +861,7 @@ export type RESTPatchAPIGuildVoiceStateCurrentMemberJSONBody = AddUndefinedToPos
/**
* The id of the channel the user is currently in
*/
channel_id: Snowflake;
channel_id?: Snowflake;
/**
* Toggles the user's suppress state
*/
Expand Down
2 changes: 1 addition & 1 deletion rest/v9/guild.ts
Expand Up @@ -867,7 +867,7 @@ export type RESTPatchAPIGuildVoiceStateCurrentMemberJSONBody = AddUndefinedToPos
/**
* The id of the channel the user is currently in
*/
channel_id: Snowflake;
channel_id?: Snowflake;
/**
* Toggles the user's suppress state
*/
Expand Down

0 comments on commit b7b855b

Please sign in to comment.