feat(AutoModeration): v13 support customMessage

#9173 djs
This commit is contained in:
Elysia
2023-04-14 18:39:56 +07:00
parent 288be9b0a1
commit 7f565e1848
4 changed files with 7 additions and 0 deletions

View File

@@ -103,6 +103,7 @@ class AutoModerationRule extends Base {
* @typedef {Object} AutoModerationActionMetadata
* @property {?Snowflake} channelId The id of the channel to which content will be logged
* @property {?number} durationSeconds The timeout duration in seconds
* @property {?string} customMessage The custom message that is shown whenever a message is blocked
*/
/**
@@ -114,6 +115,7 @@ class AutoModerationRule extends Base {
metadata: {
durationSeconds: action.metadata.duration_seconds ?? null,
channelId: action.metadata.channel_id ?? null,
customMessage: action.metadata.custom_message ?? null,
},
}));
}