@graphql-tools/federation 4.2.8 → 4.2.9-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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @graphql-tools/federation
2
2
 
3
+ ## 4.2.9-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
+ - @graphql-tools/stitch@10.1.9-alpha-4d1c96128a393dc22315febb8a66c2944cbecf80
9
+ - @graphql-tools/wrap@11.1.5-alpha-4d1c96128a393dc22315febb8a66c2944cbecf80
10
+
3
11
  ## 4.2.8
4
12
  ### Patch Changes
5
13
 
package/dist/index.d.cts CHANGED
@@ -3,7 +3,7 @@ import { HTTPExecutorOptions, FetchFn } from '@graphql-tools/executor-http';
3
3
  import { TypedEventTarget } from '@graphql-yoga/typed-event-target';
4
4
  import { DisposableSymbols } from '@whatwg-node/disposablestack';
5
5
  import * as graphql from 'graphql';
6
- import { SelectionSetNode, GraphQLSchema, TypeNode, DocumentNode } from 'graphql';
6
+ import { GraphQLSchema, TypeNode, SelectionSetNode, DocumentNode } from 'graphql';
7
7
  import { SubschemaConfig, MergedTypeConfig, BatchingOptions } from '@graphql-tools/delegate';
8
8
  import { ValidationLevel, MergeFieldConfigCandidate } from '@graphql-tools/stitch';
9
9
  import { Executor, SchemaExtensions } from '@graphql-tools/utils';
package/dist/index.d.ts CHANGED
@@ -3,7 +3,7 @@ import { HTTPExecutorOptions, FetchFn } from '@graphql-tools/executor-http';
3
3
  import { TypedEventTarget } from '@graphql-yoga/typed-event-target';
4
4
  import { DisposableSymbols } from '@whatwg-node/disposablestack';
5
5
  import * as graphql from 'graphql';
6
- import { SelectionSetNode, GraphQLSchema, TypeNode, DocumentNode } from 'graphql';
6
+ import { GraphQLSchema, TypeNode, SelectionSetNode, DocumentNode } from 'graphql';
7
7
  import { SubschemaConfig, MergedTypeConfig, BatchingOptions } from '@graphql-tools/delegate';
8
8
  import { ValidationLevel, MergeFieldConfigCandidate } from '@graphql-tools/stitch';
9
9
  import { Executor, SchemaExtensions } from '@graphql-tools/utils';
package/dist/index.js CHANGED
@@ -1,11 +1,11 @@
1
1
  import { getTypeInfo, extractUnavailableFieldsFromSelectionSet, subtractSelectionSets, delegateToSchema, OBJECT_SUBSCHEMA_SYMBOL, FIELD_SUBSCHEMA_MAP_SYMBOL, UNPATHED_ERRORS_SYMBOL, isExternalObject, createDefaultExecutor } from '@graphql-tools/delegate';
2
- import { memoize1, mergeDeep, parseSelectionSet, mapSchema, MapperKind, getDirectiveExtensions, createGraphQLError, fakePromise } from '@graphql-tools/utils';
2
+ import { mapSchema, MapperKind, memoize1, parseSelectionSet, mergeDeep, getDirectiveExtensions, createGraphQLError, fakePromise } from '@graphql-tools/utils';
3
3
  import { DisposableSymbols } from '@whatwg-node/disposablestack';
4
4
  import { CustomEvent } from '@whatwg-node/events';
5
5
  import { fetch } from '@whatwg-node/fetch';
6
6
  import { CRITICAL_ERROR } from '@graphql-tools/executor';
7
7
  import { buildHTTPExecutor } from '@graphql-tools/executor-http';
8
- import { getDefaultFieldConfigMerger, ValidationLevel, stitchSchemas, calculateSelectionScore } from '@graphql-tools/stitch';
8
+ import { stitchSchemas, getDefaultFieldConfigMerger, ValidationLevel, calculateSelectionScore } from '@graphql-tools/stitch';
9
9
  import { isPromise, handleMaybePromise } from '@whatwg-node/promise-helpers';
10
10
  import { Kind, parse, visit, print, buildASTSchema, isObjectType, isInterfaceType, isInputObjectType, parseType, visitWithTypeInfo } from 'graphql';
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-tools/federation",
3
- "version": "4.2.8",
3
+ "version": "4.2.9-alpha-4d1c96128a393dc22315febb8a66c2944cbecf80",
4
4
  "type": "module",
5
5
  "description": "Useful tools to create and manipulate GraphQL schemas.",
6
6
  "repository": {
@@ -38,14 +38,14 @@
38
38
  "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
39
39
  },
40
40
  "dependencies": {
41
- "@graphql-tools/delegate": "^12.0.4",
41
+ "@graphql-tools/delegate": "12.0.5-alpha-4d1c96128a393dc22315febb8a66c2944cbecf80",
42
42
  "@graphql-tools/executor": "^1.4.13",
43
43
  "@graphql-tools/executor-http": "^3.1.0",
44
44
  "@graphql-tools/merge": "^9.1.5",
45
45
  "@graphql-tools/schema": "^10.0.29",
46
- "@graphql-tools/stitch": "^10.1.8",
46
+ "@graphql-tools/stitch": "10.1.9-alpha-4d1c96128a393dc22315febb8a66c2944cbecf80",
47
47
  "@graphql-tools/utils": "^11.0.0",
48
- "@graphql-tools/wrap": "^11.1.4",
48
+ "@graphql-tools/wrap": "11.1.5-alpha-4d1c96128a393dc22315febb8a66c2944cbecf80",
49
49
  "@graphql-yoga/typed-event-target": "^3.0.2",
50
50
  "@whatwg-node/disposablestack": "^0.0.6",
51
51
  "@whatwg-node/events": "^0.1.2",
@@ -58,10 +58,10 @@
58
58
  "@apollo/server": "^5.1.0",
59
59
  "@apollo/server-gateway-interface": "^2.0.0",
60
60
  "@apollo/subgraph": "^2.11.3",
61
- "@types/lodash": "4.17.21",
61
+ "@types/lodash": "4.17.23",
62
62
  "graphql": "^16.12.0",
63
63
  "graphql-federation-gateway-audit": "graphql-hive/federation-gateway-audit#cc224d26da54ad1c2393dfef3346893c315f351d",
64
- "pkgroll": "2.21.5"
64
+ "pkgroll": "2.23.0"
65
65
  },
66
66
  "sideEffects": false
67
67
  }