This commit is contained in:
Benjamin Toby 2026-01-01 09:24:55 +01:00
parent 8277ff3e41
commit d985503688
3 changed files with 5 additions and 5 deletions

View File

@ -2305,9 +2305,9 @@ export type ClientCrudFetchParams<T extends {
[k: string]: any; [k: string]: any;
} = { } = {
[k: string]: any; [k: string]: any;
}, P = string> = DSQLFetchApiOptions<T> & { }, P = string> = Omit<DSQLFetchApiOptions<T>, "method"> & {
table: P; table: P;
method?: "GET" | "POST" | "PUT" | "DELETE"; method?: DSQLFetchApiOptions<T>["method"];
query?: APIPathsQuery<T>; query?: APIPathsQuery<T>;
body?: APIPathsBody<T>; body?: APIPathsBody<T>;
basePath?: string; basePath?: string;

View File

@ -2970,9 +2970,9 @@ export type APIPathsData<
export type ClientCrudFetchParams< export type ClientCrudFetchParams<
T extends { [k: string]: any } = { [k: string]: any }, T extends { [k: string]: any } = { [k: string]: any },
P = string P = string
> = DSQLFetchApiOptions<T> & { > = Omit<DSQLFetchApiOptions<T>, "method"> & {
table: P; table: P;
method?: "GET" | "POST" | "PUT" | "DELETE"; method?: DSQLFetchApiOptions<T>["method"];
query?: APIPathsQuery<T>; query?: APIPathsQuery<T>;
body?: APIPathsBody<T>; body?: APIPathsBody<T>;
basePath?: string; basePath?: string;

View File

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