From 65da837673142267a92aea28ecd65d3c05aa0706 Mon Sep 17 00:00:00 2001 From: Almeida Date: Thu, 10 Nov 2022 20:30:28 +0000 Subject: [PATCH] feat(UserFlags): add `ActiveDeveloper` (#638) --- deno/payloads/v10/user.ts | 4 ++++ deno/payloads/v9/user.ts | 4 ++++ payloads/v10/user.ts | 4 ++++ payloads/v9/user.ts | 4 ++++ 4 files changed, 16 insertions(+) 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 *