feat(GuildAuditLogsEntry): add missing channel property to extra (#9527)

feat(GuildAuditLogsEntry#extra): add missing `channel` property (#9518)

Co-authored-by: Synbulat Biishev <syjalo.dev@gmail.com>
This commit is contained in:
Jaw0r3k
2023-05-07 02:54:06 +02:00
committed by GitHub
parent ad57e88744
commit c5a42ed5ec
2 changed files with 4 additions and 0 deletions

3
typings/index.d.ts vendored
View File

@@ -5312,14 +5312,17 @@ export interface GuildAuditLogsEntryExtraField {
AUTO_MODERATION_BLOCK_MESSAGE: {
autoModerationRuleName: string;
autoModerationRuleTriggerType: AutoModerationRuleTriggerType;
channel: GuildTextBasedChannel | { id: Snowflake };
};
AUTO_MODERATION_FLAG_TO_CHANNEL: {
autoModerationRuleName: string;
autoModerationRuleTriggerType: AutoModerationRuleTriggerType;
channel: GuildTextBasedChannel | { id: Snowflake };
};
AUTO_MODERATION_USER_COMMUNICATIONDISABLED: {
autoModerationRuleName: string;
autoModerationRuleTriggerType: AutoModerationRuleTriggerType;
channel: GuildTextBasedChannel | { id: Snowflake };
};
}