Feat/customizable file upload config (#818)

This commit is contained in:
Matri
2023-08-16 23:14:27 +08:00
committed by GitHub
parent b7c29ea1b6
commit 155a4733f6
13 changed files with 122 additions and 83 deletions

View File

@@ -168,3 +168,8 @@ export type PluginProvider = {
api_key: string
} | null
}
export type FileUploadConfigResponse = {
file_size_limit: number
batch_count_limit: number
}