Updates
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user