From 520de0fb70ea072033b007764d8dd4bd4596932c Mon Sep 17 00:00:00 2001 From: ITOH Date: Wed, 29 Mar 2023 07:33:05 +0200 Subject: [PATCH] docs(types): update `CreateGuildStickerOptions` file size (#2889) Previously the maximum file size has been documented as 500 KB. This has now been updated to 512 KB. Closes: https://github.com/discordeno/discordeno/issues/2875 --- packages/types/src/discordeno.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/src/discordeno.ts b/packages/types/src/discordeno.ts index c6050f32b..143b548a4 100644 --- a/packages/types/src/discordeno.ts +++ b/packages/types/src/discordeno.ts @@ -1022,7 +1022,7 @@ export interface CreateGuildStickerOptions extends WithReason { description: string /** Autocomplete/suggestion tags for the sticker (max 200 characters) */ tags: string - /** The sticker file to upload, must be a PNG, APNG, or Lottie JSON file, max 500 KB */ + /** The sticker file to upload, must be a PNG, APNG, or Lottie JSON file, max 512 KB */ file: FileContent }