diff --git a/deno/payloads/v10/channel.ts b/deno/payloads/v10/channel.ts index 90e951db..dc63bfd3 100644 --- a/deno/payloads/v10/channel.ts +++ b/deno/payloads/v10/channel.ts @@ -2132,6 +2132,10 @@ export interface APIUnfurledMediaItem { content_type?: string | null; loading_state?: UnfurledMediaItemLoadingState; flags?: number; + /** + * The id of the uploaded attachment. This field is ignored and provided by the API as part of the response + */ + attachment_id?: Snowflake; } /** diff --git a/deno/payloads/v9/channel.ts b/deno/payloads/v9/channel.ts index 07205895..7bb1543f 100644 --- a/deno/payloads/v9/channel.ts +++ b/deno/payloads/v9/channel.ts @@ -2129,6 +2129,10 @@ export interface APIUnfurledMediaItem { content_type?: string | null; loading_state?: UnfurledMediaItemLoadingState; flags?: number; + /** + * The id of the uploaded attachment. This field is ignored and provided by the API as part of the response + */ + attachment_id?: Snowflake; } /** diff --git a/payloads/v10/channel.ts b/payloads/v10/channel.ts index e3fbc9c9..5f79ce60 100644 --- a/payloads/v10/channel.ts +++ b/payloads/v10/channel.ts @@ -2132,6 +2132,10 @@ export interface APIUnfurledMediaItem { content_type?: string | null; loading_state?: UnfurledMediaItemLoadingState; flags?: number; + /** + * The id of the uploaded attachment. This field is ignored and provided by the API as part of the response + */ + attachment_id?: Snowflake; } /** diff --git a/payloads/v9/channel.ts b/payloads/v9/channel.ts index 2db6259a..29854eab 100644 --- a/payloads/v9/channel.ts +++ b/payloads/v9/channel.ts @@ -2129,6 +2129,10 @@ export interface APIUnfurledMediaItem { content_type?: string | null; loading_state?: UnfurledMediaItemLoadingState; flags?: number; + /** + * The id of the uploaded attachment. This field is ignored and provided by the API as part of the response + */ + attachment_id?: Snowflake; } /**