This commit is contained in:
2026-01-05 14:36:29 +01:00
parent 9402c859f7
commit ea40a1a8c2
8 changed files with 168 additions and 103 deletions
+8 -1
View File
@@ -1096,13 +1096,20 @@ export type TableSelectFieldsObject<
export type ServerQueryValuesObject = {
value?: string | number;
equality?: (typeof ServerQueryEqualities)[number];
tableName?: string;
fieldName?: string;
};
export type ServerQueryObjectValue =
| string
| (string | ServerQueryValuesObject | undefined | null)
| (string | ServerQueryValuesObject | undefined | null)[];
export type ServerQueryObject<
T extends object = { [key: string]: any },
K extends string = string
> = {
value?: string | (string | ServerQueryValuesObject | undefined | null)[];
value?: ServerQueryObjectValue;
nullValue?: boolean;
notNullValue?: boolean;
operator?: (typeof ServerQueryOperators)[number];