This commit is contained in:
2025-12-26 12:08:45 +01:00
parent f95cf21ffd
commit 5caa604b8f
9 changed files with 20 additions and 36 deletions
+3 -2
View File
@@ -953,11 +953,11 @@ export type FetchApiOptions = RequestInit & {
| (typeof DataCrudRequestMethods)[number]
| (typeof DataCrudRequestMethodsLowerCase)[number];
body?: object | string;
headers?: FetchHeader;
headers?: DSQLClientFetchHeader;
query?: { [key: string]: any };
};
type FetchHeader = HeadersInit & {
export type DSQLClientFetchHeader = HeadersInit & {
[key: string]: any;
};
@@ -2959,4 +2959,5 @@ export type ClientCrudFetchParams<
basePath?: string;
targetId?: string | number | null;
apiOrigin?: string;
headers?: DSQLClientFetchHeader;
};