camelize modifyGuildMember and I forgot to add the actual prop

This commit is contained in:
lts20050703
2021-12-22 22:04:37 +07:00
parent 2889814abc
commit b11d334ac8
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -11,5 +11,5 @@ export interface ModifyGuildMember {
/** Id of channel to move user to (if they are connected to voice). Requires the `MOVE_MEMBERS` permission */
channelId?: bigint | null;
/** when the user's timeout will expire and the user will be able to communicate in the guild again (up to 28 days in the future), set to null to remove timeout. Requires the `MODERATE_MEMBERS` permission */
communication_disabled_until?: number;
communicationDisabledUntil?: number;
}
+1
View File
@@ -23,4 +23,5 @@ export interface GuildMemberUpdate {
/** Whether the user has not yet passed the guild's Membership Screening requirements */
pending?: boolean;
/** when the user's [timeout](https://support.discord.com/hc/en-us/articles/4413305239191-Time-Out-FAQ) will expire and the user will be able to communicate in the guild again, null or a time in the past if the user is not timed out */
communicationDisabledUntil?: number;
}