Skip to content

Commit

Permalink
feat(RESTPatchAPIGuildMember): add communication_disabled_until fie…
Browse files Browse the repository at this point in the history
…ld (#289)
  • Loading branch information
bleonard252 committed Jan 7, 2022
1 parent 7ecf9b2 commit 5056b0f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deno/rest/v8/guild.ts
Expand Up @@ -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;
}>;

/**
Expand Down
4 changes: 4 additions & 0 deletions deno/rest/v9/guild.ts
Expand Up @@ -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;
}>;

/**
Expand Down
4 changes: 4 additions & 0 deletions rest/v8/guild.ts
Expand Up @@ -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;
}>;

/**
Expand Down
4 changes: 4 additions & 0 deletions rest/v9/guild.ts
Expand Up @@ -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;
}>;

/**
Expand Down

0 comments on commit 5056b0f

Please sign in to comment.