Skip to content

Commit

Permalink
feat: add api error code 50101 (#6663)
Browse files Browse the repository at this point in the history
  • Loading branch information
iShibi committed Sep 26, 2021
1 parent 94ca0f5 commit 42fdcaa
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 @@ -695,6 +695,7 @@ exports.VerificationLevels = createEnum(['NONE', 'LOW', 'MEDIUM', 'HIGH', 'VERY_
* * PARAMETER_EARLIER_THAN_CREATION
* * GUILD_NOT_AVAILABLE_IN_LOCATION
* * GUILD_MONETIZATION_REQUIRED
* * INSUFFICIENT_BOOSTS
* * TWO_FACTOR_REQUIRED
* * NO_USERS_WITH_DISCORDTAG_EXIST
* * REACTION_BLOCKED
Expand Down Expand Up @@ -828,6 +829,7 @@ exports.APIErrors = {
PARAMETER_EARLIER_THAN_CREATION: 50085,
GUILD_NOT_AVAILABLE_IN_LOCATION: 50095,
GUILD_MONETIZATION_REQUIRED: 50097,
INSUFFICIENT_BOOSTS: 50101,
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 @@ -2999,6 +2999,7 @@ export interface APIErrors {
PARAMETER_EARLIER_THAN_CREATION: 50085;
GUILD_NOT_AVAILABLE_IN_LOCATION: 50095;
GUILD_MONETIZATION_REQUIRED: 50097;
INSUFFICIENT_BOOSTS: 50101;
TWO_FACTOR_REQUIRED: 60003;
NO_USERS_WITH_DISCORDTAG_EXIST: 80004;
REACTION_BLOCKED: 90001;
Expand Down

0 comments on commit 42fdcaa

Please sign in to comment.