From 43cfbcba284a96de6bde101b866ad9ac306992b5 Mon Sep 17 00:00:00 2001 From: Vitor Lopes Date: Fri, 29 Apr 2022 21:30:09 +0100 Subject: [PATCH] feat(RESTJSONErrorCodes): add error `50080` (#408) --- deno/rest/common.ts | 3 ++- rest/common.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/deno/rest/common.ts b/deno/rest/common.ts index 025d7861..a3e804cb 100644 --- a/deno/rest/common.ts +++ b/deno/rest/common.ts @@ -179,7 +179,8 @@ export enum RESTJSONErrorCodes { CannotDeleteChannelRequiredForCommunityGuilds = 50074, - InvalidStickerSent = 50081, + CannotEditStickersWithinMessage = 50080, + InvalidStickerSent, InvalidActionOnArchivedThread = 50083, InvalidThreadNotificationSettings, diff --git a/rest/common.ts b/rest/common.ts index 025d7861..a3e804cb 100644 --- a/rest/common.ts +++ b/rest/common.ts @@ -179,7 +179,8 @@ export enum RESTJSONErrorCodes { CannotDeleteChannelRequiredForCommunityGuilds = 50074, - InvalidStickerSent = 50081, + CannotEditStickersWithinMessage = 50080, + InvalidStickerSent, InvalidActionOnArchivedThread = 50083, InvalidThreadNotificationSettings,