Skip to content

Commit

Permalink
feat: Add API error code 50109 (#7112)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiralite committed Dec 16, 2021
1 parent 8efc5c7 commit 55960cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/util/Constants.js
Expand Up @@ -758,6 +758,7 @@ exports.VerificationLevels = createEnum(['NONE', 'LOW', 'MEDIUM', 'HIGH', 'VERY_
* * GUILD_NOT_AVAILABLE_IN_LOCATION
* * GUILD_MONETIZATION_REQUIRED
* * INSUFFICIENT_BOOSTS
* * INVALID_JSON
* * TWO_FACTOR_REQUIRED
* * NO_USERS_WITH_DISCORDTAG_EXIST
* * REACTION_BLOCKED
Expand Down Expand Up @@ -901,6 +902,7 @@ exports.APIErrors = {
GUILD_NOT_AVAILABLE_IN_LOCATION: 50095,
GUILD_MONETIZATION_REQUIRED: 50097,
INSUFFICIENT_BOOSTS: 50101,
INVALID_JSON: 50109,
TWO_FACTOR_REQUIRED: 60003,
NO_USERS_WITH_DISCORDTAG_EXIST: 80004,
REACTION_BLOCKED: 90001,
Expand Down
1 change: 1 addition & 0 deletions typings/index.d.ts
Expand Up @@ -3417,6 +3417,7 @@ export interface APIErrors {
GUILD_NOT_AVAILABLE_IN_LOCATION: 50095;
GUILD_MONETIZATION_REQUIRED: 50097;
INSUFFICIENT_BOOSTS: 50101;
INVALID_JSON: 50109;
TWO_FACTOR_REQUIRED: 60003;
NO_USERS_WITH_DISCORDTAG_EXIST: 80004;
REACTION_BLOCKED: 90001;
Expand Down

0 comments on commit 55960cc

Please sign in to comment.