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
@@ -1442,6 +1442,7 @@ export type SQLDeleteGeneratorParams<
> = {
tableName: string;
deleteKeyValues?: SQLDeleteData<T>[];
deleteKeyValuesOperator?: "AND" | "OR";
dbFullName?: string;
data?: any;
};
@@ -1464,6 +1465,7 @@ export type DsqlCrudParam<
batchData?: T[];
deleteData?: T;
deleteKeyValues?: SQLDeleteData[];
deleteKeyValuesOperator?: "AND" | "OR";
targetId?: string | number;
targetValue?: string | number;
targetField?: keyof T;