diff --git a/deno/rest/v8/guild.ts b/deno/rest/v8/guild.ts index 82cbb8bb4..69c6585ef 100644 --- a/deno/rest/v8/guild.ts +++ b/deno/rest/v8/guild.ts @@ -435,6 +435,10 @@ export type RESTPatchAPIGuildMemberJSONBody = AddUndefinedToPossiblyUndefinedPro * Requires `MOVE_MEMBERS` permission */ channel_id?: Snowflake | null; + /** + * Timestamp of when the time out will be removed; until then, they cannot interact with the guild + */ + communication_disabled_until?: string | null; }>; /** diff --git a/deno/rest/v9/guild.ts b/deno/rest/v9/guild.ts index 5d15c743c..95d2e5d38 100644 --- a/deno/rest/v9/guild.ts +++ b/deno/rest/v9/guild.ts @@ -441,6 +441,10 @@ export type RESTPatchAPIGuildMemberJSONBody = AddUndefinedToPossiblyUndefinedPro * Requires `MOVE_MEMBERS` permission */ channel_id?: Snowflake | null; + /** + * Timestamp of when the time out will be removed; until then, they cannot interact with the guild + */ + communication_disabled_until?: string | null; }>; /** diff --git a/rest/v8/guild.ts b/rest/v8/guild.ts index 2e66f953d..b9f898b0e 100644 --- a/rest/v8/guild.ts +++ b/rest/v8/guild.ts @@ -435,6 +435,10 @@ export type RESTPatchAPIGuildMemberJSONBody = AddUndefinedToPossiblyUndefinedPro * Requires `MOVE_MEMBERS` permission */ channel_id?: Snowflake | null; + /** + * Timestamp of when the time out will be removed; until then, they cannot interact with the guild + */ + communication_disabled_until?: string | null; }>; /** diff --git a/rest/v9/guild.ts b/rest/v9/guild.ts index 4be835a93..eae103991 100644 --- a/rest/v9/guild.ts +++ b/rest/v9/guild.ts @@ -441,6 +441,10 @@ export type RESTPatchAPIGuildMemberJSONBody = AddUndefinedToPossiblyUndefinedPro * Requires `MOVE_MEMBERS` permission */ channel_id?: Snowflake | null; + /** + * Timestamp of when the time out will be removed; until then, they cannot interact with the guild + */ + communication_disabled_until?: string | null; }>; /**