From a2d76fc7ca7b8e8bf3152cfce4a6a8a23610654d Mon Sep 17 00:00:00 2001 From: MateoDeveloper <79017590+Mateo-tem@users.noreply.github.com> Date: Mon, 20 Jun 2022 17:46:38 -0500 Subject: [PATCH] chore(UserFlags): add `@unstable` to `Spammer` flag (#500) --- deno/payloads/v10/user.ts | 2 ++ deno/payloads/v8/user.ts | 2 ++ deno/payloads/v9/user.ts | 2 ++ payloads/v10/user.ts | 2 ++ payloads/v8/user.ts | 2 ++ payloads/v9/user.ts | 2 ++ 6 files changed, 12 insertions(+) diff --git a/deno/payloads/v10/user.ts b/deno/payloads/v10/user.ts index 4315ddf6..647cce72 100644 --- a/deno/payloads/v10/user.ts +++ b/deno/payloads/v10/user.ts @@ -143,6 +143,8 @@ export enum UserFlags { BotHTTPInteractions = 1 << 19, /** * User has been identified as spammer + * + * @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, } diff --git a/deno/payloads/v8/user.ts b/deno/payloads/v8/user.ts index fbc93a9a..ba994f03 100644 --- a/deno/payloads/v8/user.ts +++ b/deno/payloads/v8/user.ts @@ -145,6 +145,8 @@ export enum UserFlags { BotHTTPInteractions = 1 << 19, /** * User has been identified as spammer + * + * @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, } diff --git a/deno/payloads/v9/user.ts b/deno/payloads/v9/user.ts index 4315ddf6..647cce72 100644 --- a/deno/payloads/v9/user.ts +++ b/deno/payloads/v9/user.ts @@ -143,6 +143,8 @@ export enum UserFlags { BotHTTPInteractions = 1 << 19, /** * User has been identified as spammer + * + * @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, } diff --git a/payloads/v10/user.ts b/payloads/v10/user.ts index 0ec8b8f6..b15bd545 100644 --- a/payloads/v10/user.ts +++ b/payloads/v10/user.ts @@ -143,6 +143,8 @@ export enum UserFlags { BotHTTPInteractions = 1 << 19, /** * User has been identified as spammer + * + * @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, } diff --git a/payloads/v8/user.ts b/payloads/v8/user.ts index a5d65670..06205d71 100644 --- a/payloads/v8/user.ts +++ b/payloads/v8/user.ts @@ -145,6 +145,8 @@ export enum UserFlags { BotHTTPInteractions = 1 << 19, /** * User has been identified as spammer + * + * @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, } diff --git a/payloads/v9/user.ts b/payloads/v9/user.ts index 0ec8b8f6..b15bd545 100644 --- a/payloads/v9/user.ts +++ b/payloads/v9/user.ts @@ -143,6 +143,8 @@ export enum UserFlags { BotHTTPInteractions = 1 << 19, /** * User has been identified as spammer + * + * @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, }