diff --git a/deno/payloads/v10/channel.ts b/deno/payloads/v10/channel.ts index 2abad8e0..b569bb12 100644 --- a/deno/payloads/v10/channel.ts +++ b/deno/payloads/v10/channel.ts @@ -1404,6 +1404,10 @@ export interface APIAttachment { * Name of file attached */ filename: string; + /** + * The title of the file + */ + title?: string; /** * Description for the file */ diff --git a/deno/payloads/v9/channel.ts b/deno/payloads/v9/channel.ts index 3d9014b1..e9a19c72 100644 --- a/deno/payloads/v9/channel.ts +++ b/deno/payloads/v9/channel.ts @@ -1371,6 +1371,10 @@ export interface APIAttachment { * Name of file attached */ filename: string; + /** + * The title of the file + */ + title?: string; /** * Description for the file */ diff --git a/payloads/v10/channel.ts b/payloads/v10/channel.ts index d01cacb1..fddb1acf 100644 --- a/payloads/v10/channel.ts +++ b/payloads/v10/channel.ts @@ -1404,6 +1404,10 @@ export interface APIAttachment { * Name of file attached */ filename: string; + /** + * The title of the file + */ + title?: string; /** * Description for the file */ diff --git a/payloads/v9/channel.ts b/payloads/v9/channel.ts index 9a0ceb5c..e72b8256 100644 --- a/payloads/v9/channel.ts +++ b/payloads/v9/channel.ts @@ -1371,6 +1371,10 @@ export interface APIAttachment { * Name of file attached */ filename: string; + /** + * The title of the file + */ + title?: string; /** * Description for the file */