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
This commit is contained in:
ITOH
2023-03-29 00:33:05 -05:00
committed by GitHub
parent 06b1f15d87
commit 3a8172caec
+1 -1
View File
@@ -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
}