diff --git a/deno/payloads/v10/channel.ts b/deno/payloads/v10/channel.ts index 2abad8e0b..b569bb121 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 3d9014b1b..e9a19c725 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 d01cacb1c..fddb1acf4 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 9a0ceb5c7..e72b82568 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 */