feat: enhance document list navigation and sorting functionality (#23383)

This commit is contained in:
yyh 2025-08-05 10:19:47 +08:00 committed by GitHub
commit d8584dc03a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 966 additions and 28 deletions

View file

@ -5,6 +5,18 @@ export type CommonResponse = {
result: 'success' | 'fail'
}
export type FileDownloadResponse = {
id: string
name: string
size: number
extension: string
url: string
download_url: string
mime_type: string
created_by: string
created_at: number
}
export type OauthResponse = {
redirect_url: string
}