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
+4 -1
View File
@@ -900,11 +900,14 @@ export type TableSelectFieldsObject<T extends {
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];