@graphql-mesh/transport-http 1.0.0-next-8c427cf82ca0b277e7a0a1769787715c29128406 → 1.0.0-next-0a126262225a7c26ebe431b2fcc1c4aea0094dad
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 +4 -4
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @graphql-mesh/transport-http
|
|
2
2
|
|
|
3
|
-
## 1.0.0-next-
|
|
3
|
+
## 1.0.0-next-0a126262225a7c26ebe431b2fcc1c4aea0094dad
|
|
4
4
|
### Major Changes
|
|
5
5
|
|
|
6
6
|
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
|
|
12
12
|
### Patch Changes
|
|
13
13
|
|
|
14
|
-
- Updated dependencies [[`01c414f`](https://github.com/graphql-hive/gateway/commit/01c414f6c50edeb1b8dfd09386a12e0499835355), [`91e0764`](https://github.com/graphql-hive/gateway/commit/91e0764ceed0e892cfbe93f8d6e1353fadfa0f8a), [`22bd3f7`](https://github.com/graphql-hive/gateway/commit/22bd3f70d2901738d4c35e02282569546b820b11), [`01c414f`](https://github.com/graphql-hive/gateway/commit/01c414f6c50edeb1b8dfd09386a12e0499835355)]:
|
|
15
|
-
- @graphql-mesh/transport-common@1.0.0-next-
|
|
16
|
-
- @graphql-tools/executor-http@3.0.0-next-
|
|
14
|
+
- Updated dependencies [[`01c414f`](https://github.com/graphql-hive/gateway/commit/01c414f6c50edeb1b8dfd09386a12e0499835355), [`91e0764`](https://github.com/graphql-hive/gateway/commit/91e0764ceed0e892cfbe93f8d6e1353fadfa0f8a), [`22bd3f7`](https://github.com/graphql-hive/gateway/commit/22bd3f70d2901738d4c35e02282569546b820b11), [`01c414f`](https://github.com/graphql-hive/gateway/commit/01c414f6c50edeb1b8dfd09386a12e0499835355), [`6e8de6c`](https://github.com/graphql-hive/gateway/commit/6e8de6cfc4b0e57a55d5019c5c72ff347396d96e)]:
|
|
15
|
+
- @graphql-mesh/transport-common@1.0.0-next-0a126262225a7c26ebe431b2fcc1c4aea0094dad
|
|
16
|
+
- @graphql-tools/executor-http@3.0.0-next-0a126262225a7c26ebe431b2fcc1c4aea0094dad
|
|
17
17
|
|
|
18
18
|
## 0.7.3
|
|
19
19
|
### Patch Changes
|
package/dist/index.d.cts
CHANGED
|
@@ -5,7 +5,7 @@ import * as _graphql_mesh_transport_common from '@graphql-mesh/transport-common'
|
|
|
5
5
|
import { TransportEntry } from '@graphql-mesh/transport-common';
|
|
6
6
|
import { HTTPExecutorOptions } from '@graphql-tools/executor-http';
|
|
7
7
|
|
|
8
|
-
type HTTPTransportOptions<TSubscriptionTransportOptions extends Record<string, any> = Record<string, any>> = Pick<HTTPExecutorOptions, 'useGETForQueries' | 'method' | 'timeout' | 'credentials' | 'retry' | 'apq'> & {
|
|
8
|
+
type HTTPTransportOptions<TSubscriptionTransportOptions extends Record<string, any> = Record<string, any>> = Pick<HTTPExecutorOptions, 'useGETForQueries' | 'method' | 'timeout' | 'credentials' | 'retry' | 'apq' | 'deduplicateInflightRequests'> & {
|
|
9
9
|
subscriptions?: TransportEntry<TSubscriptionTransportOptions>;
|
|
10
10
|
};
|
|
11
11
|
declare const _default: {
|
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import * as _graphql_mesh_transport_common from '@graphql-mesh/transport-common'
|
|
|
5
5
|
import { TransportEntry } from '@graphql-mesh/transport-common';
|
|
6
6
|
import { HTTPExecutorOptions } from '@graphql-tools/executor-http';
|
|
7
7
|
|
|
8
|
-
type HTTPTransportOptions<TSubscriptionTransportOptions extends Record<string, any> = Record<string, any>> = Pick<HTTPExecutorOptions, 'useGETForQueries' | 'method' | 'timeout' | 'credentials' | 'retry' | 'apq'> & {
|
|
8
|
+
type HTTPTransportOptions<TSubscriptionTransportOptions extends Record<string, any> = Record<string, any>> = Pick<HTTPExecutorOptions, 'useGETForQueries' | 'method' | 'timeout' | 'credentials' | 'retry' | 'apq' | 'deduplicateInflightRequests'> & {
|
|
9
9
|
subscriptions?: TransportEntry<TSubscriptionTransportOptions>;
|
|
10
10
|
};
|
|
11
11
|
declare const _default: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-mesh/transport-http",
|
|
3
|
-
"version": "1.0.0-next-
|
|
3
|
+
"version": "1.0.0-next-0a126262225a7c26ebe431b2fcc1c4aea0094dad",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@graphql-mesh/cross-helpers": "^0.4.10",
|
|
46
46
|
"@graphql-mesh/string-interpolation": "^0.5.6",
|
|
47
|
-
"@graphql-mesh/transport-common": "1.0.0-next-
|
|
47
|
+
"@graphql-mesh/transport-common": "1.0.0-next-0a126262225a7c26ebe431b2fcc1c4aea0094dad",
|
|
48
48
|
"@graphql-mesh/types": "^0.104.8",
|
|
49
49
|
"@graphql-mesh/utils": "^0.104.11",
|
|
50
|
-
"@graphql-tools/executor-http": "3.0.0-next-
|
|
50
|
+
"@graphql-tools/executor-http": "3.0.0-next-0a126262225a7c26ebe431b2fcc1c4aea0094dad",
|
|
51
51
|
"@graphql-tools/utils": "^10.9.1",
|
|
52
52
|
"@whatwg-node/promise-helpers": "^1.3.0",
|
|
53
53
|
"graphql": "^16.9.0",
|