ragflow / web /src /interfaces /request /file-manager.ts
balibabu
fix: fetch the file list after uploading the file by @tanstack/react-query #1306 (#1654)
2d45930
raw
history blame contribute delete
291 Bytes
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[];
}