mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00
28 lines
633 B
TypeScript
28 lines
633 B
TypeScript
import type { DatasetDataIndexItemType, DatasetDataSchemaType } from './type';
|
|
|
|
export type CreateDatasetDataProps = {
|
|
teamId: string;
|
|
tmbId: string;
|
|
datasetId: string;
|
|
collectionId: string;
|
|
q: string;
|
|
a?: string;
|
|
indexes?: Omit<DatasetDataIndexItemType, 'dataId'>[];
|
|
};
|
|
|
|
export type UpdateDatasetDataProps = {
|
|
dataId: string;
|
|
q?: string;
|
|
a?: string;
|
|
indexes?: (Omit<DatasetDataIndexItemType, 'dataId'> & {
|
|
dataId?: string; // pg data id
|
|
})[];
|
|
};
|
|
|
|
export type PatchIndexesProps = {
|
|
type: 'create' | 'update' | 'delete';
|
|
index: Omit<DatasetDataIndexItemType, 'dataId'> & {
|
|
dataId?: string;
|
|
};
|
|
};
|