@ctx-core/graphql-client 7.2.1 → 7.2.6
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 +38 -0
- package/package.json +6 -6
- package/src/graphql_fetch_.d.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# @ctx-core/graphql-client
|
|
2
2
|
|
|
3
|
+
## 7.2.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- update dependencies
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @ctx-core/dom@11.1.6
|
|
10
|
+
- @ctx-core/fetch-undici@1.1.5
|
|
11
|
+
- @ctx-core/graphql@9.0.57
|
|
12
|
+
|
|
13
|
+
## 7.2.5
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- update dependencies
|
|
18
|
+
|
|
19
|
+
## 7.2.4
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- update dependencies
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
- @ctx-core/fetch-undici@1.1.3
|
|
26
|
+
|
|
27
|
+
## 7.2.3
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- 9c361b0c8: update dependencies
|
|
32
|
+
- Updated dependencies [9c361b0c8]
|
|
33
|
+
- @ctx-core/fetch-undici@1.1.2
|
|
34
|
+
|
|
35
|
+
## 7.2.2
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- graphql*fetch*,graphql_fetch_T: fix: return type: Promise<graphql_fetch_response_T<O>>
|
|
40
|
+
|
|
3
41
|
## 7.2.1
|
|
4
42
|
|
|
5
43
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ctx-core/graphql-client",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.6",
|
|
4
4
|
"description": "ctx-core graphql-client",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ctx-core",
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
"./package.json": "./package.json"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@ctx-core/dom": "^11.1.
|
|
29
|
-
"@ctx-core/fetch-undici": "^1.1.
|
|
30
|
-
"@ctx-core/graphql": "^9.0.
|
|
31
|
-
"@ctx-core/object": "
|
|
28
|
+
"@ctx-core/dom": "^11.1.6",
|
|
29
|
+
"@ctx-core/fetch-undici": "^1.1.5",
|
|
30
|
+
"@ctx-core/graphql": "^9.0.57",
|
|
31
|
+
"@ctx-core/object": "22.1.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@types/node": "^17.0.
|
|
34
|
+
"@types/node": "^17.0.15",
|
|
35
35
|
"c8": "^7.11.0",
|
|
36
36
|
"check-dts": "^0.6.6",
|
|
37
37
|
"tsm": "^2.2.1",
|
package/src/graphql_fetch_.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { FetchHttpOpts } from './_types'
|
|
2
|
+
import type { graphql_fetch_response_T } from './graphql_fetch'
|
|
2
3
|
export declare function graphql_fetch_<O1 extends unknown = unknown>(
|
|
3
4
|
in_http_opts?:FetchHttpOpts
|
|
4
5
|
):graphql_fetch_T<O1>;
|
|
5
6
|
export declare type graphql_fetch_T<O extends unknown = unknown> =
|
|
6
|
-
(body:string, fn_in_http_opts?:FetchHttpOpts)=>Promise<O
|
|
7
|
+
(body:string, fn_in_http_opts?:FetchHttpOpts)=>Promise<graphql_fetch_response_T<O>>;
|
|
7
8
|
export { graphql_fetch_ as _graphql_fetch, graphql_fetch_ as _fetch__graphql, }
|