@graphql-mesh/hmac-upstream-signature 1.2.21-alpha-ce53311a0a4eb8c65196a0cc3f55e77ed591145d → 1.2.21-alpha-c77b3ec30b665f013b4e297964bd20751d1d94f3
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +2 -2
- package/dist/index.d.cts +1 -9
- package/dist/index.d.ts +1 -9
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# @graphql-mesh/hmac-upstream-signature
|
2
2
|
|
3
|
-
## 1.2.21-alpha-
|
3
|
+
## 1.2.21-alpha-c77b3ec30b665f013b4e297964bd20751d1d94f3
|
4
4
|
|
5
5
|
### Patch Changes
|
6
6
|
|
@@ -11,7 +11,7 @@
|
|
11
11
|
- Updated dependency [`@graphql-mesh/utils@^0.103.18` ↗︎](https://www.npmjs.com/package/@graphql-mesh/utils/v/0.103.18) (from `^0.103.6`, in `dependencies`)
|
12
12
|
|
13
13
|
- Updated dependencies [[`a289faa`](https://github.com/graphql-hive/gateway/commit/a289faae1469eb46f1458be341d21909fe5f8f8f)]:
|
14
|
-
- @graphql-tools/executor-common@0.0.3-alpha-
|
14
|
+
- @graphql-tools/executor-common@0.0.3-alpha-c77b3ec30b665f013b4e297964bd20751d1d94f3
|
15
15
|
|
16
16
|
## 1.2.20
|
17
17
|
|
package/dist/index.d.cts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ExecutionRequest, ExecutionResult, Executor, MaybePromise, Maybe } from '@graphql-tools/utils';
|
2
|
-
import { Plugin, YogaInitialContext,
|
2
|
+
import { Plugin, YogaInitialContext, GraphQLParams } from 'graphql-yoga';
|
3
3
|
import { GraphQLSchema, OperationTypeNode, GraphQLFieldResolver, GraphQLResolveInfo, GraphQLOutputType, GraphQLError, SelectionSetNode, FragmentDefinitionNode, FieldNode, ExecutionResult as ExecutionResult$1, SelectionNode } from 'graphql';
|
4
4
|
import { Logger, MeshFetch, MeshPubSub, KeyValueCache, OnFetchHook } from '@graphql-mesh/types';
|
5
5
|
import DataLoader from 'dataloader';
|
@@ -102,12 +102,6 @@ declare class Subschema<K = any, V = any, C = K, TContext = Record<string, any>>
|
|
102
102
|
set transformedSchema(value: GraphQLSchema);
|
103
103
|
}
|
104
104
|
|
105
|
-
type Tracer$1 = {
|
106
|
-
subgraphExecute(payload: {
|
107
|
-
executionRequest: ExecutionRequest;
|
108
|
-
}, wrapped: () => MaybePromise<void>): MaybePromise<void>;
|
109
|
-
};
|
110
|
-
|
111
105
|
declare module 'graphql' {
|
112
106
|
interface GraphQLResolveInfo {
|
113
107
|
executionRequest?: ExecutionRequest;
|
@@ -222,9 +216,7 @@ interface GatewayContext extends GatewayConfigContext, YogaInitialContext {
|
|
222
216
|
}
|
223
217
|
type GatewayPlugin<TPluginContext extends Record<string, any> = Record<string, any>, TContext extends Record<string, any> = Record<string, any>> = Plugin<Partial<TPluginContext> & GatewayContext & TContext> & UnifiedGraphPlugin<Partial<TPluginContext> & GatewayContext & TContext> & {
|
224
218
|
onFetch?: OnFetchHook<Partial<TPluginContext> & GatewayContext & TContext>;
|
225
|
-
tracer?: Tracer<TPluginContext & TContext & GatewayContext>;
|
226
219
|
} & Partial<Disposable | AsyncDisposable>;
|
227
|
-
type Tracer<TContext extends Record<string, any>> = Tracer$2<TContext> & Tracer$1;
|
228
220
|
|
229
221
|
declare global {
|
230
222
|
var DEBUG: string;
|
package/dist/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ExecutionRequest, ExecutionResult, Executor, MaybePromise, Maybe } from '@graphql-tools/utils';
|
2
|
-
import { Plugin, YogaInitialContext,
|
2
|
+
import { Plugin, YogaInitialContext, GraphQLParams } from 'graphql-yoga';
|
3
3
|
import { GraphQLSchema, OperationTypeNode, GraphQLFieldResolver, GraphQLResolveInfo, GraphQLOutputType, GraphQLError, SelectionSetNode, FragmentDefinitionNode, FieldNode, ExecutionResult as ExecutionResult$1, SelectionNode } from 'graphql';
|
4
4
|
import { Logger, MeshFetch, MeshPubSub, KeyValueCache, OnFetchHook } from '@graphql-mesh/types';
|
5
5
|
import DataLoader from 'dataloader';
|
@@ -102,12 +102,6 @@ declare class Subschema<K = any, V = any, C = K, TContext = Record<string, any>>
|
|
102
102
|
set transformedSchema(value: GraphQLSchema);
|
103
103
|
}
|
104
104
|
|
105
|
-
type Tracer$1 = {
|
106
|
-
subgraphExecute(payload: {
|
107
|
-
executionRequest: ExecutionRequest;
|
108
|
-
}, wrapped: () => MaybePromise<void>): MaybePromise<void>;
|
109
|
-
};
|
110
|
-
|
111
105
|
declare module 'graphql' {
|
112
106
|
interface GraphQLResolveInfo {
|
113
107
|
executionRequest?: ExecutionRequest;
|
@@ -222,9 +216,7 @@ interface GatewayContext extends GatewayConfigContext, YogaInitialContext {
|
|
222
216
|
}
|
223
217
|
type GatewayPlugin<TPluginContext extends Record<string, any> = Record<string, any>, TContext extends Record<string, any> = Record<string, any>> = Plugin<Partial<TPluginContext> & GatewayContext & TContext> & UnifiedGraphPlugin<Partial<TPluginContext> & GatewayContext & TContext> & {
|
224
218
|
onFetch?: OnFetchHook<Partial<TPluginContext> & GatewayContext & TContext>;
|
225
|
-
tracer?: Tracer<TPluginContext & TContext & GatewayContext>;
|
226
219
|
} & Partial<Disposable | AsyncDisposable>;
|
227
|
-
type Tracer<TContext extends Record<string, any>> = Tracer$2<TContext> & Tracer$1;
|
228
220
|
|
229
221
|
declare global {
|
230
222
|
var DEBUG: string;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@graphql-mesh/hmac-upstream-signature",
|
3
|
-
"version": "1.2.21-alpha-
|
3
|
+
"version": "1.2.21-alpha-c77b3ec30b665f013b4e297964bd20751d1d94f3",
|
4
4
|
"type": "module",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -45,13 +45,13 @@
|
|
45
45
|
"@graphql-mesh/cross-helpers": "^0.4.10",
|
46
46
|
"@graphql-mesh/types": "^0.103.18",
|
47
47
|
"@graphql-mesh/utils": "^0.103.18",
|
48
|
-
"@graphql-tools/executor-common": "0.0.3-alpha-
|
48
|
+
"@graphql-tools/executor-common": "0.0.3-alpha-c77b3ec30b665f013b4e297964bd20751d1d94f3",
|
49
49
|
"@graphql-tools/utils": "^10.8.1",
|
50
50
|
"json-stable-stringify": "^1.1.1",
|
51
51
|
"tslib": "^2.8.1"
|
52
52
|
},
|
53
53
|
"devDependencies": {
|
54
|
-
"@graphql-hive/gateway-runtime": "1.4.17-alpha-
|
54
|
+
"@graphql-hive/gateway-runtime": "1.4.17-alpha-c77b3ec30b665f013b4e297964bd20751d1d94f3",
|
55
55
|
"@types/json-stable-stringify": "^1.2.0",
|
56
56
|
"graphql": "^16.9.0",
|
57
57
|
"graphql-yoga": "^5.12.0",
|