diff --git a/deno/payloads/v10/user.ts b/deno/payloads/v10/user.ts index 7de5d7d7f..309926ab4 100644 --- a/deno/payloads/v10/user.ts +++ b/deno/payloads/v10/user.ts @@ -147,6 +147,10 @@ export enum UserFlags { * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. */ Spammer = 1 << 20, + /** + * User is an [Active Developer](https://support-dev.discord.com/hc/articles/10113997751447) + */ + ActiveDeveloper = 1 << 22, /** * User's account has been quarantined based on recent activity * diff --git a/deno/payloads/v9/user.ts b/deno/payloads/v9/user.ts index be45bdcbe..fc556015c 100644 --- a/deno/payloads/v9/user.ts +++ b/deno/payloads/v9/user.ts @@ -147,6 +147,10 @@ export enum UserFlags { * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. */ Spammer = 1 << 20, + /** + * User is an [Active Developer](https://support-dev.discord.com/hc/articles/10113997751447) + */ + ActiveDeveloper = 1 << 22, /** * User's account has been quarantined based on recent activity * diff --git a/payloads/v10/user.ts b/payloads/v10/user.ts index afb98f7cb..5b72e7cef 100644 --- a/payloads/v10/user.ts +++ b/payloads/v10/user.ts @@ -147,6 +147,10 @@ export enum UserFlags { * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. */ Spammer = 1 << 20, + /** + * User is an [Active Developer](https://support-dev.discord.com/hc/articles/10113997751447) + */ + ActiveDeveloper = 1 << 22, /** * User's account has been quarantined based on recent activity * diff --git a/payloads/v9/user.ts b/payloads/v9/user.ts index 460dc3e3d..a95423e66 100644 --- a/payloads/v9/user.ts +++ b/payloads/v9/user.ts @@ -147,6 +147,10 @@ export enum UserFlags { * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. */ Spammer = 1 << 20, + /** + * User is an [Active Developer](https://support-dev.discord.com/hc/articles/10113997751447) + */ + ActiveDeveloper = 1 << 22, /** * User's account has been quarantined based on recent activity *