* move file * perf: dataset file manage * v441 description * fix: qa csv update file * feat: rename file * frontend show system-version
9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
import { RequestPaging } from '../../../types/index';
|
|
|
|
export type GetFileListProps = RequestPaging & {
|
|
kbId: string;
|
|
searchText: string;
|
|
};
|
|
|
|
export type UpdateFileProps = { id: string; name?: string; datasetUsed?: boolean };
|