From 485fd1bc672c3abecb358e389b668cdafe3c02c0 Mon Sep 17 00:00:00 2001 From: Fleny Date: Mon, 11 Aug 2025 18:45:33 +0200 Subject: [PATCH] fix(types)!: Sort & fix sticker.ts types (#4296) * Sort & fix sticker.ts types * Update packages/types/src/discord/sticker.ts Co-authored-by: Link --------- Co-authored-by: Link --- packages/types/src/discord/sticker.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/packages/types/src/discord/sticker.ts b/packages/types/src/discord/sticker.ts index e4470b643..3087cf1ad 100644 --- a/packages/types/src/discord/sticker.ts +++ b/packages/types/src/discord/sticker.ts @@ -11,8 +11,13 @@ export interface DiscordSticker { /** Name of the sticker */ name: string /** Description of the sticker */ - description: string - /** a unicode emoji representing the sticker's expression */ + description: string | null + /** + * Autocomplete/suggestion tags for the sticker + * @remarks + * Max 200 characters + * A comma separated list of keywords is the format used in this field by standard stickers, but this is just a convention. Incidentally the client will always use a name generated from an emoji as the value of this field when creating or modifying a guild sticker. + */ tags: string /** [type of sticker](https://discord.com/developers/docs/resources/sticker#sticker-object-sticker-types) */ type: StickerTypes