@graphql-mesh/transport-http-callback 0.2.0-alpha-20240814121833-ce96b6fb426bc5264dd77b1bce4d0347f6fe83ff → 0.2.1-alpha-20240814135036-6be6aa62249708cb06c2082688b793d24028bf15
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +4 -4
- package/typings/index.d.cts +1 -1
- package/typings/index.d.ts +1 -1
package/package.json
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
{
|
2
2
|
"name": "@graphql-mesh/transport-http-callback",
|
3
|
-
"version": "0.2.
|
3
|
+
"version": "0.2.1-alpha-20240814135036-6be6aa62249708cb06c2082688b793d24028bf15",
|
4
4
|
"sideEffects": false,
|
5
5
|
"peerDependencies": {
|
6
6
|
"graphql": "*",
|
7
7
|
"tslib": "^2.4.0"
|
8
8
|
},
|
9
9
|
"dependencies": {
|
10
|
-
"@graphql-mesh/cross-helpers": "0.4.6
|
10
|
+
"@graphql-mesh/cross-helpers": "^0.4.6",
|
11
11
|
"@graphql-mesh/string-interpolation": "^0.5.5",
|
12
|
-
"@graphql-mesh/transport-common": "0.6.
|
13
|
-
"@graphql-mesh/utils": "0.101.0
|
12
|
+
"@graphql-mesh/transport-common": "0.6.1-alpha-20240814135036-6be6aa62249708cb06c2082688b793d24028bf15",
|
13
|
+
"@graphql-mesh/utils": "^0.101.0",
|
14
14
|
"@graphql-tools/utils": "^10.5.3",
|
15
15
|
"@repeaterjs/repeater": "^3.0.6",
|
16
16
|
"@whatwg-node/fetch": "^0.9.18"
|
package/typings/index.d.cts
CHANGED
@@ -18,6 +18,6 @@ export interface HTTPCallbackTransportOptions {
|
|
18
18
|
heartbeat_interval?: number;
|
19
19
|
}
|
20
20
|
declare const _default: {
|
21
|
-
getSubgraphExecutor({ transportEntry, fetch, pubsub, logger }: import("@graphql-mesh/transport-common").TransportGetSubgraphExecutorOptions<
|
21
|
+
getSubgraphExecutor({ transportEntry, fetch, pubsub, logger }: import("@graphql-mesh/transport-common").TransportGetSubgraphExecutorOptions<HTTPCallbackTransportOptions>): DisposableExecutor;
|
22
22
|
};
|
23
23
|
export default _default;
|
package/typings/index.d.ts
CHANGED
@@ -18,6 +18,6 @@ export interface HTTPCallbackTransportOptions {
|
|
18
18
|
heartbeat_interval?: number;
|
19
19
|
}
|
20
20
|
declare const _default: {
|
21
|
-
getSubgraphExecutor({ transportEntry, fetch, pubsub, logger }: import("@graphql-mesh/transport-common").TransportGetSubgraphExecutorOptions<
|
21
|
+
getSubgraphExecutor({ transportEntry, fetch, pubsub, logger }: import("@graphql-mesh/transport-common").TransportGetSubgraphExecutorOptions<HTTPCallbackTransportOptions>): DisposableExecutor;
|
22
22
|
};
|
23
23
|
export default _default;
|