Skip to content

Commit

Permalink
feat(UserFlags): add ActiveDeveloper (#638)
Browse files Browse the repository at this point in the history
  • Loading branch information
almeidx committed Nov 10, 2022
1 parent 5e85424 commit 65da837
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deno/payloads/v10/user.ts
Expand Up @@ -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
*
Expand Down
4 changes: 4 additions & 0 deletions deno/payloads/v9/user.ts
Expand Up @@ -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
*
Expand Down
4 changes: 4 additions & 0 deletions payloads/v10/user.ts
Expand Up @@ -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
*
Expand Down
4 changes: 4 additions & 0 deletions payloads/v9/user.ts
Expand Up @@ -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
*
Expand Down

1 comment on commit 65da837

@vercel
Copy link

@vercel vercel bot commented on 65da837 Nov 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.