balibabu
fix: fetch the file list after uploading the file by @tanstack/react-query #1306 (#1654)
2d45930
import { IPaginationRequestBody } from './base'; | |
export interface IFileListRequestBody extends IPaginationRequestBody { | |
parent_id?: string; // folder id | |
} | |
interface BaseRequestBody { | |
parentId: string; | |
} | |
export interface IConnectRequestBody { | |
fileIds: string[]; | |
kbIds: string[]; | |
} | |