This commit is contained in:
Benjamin Toby
2025-08-04 08:20:32 +01:00
parent 71a8431de5
commit ab13c68c8e
18 changed files with 41 additions and 20 deletions
+2
View File
@@ -1228,6 +1228,7 @@ export type SQLDeleteGeneratorParams<T extends {
}> = {
tableName: string;
deleteKeyValues?: SQLDeleteData<T>[];
deleteKeyValuesOperator?: "AND" | "OR";
dbFullName?: string;
data?: any;
};
@@ -1251,6 +1252,7 @@ export type DsqlCrudParam<T extends {
batchData?: T[];
deleteData?: T;
deleteKeyValues?: SQLDeleteData[];
deleteKeyValuesOperator?: "AND" | "OR";
targetId?: string | number;
targetValue?: string | number;
targetField?: keyof T;