Updates
This commit is contained in:
Vendored
+6
-1
@@ -1521,6 +1521,7 @@ export type MediaUploadDataType = ImageObjectType & FileObjectType & {
|
||||
privateFolder?: boolean;
|
||||
overwrite?: boolean;
|
||||
updatedMediaRecord?: DSQL_DATASQUIREL_USER_MEDIA;
|
||||
existingMediaRecord?: DSQL_DATASQUIREL_USER_MEDIA;
|
||||
existingMediaRecordId?: number;
|
||||
};
|
||||
export declare const ImageMimeTypes: (keyof sharp.FormatEnum)[];
|
||||
@@ -1569,7 +1570,7 @@ export type DefaultEntryType = {
|
||||
} & {
|
||||
[k: string]: string | number | null;
|
||||
};
|
||||
export declare const IndexTypes: readonly ["regular", "full_text"];
|
||||
export declare const IndexTypes: readonly ["regular", "full_text", "vector"];
|
||||
export type LoginUserParam = {
|
||||
apiKey?: string;
|
||||
database: string;
|
||||
@@ -1812,6 +1813,10 @@ export type AddMediaAPIBody = {
|
||||
useDefault?: boolean;
|
||||
update?: boolean;
|
||||
};
|
||||
export type ReplaceMediaAPIBody = {
|
||||
mediaId: number;
|
||||
media: MediaUploadDataType;
|
||||
};
|
||||
export declare const TargetMediaParadigms: readonly ["info", "preview"];
|
||||
export type TargetMediaDataType = {
|
||||
media: DSQL_DATASQUIREL_USER_MEDIA;
|
||||
|
||||
Vendored
+1
-1
@@ -186,7 +186,7 @@ exports.DefaultSQLValuesLiteral = [
|
||||
dataType: "UUID",
|
||||
},
|
||||
];
|
||||
exports.IndexTypes = ["regular", "full_text"];
|
||||
exports.IndexTypes = ["regular", "full_text", "vector"];
|
||||
exports.UserSelectFields = [
|
||||
{
|
||||
field: "first_name",
|
||||
|
||||
Reference in New Issue
Block a user