@graphql-tools/wrap 11.1.4 → 11.1.5-alpha-4d1c96128a393dc22315febb8a66c2944cbecf80
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/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @graphql-tools/wrap
|
|
2
2
|
|
|
3
|
+
## 11.1.5-alpha-4d1c96128a393dc22315febb8a66c2944cbecf80
|
|
4
|
+
### Patch Changes
|
|
5
|
+
|
|
6
|
+
- Updated dependencies [[`8ee616a`](https://github.com/graphql-hive/gateway/commit/8ee616a668eea6cf2b4539a17642ed1f85a9560d)]:
|
|
7
|
+
- @graphql-tools/delegate@12.0.5-alpha-4d1c96128a393dc22315febb8a66c2944cbecf80
|
|
8
|
+
|
|
3
9
|
## 11.1.4
|
|
4
10
|
### Patch Changes
|
|
5
11
|
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SubschemaConfig, Subschema, ICreateProxyingResolverOptions, Transform, DelegationContext } from '@graphql-tools/delegate';
|
|
2
|
-
import { GraphQLSchema, GraphQLFieldResolver, GraphQLNamedType,
|
|
2
|
+
import { GraphQLSchema, GraphQLFieldResolver, GraphQLNamedType, GraphQLEnumValueConfig, GraphQLError, FieldNode, FragmentDefinitionNode, SelectionNode, GraphQLFieldConfig, ObjectValueNode, ObjectFieldNode, GraphQLInputFieldConfig, SelectionSetNode, GraphQLArgument, IntrospectionOptions, buildClientSchema, ParseOptions } from 'graphql';
|
|
3
3
|
import { RenameTypesOptions, ExecutionRequest, ExecutionResult, Maybe, RootFieldFilter, ObjectFieldFilter, FieldFilter, InputFieldFilter, PruneSchemaOptions, FieldNodeMappers, SyncExecutor, AsyncExecutor, Executor } from '@graphql-tools/utils';
|
|
4
4
|
import { MaybePromise } from '@whatwg-node/promise-helpers';
|
|
5
5
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SubschemaConfig, Subschema, ICreateProxyingResolverOptions, Transform, DelegationContext } from '@graphql-tools/delegate';
|
|
2
|
-
import { GraphQLSchema, GraphQLFieldResolver, GraphQLNamedType,
|
|
2
|
+
import { GraphQLSchema, GraphQLFieldResolver, GraphQLNamedType, GraphQLEnumValueConfig, GraphQLError, FieldNode, FragmentDefinitionNode, SelectionNode, GraphQLFieldConfig, ObjectValueNode, ObjectFieldNode, GraphQLInputFieldConfig, SelectionSetNode, GraphQLArgument, IntrospectionOptions, buildClientSchema, ParseOptions } from 'graphql';
|
|
3
3
|
import { RenameTypesOptions, ExecutionRequest, ExecutionResult, Maybe, RootFieldFilter, ObjectFieldFilter, FieldFilter, InputFieldFilter, PruneSchemaOptions, FieldNodeMappers, SyncExecutor, AsyncExecutor, Executor } from '@graphql-tools/utils';
|
|
4
4
|
import { MaybePromise } from '@whatwg-node/promise-helpers';
|
|
5
5
|
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { isExternalObject, getUnpathedErrors, getSubschema, resolveExternalValue,
|
|
1
|
+
import { delegateToSchema, isExternalObject, getUnpathedErrors, getSubschema, resolveExternalValue, applySchemaTransforms, defaultMergedResolver, getTypeInfo as getTypeInfo$1, isPrototypePollutingKey } from '@graphql-tools/delegate';
|
|
2
2
|
import { getRootTypeMap, getResponseKeyFromInfo, memoize1, mapSchema, MapperKind, renameType, visitData, transformInputValue, memoize2, visitResult, astFromValueUntyped, getOperationASTFromRequest, relocatedError, getArgumentValues, valueMatchesCriteria, getDirectives, pruneSchema, selectObjectFields, appendObjectFields, modifyObjectFields, removeObjectFields, isAsyncIterable, createGraphQLError, inspect } from '@graphql-tools/utils';
|
|
3
3
|
import { isSpecifiedScalarType, GraphQLScalarType, GraphQLUnionType, GraphQLInterfaceType, GraphQLObjectType, isScalarType, visit, Kind, visitWithTypeInfo, isObjectType, isInterfaceType, typeFromAST, isInputType, getNamedType, TypeInfo, versionInfo, isLeafType, valueFromAST, valueFromASTUntyped, astFromValue, GraphQLNonNull, getNullableType, isListType, GraphQLList, BREAK, parse, getIntrospectionQuery, buildClientSchema } from 'graphql';
|
|
4
4
|
import { handleMaybePromise } from '@whatwg-node/promise-helpers';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-tools/wrap",
|
|
3
|
-
"version": "11.1.
|
|
3
|
+
"version": "11.1.5-alpha-4d1c96128a393dc22315febb8a66c2944cbecf80",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A set of utils for faster development of GraphQL tools",
|
|
6
6
|
"repository": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@graphql-tools/delegate": "
|
|
41
|
+
"@graphql-tools/delegate": "12.0.5-alpha-4d1c96128a393dc22315febb8a66c2944cbecf80",
|
|
42
42
|
"@graphql-tools/schema": "^10.0.29",
|
|
43
43
|
"@graphql-tools/utils": "^11.0.0",
|
|
44
44
|
"@whatwg-node/promise-helpers": "^1.3.2",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@graphql-tools/mock": "^9.1.3",
|
|
49
49
|
"graphql": "^16.12.0",
|
|
50
|
-
"pkgroll": "2.
|
|
50
|
+
"pkgroll": "2.23.0"
|
|
51
51
|
},
|
|
52
52
|
"sideEffects": false
|
|
53
53
|
}
|