This commit is contained in:
Benjamin Toby 2025-02-19 20:33:56 +01:00
parent e9bb9fb07f
commit d4cb764a18
3 changed files with 3 additions and 3 deletions

View File

@ -1351,5 +1351,5 @@ export type DsqlCrudParam<T extends {
sanitize?: (data?: T) => T; sanitize?: (data?: T) => T;
debug?: boolean; debug?: boolean;
}; };
export type ErrorCallback = (title: string, error: Error) => void; export type ErrorCallback = (title: string, error: Error, data?: any) => void;
export {}; export {};

View File

@ -1524,4 +1524,4 @@ export type DsqlCrudParam<
debug?: boolean; debug?: boolean;
}; };
export type ErrorCallback = (title: string, error: Error) => void; export type ErrorCallback = (title: string, error: Error, data?: any) => void;

View File

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