From 09a114133c7599cc14d4a0eb61425162091c45ee Mon Sep 17 00:00:00 2001 From: Vitor Date: Fri, 15 Jul 2022 21:53:58 +0100 Subject: [PATCH] feat(RESTJSONErrorCodes): add `ApplicationNotYetAvailable` (#507) --- 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 813852c6..3840d359 100644 --- a/deno/rest/common.ts +++ b/deno/rest/common.ts @@ -210,6 +210,8 @@ export enum RESTJSONErrorCodes { ReactionWasBlocked = 90001, + ApplicationNotYetAvailable = 110001, + APIResourceOverloaded = 130000, TheStageIsAlreadyOpen = 150006, diff --git a/rest/common.ts b/rest/common.ts index 813852c6..3840d359 100644 --- a/rest/common.ts +++ b/rest/common.ts @@ -210,6 +210,8 @@ export enum RESTJSONErrorCodes { ReactionWasBlocked = 90001, + ApplicationNotYetAvailable = 110001, + APIResourceOverloaded = 130000, TheStageIsAlreadyOpen = 150006,