From 03f02a5a9ee2e533b58b7790c4deb7ad571e5a92 Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Wed, 30 Jul 2025 12:38:21 +0100 Subject: [PATCH] feat(GuildFeature): add `GUILD_TAGS` (#1315) --- deno/payloads/v10/guild.ts | 4 ++++ deno/payloads/v9/guild.ts | 4 ++++ payloads/v10/guild.ts | 4 ++++ payloads/v9/guild.ts | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/deno/payloads/v10/guild.ts b/deno/payloads/v10/guild.ts index 6cf1b4b4..2b47431f 100644 --- a/deno/payloads/v10/guild.ts +++ b/deno/payloads/v10/guild.ts @@ -565,6 +565,10 @@ export enum GuildFeature { * Guild has enabled the welcome screen */ WelcomeScreenEnabled = 'WELCOME_SCREEN_ENABLED', + /** + * Guild has access to set guild tags + */ + GuildTags = 'GUILD_TAGS', /** * Guild is able to set gradient colors to roles */ diff --git a/deno/payloads/v9/guild.ts b/deno/payloads/v9/guild.ts index b4db6714..bb55806f 100644 --- a/deno/payloads/v9/guild.ts +++ b/deno/payloads/v9/guild.ts @@ -557,6 +557,10 @@ export enum GuildFeature { * Guild has enabled the welcome screen */ WelcomeScreenEnabled = 'WELCOME_SCREEN_ENABLED', + /** + * Guild has access to set guild tags + */ + GuildTags = 'GUILD_TAGS', /** * Guild is able to set gradient colors to roles */ diff --git a/payloads/v10/guild.ts b/payloads/v10/guild.ts index 128ed5a3..d4a39402 100644 --- a/payloads/v10/guild.ts +++ b/payloads/v10/guild.ts @@ -565,6 +565,10 @@ export enum GuildFeature { * Guild has enabled the welcome screen */ WelcomeScreenEnabled = 'WELCOME_SCREEN_ENABLED', + /** + * Guild has access to set guild tags + */ + GuildTags = 'GUILD_TAGS', /** * Guild is able to set gradient colors to roles */ diff --git a/payloads/v9/guild.ts b/payloads/v9/guild.ts index 4fef1d2c..e122dba9 100644 --- a/payloads/v9/guild.ts +++ b/payloads/v9/guild.ts @@ -557,6 +557,10 @@ export enum GuildFeature { * Guild has enabled the welcome screen */ WelcomeScreenEnabled = 'WELCOME_SCREEN_ENABLED', + /** + * Guild has access to set guild tags + */ + GuildTags = 'GUILD_TAGS', /** * Guild is able to set gradient colors to roles */