This commit is contained in:
Benjamin Toby 2026-01-03 05:37:24 +01:00
parent 290dfe303c
commit def2f2f057
3 changed files with 3 additions and 2 deletions

View File

@ -2276,7 +2276,7 @@ export type APIPathsQuery<T extends {
[k: string]: any; [k: string]: any;
}> = { }> = {
searchQuery?: DsqlCrudQueryObject<T>; searchQuery?: DsqlCrudQueryObject<T>;
crudParams?: Pick<DsqlCrudParam<T>, "count" | "countOnly" | "targetId" | "targetField" | "targetValue" | "tableSchema">; crudParams?: Pick<DsqlCrudParam<T>, "count" | "countOnly" | "targetId" | "targetField" | "targetValue" | "tableSchema" | "onDuplicate">;
}; };
export type APIPathsParamsGetMiddleware<T extends { export type APIPathsParamsGetMiddleware<T extends {
[k: string]: any; [k: string]: any;

View File

@ -2948,6 +2948,7 @@ export type APIPathsQuery<
| "targetField" | "targetField"
| "targetValue" | "targetValue"
| "tableSchema" | "tableSchema"
| "onDuplicate"
>; >;
}; };

View File

@ -1,6 +1,6 @@
{ {
"name": "@moduletrace/datasquirel", "name": "@moduletrace/datasquirel",
"version": "5.7.16", "version": "5.7.17",
"description": "Cloud-based SQL data management tool", "description": "Cloud-based SQL data management tool",
"main": "dist/index.js", "main": "dist/index.js",
"bin": { "bin": {