Updates
This commit is contained in:
Vendored
+4
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user