feat(APIBaseInteraction): add attachment_size_limit (#1214)

This commit is contained in:
Almeida
2025-04-09 19:59:06 +01:00
committed by GitHub
parent cfac62e44a
commit 5b6f0d43a4
4 changed files with 16 additions and 0 deletions

View File

@@ -215,6 +215,10 @@ export interface APIBaseInteraction<Type extends InteractionType, Data> {
* Context where the interaction was triggered from
*/
context?: InteractionContextType;
/**
* Attachment size limit in bytes
*/
attachment_size_limit: number;
}
export type APIAuthorizingIntegrationOwnersMap = {

View File

@@ -218,6 +218,10 @@ export interface APIBaseInteraction<Type extends InteractionType, Data> {
* Context where the interaction was triggered from
*/
context?: InteractionContextType;
/**
* Attachment size limit in bytes
*/
attachment_size_limit: number;
}
export type APIAuthorizingIntegrationOwnersMap = {

View File

@@ -215,6 +215,10 @@ export interface APIBaseInteraction<Type extends InteractionType, Data> {
* Context where the interaction was triggered from
*/
context?: InteractionContextType;
/**
* Attachment size limit in bytes
*/
attachment_size_limit: number;
}
export type APIAuthorizingIntegrationOwnersMap = {

View File

@@ -218,6 +218,10 @@ export interface APIBaseInteraction<Type extends InteractionType, Data> {
* Context where the interaction was triggered from
*/
context?: InteractionContextType;
/**
* Attachment size limit in bytes
*/
attachment_size_limit: number;
}
export type APIAuthorizingIntegrationOwnersMap = {