From 2ecf50b131677d38246e841b0db8ac38aa3414d8 Mon Sep 17 00:00:00 2001 From: March 7th <71698422+aiko-chan-ai@users.noreply.github.com> Date: Sat, 14 Jan 2023 18:05:40 +0700 Subject: [PATCH] feat: backport automod --- src/structures/Guild.js | 1 + typings/index.d.ts | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/structures/Guild.js b/src/structures/Guild.js index 6c21999..f56e149 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -248,6 +248,7 @@ class Guild extends AnonymousGuild { * * SEVEN_DAY_THREAD_ARCHIVE * * PRIVATE_THREADS * * ROLE_ICONS + * * AUTO_MODERATION * @typedef {string} Features * @see {@link https://discord.com/developers/docs/resources/guild#guild-object-guild-features} */ diff --git a/typings/index.d.ts b/typings/index.d.ts index 4363278..30168c6 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -6098,7 +6098,8 @@ export type GuildFeatures = | 'THREE_DAY_THREAD_ARCHIVE' | 'SEVEN_DAY_THREAD_ARCHIVE' | 'PRIVATE_THREADS' - | 'ROLE_ICONS'; + | 'ROLE_ICONS' + | 'AUTO_MODERATION'; export interface GuildMemberEditData { nick?: string | null;