diff --git a/src/structures/Guild.js b/src/structures/Guild.js index ec86c4232..ba32506f6 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -160,12 +160,14 @@ class Guild extends Base { * * DISCOVERABLE * * FEATURABLE * * INVITE_SPLASH - * * PUBLIC * * NEWS * * PARTNERED + * * PUBLIC + * * PUBLIC_DISABLED * * VANITY_URL * * VERIFIED * * VIP_REGIONS + * * WELCOME_SCREEN_ENABLED * @typedef {string} Features */ diff --git a/typings/index.d.ts b/typings/index.d.ts index 407bf034c..b23b36bbe 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -2510,12 +2510,14 @@ declare module 'discord.js' { | 'DISCOVERABLE' | 'FEATURABLE' | 'INVITE_SPLASH' - | 'PUBLIC' | 'NEWS' | 'PARTNERED' + | 'PUBLIC' + | 'PUBLIC_DISABLED' | 'VANITY_URL' | 'VERIFIED' - | 'VIP_REGIONS'; + | 'VIP_REGIONS' + | 'WELCOME_SCREEN_ENABLED'; interface GuildMemberEditData { nick?: string;