diff --git a/deno/rest/v10/guild.ts b/deno/rest/v10/guild.ts index f9441201..8d013d11 100644 --- a/deno/rest/v10/guild.ts +++ b/deno/rest/v10/guild.ts @@ -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 */ diff --git a/deno/rest/v9/guild.ts b/deno/rest/v9/guild.ts index 7c9b9bd8..0b319ca7 100644 --- a/deno/rest/v9/guild.ts +++ b/deno/rest/v9/guild.ts @@ -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 */ diff --git a/rest/v10/guild.ts b/rest/v10/guild.ts index 4ce3b5d3..3edda535 100644 --- a/rest/v10/guild.ts +++ b/rest/v10/guild.ts @@ -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 */ diff --git a/rest/v9/guild.ts b/rest/v9/guild.ts index 491497e9..15acad87 100644 --- a/rest/v9/guild.ts +++ b/rest/v9/guild.ts @@ -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 */