@ctx-core/graphql-client 7.2.0 → 7.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/graphql_fetch_.d.ts +1 -1
- package/src/index.d.ts +1 -1
- package/src/index.js +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/graphql_fetch_.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ export declare function graphql_fetch_<O1 extends unknown = unknown>(
|
|
|
3
3
|
in_http_opts?:FetchHttpOpts
|
|
4
4
|
):graphql_fetch_T<O1>;
|
|
5
5
|
export declare type graphql_fetch_T<O extends unknown = unknown> =
|
|
6
|
-
(body:string, fn_in_http_opts
|
|
6
|
+
(body:string, fn_in_http_opts?:FetchHttpOpts)=>Promise<O>;
|
|
7
7
|
export { graphql_fetch_ as _graphql_fetch, graphql_fetch_ as _fetch__graphql, }
|
package/src/index.d.ts
CHANGED