This commit is contained in:
2026-01-01 09:22:51 +01:00
parent b8e5d45762
commit 8277ff3e41
8 changed files with 31 additions and 35 deletions
+2 -1
View File
@@ -2970,7 +2970,7 @@ export type APIPathsData<
export type ClientCrudFetchParams<
T extends { [k: string]: any } = { [k: string]: any },
P = string
> = {
> = DSQLFetchApiOptions<T> & {
table: P;
method?: "GET" | "POST" | "PUT" | "DELETE";
query?: APIPathsQuery<T>;
@@ -2999,4 +2999,5 @@ export type DSQLFetchApiOptions<
headers?: DSQLClientFetchHeader;
csrfValue?: string;
csrfKey?: string;
fetchOptions?: RequestInit;
};