This commit is contained in:
2026-02-11 05:05:32 +01:00
parent 42caaecb18
commit 7345010391
5 changed files with 30 additions and 10 deletions
+4
View File
@@ -60,6 +60,7 @@ export interface DSQL_TableSchemaType {
tableNameOld?: string;
childTableDbId?: string | number;
collation?: (typeof MariaDBCollations)[number];
isVector?: boolean;
}
export interface DSQL_ChildrenTablesType {
tableId?: string | number;
@@ -127,6 +128,8 @@ export type DSQL_FieldSchemaType = {
moving?: boolean;
code?: boolean;
options?: string[];
isVector?: boolean;
vectorSize?: number;
} & {
[key in (typeof TextFieldTypesArray)[number]["value"]]?: boolean;
};
@@ -2381,6 +2384,7 @@ export type DSQLFetchApiOptions<T extends {
csrfValue?: string;
csrfKey?: string;
fetchOptions?: RequestInit;
query?: T;
};
export type AddDbEntryParam<T extends {
[k: string]: any;