Updates
This commit is contained in:
@@ -1813,6 +1813,7 @@ export type MediaUploadDataType = ImageObjectType &
|
||||
privateFolder?: boolean;
|
||||
overwrite?: boolean;
|
||||
updatedMediaRecord?: DSQL_DATASQUIREL_USER_MEDIA;
|
||||
existingMediaRecord?: DSQL_DATASQUIREL_USER_MEDIA;
|
||||
existingMediaRecordId?: number;
|
||||
};
|
||||
|
||||
@@ -1921,7 +1922,7 @@ export type DefaultEntryType = {
|
||||
[k: string]: string | number | null;
|
||||
};
|
||||
|
||||
export const IndexTypes = ["regular", "full_text"] as const;
|
||||
export const IndexTypes = ["regular", "full_text", "vector"] as const;
|
||||
|
||||
export type LoginUserParam = {
|
||||
apiKey?: string;
|
||||
@@ -2344,6 +2345,11 @@ export type AddMediaAPIBody = {
|
||||
update?: boolean;
|
||||
};
|
||||
|
||||
export type ReplaceMediaAPIBody = {
|
||||
mediaId: number;
|
||||
media: MediaUploadDataType;
|
||||
};
|
||||
|
||||
export const TargetMediaParadigms = ["info", "preview"] as const;
|
||||
|
||||
export type TargetMediaDataType = {
|
||||
|
||||
Reference in New Issue
Block a user