diff --git a/deno/payloads/v10/_interactions/base.ts b/deno/payloads/v10/_interactions/base.ts index 6aca2732..065be530 100644 --- a/deno/payloads/v10/_interactions/base.ts +++ b/deno/payloads/v10/_interactions/base.ts @@ -215,6 +215,10 @@ export interface APIBaseInteraction { * Context where the interaction was triggered from */ context?: InteractionContextType; + /** + * Attachment size limit in bytes + */ + attachment_size_limit: number; } export type APIAuthorizingIntegrationOwnersMap = { diff --git a/deno/payloads/v9/_interactions/base.ts b/deno/payloads/v9/_interactions/base.ts index 87864cca..6f0a5826 100644 --- a/deno/payloads/v9/_interactions/base.ts +++ b/deno/payloads/v9/_interactions/base.ts @@ -218,6 +218,10 @@ export interface APIBaseInteraction { * Context where the interaction was triggered from */ context?: InteractionContextType; + /** + * Attachment size limit in bytes + */ + attachment_size_limit: number; } export type APIAuthorizingIntegrationOwnersMap = { diff --git a/payloads/v10/_interactions/base.ts b/payloads/v10/_interactions/base.ts index 68880564..4574e3de 100644 --- a/payloads/v10/_interactions/base.ts +++ b/payloads/v10/_interactions/base.ts @@ -215,6 +215,10 @@ export interface APIBaseInteraction { * Context where the interaction was triggered from */ context?: InteractionContextType; + /** + * Attachment size limit in bytes + */ + attachment_size_limit: number; } export type APIAuthorizingIntegrationOwnersMap = { diff --git a/payloads/v9/_interactions/base.ts b/payloads/v9/_interactions/base.ts index 82ad7c41..7a73aaed 100644 --- a/payloads/v9/_interactions/base.ts +++ b/payloads/v9/_interactions/base.ts @@ -218,6 +218,10 @@ export interface APIBaseInteraction { * Context where the interaction was triggered from */ context?: InteractionContextType; + /** + * Attachment size limit in bytes + */ + attachment_size_limit: number; } export type APIAuthorizingIntegrationOwnersMap = {