diff --git a/deno/payloads/v8/sticker.ts b/deno/payloads/v8/sticker.ts index 538cf93e..15aae2e0 100644 --- a/deno/payloads/v8/sticker.ts +++ b/deno/payloads/v8/sticker.ts @@ -93,7 +93,7 @@ export enum StickerFormatType { export type APIStickerItem = Pick; /** - * https://discord.com/developers/docs/resources/sticker#sticker-object + * https://discord.com/developers/docs/resources/sticker#sticker-pack-object */ export interface APIStickerPack { /** @@ -123,5 +123,5 @@ export interface APIStickerPack { /** * ID of the sticker pack's banner image */ - banner_asset_id: Snowflake; + banner_asset_id?: Snowflake; } diff --git a/deno/payloads/v9/sticker.ts b/deno/payloads/v9/sticker.ts index 538cf93e..15aae2e0 100644 --- a/deno/payloads/v9/sticker.ts +++ b/deno/payloads/v9/sticker.ts @@ -93,7 +93,7 @@ export enum StickerFormatType { export type APIStickerItem = Pick; /** - * https://discord.com/developers/docs/resources/sticker#sticker-object + * https://discord.com/developers/docs/resources/sticker#sticker-pack-object */ export interface APIStickerPack { /** @@ -123,5 +123,5 @@ export interface APIStickerPack { /** * ID of the sticker pack's banner image */ - banner_asset_id: Snowflake; + banner_asset_id?: Snowflake; } diff --git a/payloads/v8/sticker.ts b/payloads/v8/sticker.ts index 1582dbf0..0e86c561 100644 --- a/payloads/v8/sticker.ts +++ b/payloads/v8/sticker.ts @@ -93,7 +93,7 @@ export const enum StickerFormatType { export type APIStickerItem = Pick; /** - * https://discord.com/developers/docs/resources/sticker#sticker-object + * https://discord.com/developers/docs/resources/sticker#sticker-pack-object */ export interface APIStickerPack { /** @@ -123,5 +123,5 @@ export interface APIStickerPack { /** * ID of the sticker pack's banner image */ - banner_asset_id: Snowflake; + banner_asset_id?: Snowflake; } diff --git a/payloads/v9/sticker.ts b/payloads/v9/sticker.ts index 1582dbf0..0e86c561 100644 --- a/payloads/v9/sticker.ts +++ b/payloads/v9/sticker.ts @@ -93,7 +93,7 @@ export const enum StickerFormatType { export type APIStickerItem = Pick; /** - * https://discord.com/developers/docs/resources/sticker#sticker-object + * https://discord.com/developers/docs/resources/sticker#sticker-pack-object */ export interface APIStickerPack { /** @@ -123,5 +123,5 @@ export interface APIStickerPack { /** * ID of the sticker pack's banner image */ - banner_asset_id: Snowflake; + banner_asset_id?: Snowflake; }