diff --git a/deno/payloads/v8/guild.ts b/deno/payloads/v8/guild.ts index fa2c0b0f..988a53f1 100644 --- a/deno/payloads/v8/guild.ts +++ b/deno/payloads/v8/guild.ts @@ -297,7 +297,18 @@ export interface APIGuild extends APIPartialGuild { * **This field is only received from https://discord.com/developers/docs/resources/guild#get-guild with the `with_counts` query parameter set to `true`** */ approximate_presence_count?: number; + /** + * The welcome screen of a Community guild, shown to new members + * + * Returned in the invite object + */ welcome_screen?: APIGuildWelcomeScreen; + /** + * `true` if this guild is designated as NSFW + * + * See https://support.discord.com/hc/en-us/articles/1500005389362-NSFW-Server-Designation + */ + nsfw: boolean; } /** diff --git a/payloads/v8/guild.ts b/payloads/v8/guild.ts index 80f44783..1187e750 100644 --- a/payloads/v8/guild.ts +++ b/payloads/v8/guild.ts @@ -297,7 +297,18 @@ export interface APIGuild extends APIPartialGuild { * **This field is only received from https://discord.com/developers/docs/resources/guild#get-guild with the `with_counts` query parameter set to `true`** */ approximate_presence_count?: number; + /** + * The welcome screen of a Community guild, shown to new members + * + * Returned in the invite object + */ welcome_screen?: APIGuildWelcomeScreen; + /** + * `true` if this guild is designated as NSFW + * + * See https://support.discord.com/hc/en-us/articles/1500005389362-NSFW-Server-Designation + */ + nsfw: boolean; } /**