This commit is contained in:
2026-01-04 12:41:19 +01:00
parent def2f2f057
commit 18e29fa413
8 changed files with 39 additions and 9 deletions
+2 -1
View File
@@ -1326,6 +1326,7 @@ export type DsqlCrudParam<T extends {
deleteKeyValues?: SQLDeleteData[];
deleteKeyValuesOperator?: "AND" | "OR";
targetId?: string | number;
targetIds?: (string | number)[];
targetValue?: string | number;
targetField?: keyof T;
query?: DsqlCrudQueryObject<T, K>;
@@ -2276,7 +2277,7 @@ export type APIPathsQuery<T extends {
[k: string]: any;
}> = {
searchQuery?: DsqlCrudQueryObject<T>;
crudParams?: Pick<DsqlCrudParam<T>, "count" | "countOnly" | "targetId" | "targetField" | "targetValue" | "tableSchema" | "onDuplicate">;
crudParams?: Pick<DsqlCrudParam<T>, "count" | "countOnly" | "targetId" | "targetIds" | "targetField" | "targetValue" | "tableSchema" | "onDuplicate">;
};
export type APIPathsParamsGetMiddleware<T extends {
[k: string]: any;