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