Updates
This commit is contained in:
parent
8277ff3e41
commit
d985503688
4
dist/package-shared/types/index.d.ts
vendored
4
dist/package-shared/types/index.d.ts
vendored
@ -2305,9 +2305,9 @@ export type ClientCrudFetchParams<T extends {
|
||||
[k: string]: any;
|
||||
} = {
|
||||
[k: string]: any;
|
||||
}, P = string> = DSQLFetchApiOptions<T> & {
|
||||
}, P = string> = Omit<DSQLFetchApiOptions<T>, "method"> & {
|
||||
table: P;
|
||||
method?: "GET" | "POST" | "PUT" | "DELETE";
|
||||
method?: DSQLFetchApiOptions<T>["method"];
|
||||
query?: APIPathsQuery<T>;
|
||||
body?: APIPathsBody<T>;
|
||||
basePath?: string;
|
||||
|
||||
@ -2970,9 +2970,9 @@ export type APIPathsData<
|
||||
export type ClientCrudFetchParams<
|
||||
T extends { [k: string]: any } = { [k: string]: any },
|
||||
P = string
|
||||
> = DSQLFetchApiOptions<T> & {
|
||||
> = Omit<DSQLFetchApiOptions<T>, "method"> & {
|
||||
table: P;
|
||||
method?: "GET" | "POST" | "PUT" | "DELETE";
|
||||
method?: DSQLFetchApiOptions<T>["method"];
|
||||
query?: APIPathsQuery<T>;
|
||||
body?: APIPathsBody<T>;
|
||||
basePath?: string;
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@moduletrace/datasquirel",
|
||||
"version": "5.7.8",
|
||||
"version": "5.7.9",
|
||||
"description": "Cloud-based SQL data management tool",
|
||||
"main": "dist/index.js",
|
||||
"bin": {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user