From b453d75e4d13d34836247929be56c042cbc4b762 Mon Sep 17 00:00:00 2001 From: Suneet Tipirneni <77477100+suneettipirneni@users.noreply.github.com> Date: Sat, 2 Oct 2021 08:26:31 -0400 Subject: [PATCH] feat(RESTJSONErrorCodes): add error 50101 (#202) --- deno/rest/common.ts | 2 ++ rest/common.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/deno/rest/common.ts b/deno/rest/common.ts index 481ca0fd..41bb7725 100644 --- a/deno/rest/common.ts +++ b/deno/rest/common.ts @@ -172,6 +172,8 @@ export enum RESTJSONErrorCodes { ServerNeedsMonetizationEnabledToPerformThisAction = 50097, + ServerNeedsMoreBoostsToPerformThisAction = 50101, + TwoFactorAuthenticationIsRequired = 60003, NoUsersWithDiscordTagExist = 80004, diff --git a/rest/common.ts b/rest/common.ts index 6899959b..ba3a30d3 100644 --- a/rest/common.ts +++ b/rest/common.ts @@ -172,6 +172,8 @@ export const enum RESTJSONErrorCodes { ServerNeedsMonetizationEnabledToPerformThisAction = 50097, + ServerNeedsMoreBoostsToPerformThisAction = 50101, + TwoFactorAuthenticationIsRequired = 60003, NoUsersWithDiscordTagExist = 80004,