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;