feat(RESTJSONErrorCode): add UnknownInteraction error code (#115)

This commit is contained in:
Vlad Frangu
2021-04-14 19:39:12 +03:00
committed by GitHub
parent a95f40e5b8
commit ced37d0a5e
2 changed files with 4 additions and 2 deletions

View File

@@ -32,7 +32,8 @@ export enum RESTJSONErrorCodes {
UnknownGuildTemplate = 10057,
UnknownApplicationCommand = 10063,
UnknownInteraction = 10062,
UnknownApplicationCommand,
BotsCannotUseThisEndpoint = 20001,
OnlyBotsCanUseThisEndpoint,

View File

@@ -32,7 +32,8 @@ export const enum RESTJSONErrorCodes {
UnknownGuildTemplate = 10057,
UnknownApplicationCommand = 10063,
UnknownInteraction = 10062,
UnknownApplicationCommand,
BotsCannotUseThisEndpoint = 20001,
OnlyBotsCanUseThisEndpoint,