Updates
This commit is contained in:
Vendored
+2
-2
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
+1
-1
@@ -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": {
|
||||||
|
|||||||
Reference in New Issue
Block a user