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
parent a724f35672
commit d8584dc03a
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
}