From 415a957633462df099ccdd877bcfb6ecd0b3fd65 Mon Sep 17 00:00:00 2001 From: Rikki Schulte Date: Sun, 8 Sep 2019 14:48:54 -0400 Subject: [PATCH 1/9] chore: Convert LSP tests to jest from mocha (#871) - added fix and comment for new failing tests - added assertions for new tests for Jest - switched back to global jest run, 12.8s for all but codemirror! woo! - make sure mocks arent being built by babel as well (fixes warning) --- package.json | 9 +- packages/graphiql/src/utility/mergeAst.js | 4 +- ...geService.js => GraphQLLanguageService.ts} | 50 +- ...test.js => GraphQLLanguageService-test.ts} | 9 +- .../getAutocompleteSuggestions-test.js | 322 -- .../getAutocompleteSuggestions-test.ts | 324 ++ ...finition-test.js => getDefinition-test.ts} | 25 +- ...nostics-test.js => getDiagnostics-test.ts} | 39 +- .../src/__tests__/getHoverInformation-test.js | 117 - .../src/__tests__/getHoverInformation-test.ts | 183 + ...{getOutline-test.js => getOutline-test.ts} | 5 +- ...ocompleteUtils.js => autocompleteUtils.ts} | 38 +- ...tions.js => getAutocompleteSuggestions.ts} | 54 +- .../{getDefinition.js => getDefinition.ts} | 18 +- .../{getDiagnostics.js => getDiagnostics.ts} | 26 +- ...rInformation.js => getHoverInformation.ts} | 93 +- .../src/{getOutline.js => getOutline.ts} | 53 +- .../src/{index.js => index.ts} | 1 - .../tsconfig.json | 7 + .../package.json | 1 + ...{CharacterStream.js => CharacterStream.ts} | 11 +- .../src/{RuleHelpers.js => RuleHelpers.ts} | 10 +- .../src/{Rules.js => Rules.ts} | 21 +- .../src/{index.js => index.ts} | 1 - .../src/{onlineParser.js => onlineParser.ts} | 67 +- .../tsconfig.json | 7 + .../tsconfig.tsbuildinfo | 3419 +++++++++++++++++ .../package.json | 1 + .../src/{index.js => index.ts} | 251 +- .../tsconfig.json | 7 + .../tsconfig.tsbuildinfo | 3353 ++++++++++++++++ .../package.json | 1 + .../src/{Range.js => Range.ts} | 30 +- .../{Range-test.js => Range-test.ts} | 12 +- ...n-test.js => getASTNodeAtPosition-test.ts} | 1 - ...est.js => validateWithCustomRules-test.ts} | 3 + ...eAtPosition.js => getASTNodeAtPosition.ts} | 8 +- .../src/{index.js => index.ts} | 1 - ...tomRules.js => validateWithCustomRules.ts} | 32 +- .../tsconfig.json | 7 + .../tsconfig.tsbuildinfo | 3412 ++++++++++++++++ tsconfig.base.json | 32 + tsconfig.json | 21 + yarn.lock | 32 + 44 files changed, 11325 insertions(+), 793 deletions(-) rename packages/graphql-language-service-interface/src/{GraphQLLanguageService.js => GraphQLLanguageService.ts} (88%) rename packages/graphql-language-service-interface/src/__tests__/{GraphQLLanguageService-test.js => GraphQLLanguageService-test.ts} (95%) delete mode 100644 packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.js create mode 100644 packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.ts rename packages/graphql-language-service-interface/src/__tests__/{getDefinition-test.js => getDefinition-test.ts} (70%) rename packages/graphql-language-service-interface/src/__tests__/{getDiagnostics-test.js => getDiagnostics-test.ts} (63%) delete mode 100644 packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js create mode 100644 packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts rename packages/graphql-language-service-interface/src/__tests__/{getOutline-test.js => getOutline-test.ts} (97%) rename packages/graphql-language-service-interface/src/{autocompleteUtils.js => autocompleteUtils.ts} (86%) rename packages/graphql-language-service-interface/src/{getAutocompleteSuggestions.js => getAutocompleteSuggestions.ts} (95%) rename packages/graphql-language-service-interface/src/{getDefinition.js => getDefinition.ts} (94%) rename packages/graphql-language-service-interface/src/{getDiagnostics.js => getDiagnostics.ts} (91%) rename packages/graphql-language-service-interface/src/{getHoverInformation.js => getHoverInformation.ts} (65%) rename packages/graphql-language-service-interface/src/{getOutline.js => getOutline.ts} (62%) rename packages/graphql-language-service-interface/src/{index.js => index.ts} (98%) create mode 100644 packages/graphql-language-service-interface/tsconfig.json rename packages/graphql-language-service-parser/src/{CharacterStream.js => CharacterStream.ts} (95%) rename packages/graphql-language-service-parser/src/{RuleHelpers.js => RuleHelpers.ts} (88%) rename packages/graphql-language-service-parser/src/{Rules.js => Rules.ts} (99%) rename packages/graphql-language-service-parser/src/{index.js => index.ts} (97%) rename packages/graphql-language-service-parser/src/{onlineParser.js => onlineParser.ts} (85%) create mode 100644 packages/graphql-language-service-parser/tsconfig.json create mode 100644 packages/graphql-language-service-parser/tsconfig.tsbuildinfo rename packages/graphql-language-service-types/src/{index.js => index.ts} (53%) create mode 100644 packages/graphql-language-service-types/tsconfig.json create mode 100644 packages/graphql-language-service-types/tsconfig.tsbuildinfo rename packages/graphql-language-service-utils/src/{Range.js => Range.ts} (74%) rename packages/graphql-language-service-utils/src/__tests__/{Range-test.js => Range-test.ts} (91%) rename packages/graphql-language-service-utils/src/__tests__/{getASTNodeAtPosition-test.js => getASTNodeAtPosition-test.ts} (99%) rename packages/graphql-language-service-utils/src/__tests__/{validateWithCustomRules-test.js => validateWithCustomRules-test.ts} (99%) rename packages/graphql-language-service-utils/src/{getASTNodeAtPosition.js => getASTNodeAtPosition.ts} (89%) rename packages/graphql-language-service-utils/src/{index.js => index.ts} (97%) rename packages/graphql-language-service-utils/src/{validateWithCustomRules.js => validateWithCustomRules.ts} (71%) create mode 100644 packages/graphql-language-service-utils/tsconfig.json create mode 100644 packages/graphql-language-service-utils/tsconfig.tsbuildinfo create mode 100644 tsconfig.base.json create mode 100644 tsconfig.json diff --git a/package.json b/package.json index 565be87d83e..e885fc90557 100644 --- a/package.json +++ b/package.json @@ -24,13 +24,14 @@ "testonly": "jest && lerna run test --scope codemirror-graphql", "t": "yarn run testonly", "lint": "eslint packages/**/src || (printf '\\033[33mTry: \\033[7m yarn run lint -- --fix \\033[0m\\n' && exit 1)", + "lint:fix": "eslint 'packages/*/src/**/*.{ts,js,jsx,tsx,json}' --fix", "lint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check", "check": "flow check --show-all-errors", "prepublish": "node resources/prepublish.js", "pretty": "node resources/pretty.js", "pretty-check": "node resources/pretty.js --check", "version:release": "lerna version", - "version:prerelease": "lerna version --conventional-prerelease", + "version:prerelease": "lerna versiton --conventional-prerelease", "version:graduate": "lerna version --conventional-graduate" }, "devDependencies": { @@ -47,6 +48,7 @@ "@commitlint/cli": "^8.1.0", "@commitlint/config-conventional": "^8.1.0", "@commitlint/config-lerna-scopes": "^8.1.0", + "@types/jest": "^24.0.18", "babel-eslint": "^10.0.1", "chai": "4.2.0", "conventional-changelog-conventionalcommits": "^4.1.0", @@ -60,13 +62,14 @@ "eslint-plugin-react": "7.13.0", "fetch-mock": "^6.0.0", "flow-bin": "^0.101.0", - "graphql": "^14.3.1", + "graphql": "^14.5.2", "husky": "^3.0.5", "lerna": "^3.16.4", "mocha": "6.1.4", "jest": "^24.8.0", "jest-environment-jsdom": "^24.8.0", "jest-environment-jsdom-global": "^1.2.0", - "prettier": "^1.18.2" + "prettier": "^1.18.2", + "typescript": "^3.6.3" } } diff --git a/packages/graphiql/src/utility/mergeAst.js b/packages/graphiql/src/utility/mergeAst.js index 60e0ef00e02..259492eb67a 100644 --- a/packages/graphiql/src/utility/mergeAst.js +++ b/packages/graphiql/src/utility/mergeAst.js @@ -38,12 +38,12 @@ export function mergeAst(queryAst) { return elem.kind === Kind.FRAGMENT_DEFINITION; }) .forEach(frag => { - const copyFragment = Object.assign({}, frag); + const copyFragment = ({...frag}); copyFragment.kind = Kind.INLINE_FRAGMENT; fragments[frag.name.value] = copyFragment; }); - const copyAst = Object.assign({}, queryAst); + const copyAst = ({...queryAst}); copyAst.definitions = queryAst.definitions .filter(elem => { return elem.kind !== Kind.FRAGMENT_DEFINITION; diff --git a/packages/graphql-language-service-interface/src/GraphQLLanguageService.js b/packages/graphql-language-service-interface/src/GraphQLLanguageService.ts similarity index 88% rename from packages/graphql-language-service-interface/src/GraphQLLanguageService.js rename to packages/graphql-language-service-interface/src/GraphQLLanguageService.ts index 9a34d12c01f..882295351b0 100644 --- a/packages/graphql-language-service-interface/src/GraphQLLanguageService.js +++ b/packages/graphql-language-service-interface/src/GraphQLLanguageService.ts @@ -5,10 +5,9 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ -import type { +import { DocumentNode, FragmentSpreadNode, FragmentDefinitionNode, @@ -16,7 +15,8 @@ import type { TypeDefinitionNode, NamedTypeNode, } from 'graphql'; -import type { + +import { CompletionItem, DefinitionQueryResult, Diagnostic, @@ -25,8 +25,9 @@ import type { GraphQLProjectConfig, Uri, } from 'graphql-language-service-types'; -import type { Position } from 'graphql-language-service-utils'; -import type { Hover } from 'vscode-languageserver-types'; + +import { Position } from 'graphql-language-service-utils'; +import { Hover } from 'vscode-languageserver-types'; import { Kind, parse, print } from 'graphql'; import { getAutocompleteSuggestions } from './getAutocompleteSuggestions'; @@ -76,7 +77,9 @@ export class GraphQLLanguageService { // Perform syntax diagnostics first, as this doesn't require // schema/fragment definitions, even the project configuration. let queryHasExtensions = false; - const projectConfig = this._graphQLConfig.getConfigForFile(uri); + const projectConfig = this._graphQLConfig.getConfigForFile( + uri, + ) as GraphQLProjectConfig; const schemaPath = projectConfig.schemaPath; try { const queryAST = parse(query); @@ -98,6 +101,7 @@ export class GraphQLLanguageService { case DIRECTIVE_DEFINITION: return true; } + return false; }); } @@ -118,10 +122,12 @@ export class GraphQLLanguageService { const fragmentDefinitions = await this._graphQLCache.getFragmentDefinitions( projectConfig, ); + const fragmentDependencies = await this._graphQLCache.getFragmentDependencies( query, fragmentDefinitions, ); + const dependenciesSource = fragmentDependencies.reduce( (prev, cur) => `${prev} ${print(cur.definition)}`, '', @@ -169,7 +175,9 @@ export class GraphQLLanguageService { position: Position, filePath: Uri, ): Promise> { - const projectConfig = this._graphQLConfig.getConfigForFile(filePath); + const projectConfig = this._graphQLConfig.getConfigForFile( + filePath, + ) as GraphQLProjectConfig; const schema = await this._graphQLCache .getSchema(projectConfig.projectName) .catch(() => null); @@ -184,8 +192,10 @@ export class GraphQLLanguageService { query: string, position: Position, filePath: Uri, - ): Promise { - const projectConfig = this._graphQLConfig.getConfigForFile(filePath); + ): Promise { + const projectConfig = this._graphQLConfig.getConfigForFile( + filePath, + ) as GraphQLProjectConfig; const schema = await this._graphQLCache .getSchema(projectConfig.projectName) .catch(() => null); @@ -200,8 +210,10 @@ export class GraphQLLanguageService { query: string, position: Position, filePath: Uri, - ): Promise { - const projectConfig = this._graphQLConfig.getConfigForFile(filePath); + ): Promise { + const projectConfig = this._graphQLConfig.getConfigForFile( + filePath, + ) as GraphQLProjectConfig; let ast; try { @@ -221,13 +233,15 @@ export class GraphQLLanguageService { filePath, projectConfig, ); + case FRAGMENT_DEFINITION: case OPERATION_DEFINITION: return getDefinitionQueryResultForDefinitionNode( filePath, query, - (node: FragmentDefinitionNode | OperationDefinitionNode), + node as FragmentDefinitionNode | OperationDefinitionNode, ); + case NAMED_TYPE: return this._getDefinitionForNamedType( query, @@ -247,7 +261,7 @@ export class GraphQLLanguageService { node: NamedTypeNode, filePath: Uri, projectConfig: GraphQLProjectConfig, - ): Promise { + ): Promise { const objectTypeDefinitions = await this._graphQLCache.getObjectTypeDefinitions( projectConfig, ); @@ -264,7 +278,9 @@ export class GraphQLLanguageService { definition.kind === ENUM_TYPE_DEFINITION, ); - const typeCastedDefs = ((localObjectTypeDefinitions: any): Array); + const typeCastedDefs = (localObjectTypeDefinitions as any) as Array< + TypeDefinitionNode + >; const localOperationDefinationInfos = typeCastedDefs.map( (definition: TypeDefinitionNode) => ({ @@ -289,7 +305,7 @@ export class GraphQLLanguageService { node: FragmentSpreadNode, filePath: Uri, projectConfig: GraphQLProjectConfig, - ): Promise { + ): Promise { const fragmentDefinitions = await this._graphQLCache.getFragmentDefinitions( projectConfig, ); @@ -303,7 +319,9 @@ export class GraphQLLanguageService { definition => definition.kind === FRAGMENT_DEFINITION, ); - const typeCastedDefs = ((localFragDefinitions: any): Array); + const typeCastedDefs = (localFragDefinitions as any) as Array< + FragmentDefinitionNode + >; const localFragInfos = typeCastedDefs.map( (definition: FragmentDefinitionNode) => ({ diff --git a/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.js b/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.ts similarity index 95% rename from packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.js rename to packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.ts index 080b85a5f3c..7e186ecfa5f 100644 --- a/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.js +++ b/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.ts @@ -5,7 +5,6 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ import { join } from 'path'; @@ -23,10 +22,8 @@ const MOCK_CONFIG = { describe('GraphQLLanguageService', () => { const mockCache: any = { getSchema() { - const schemaSDL = fs.readFileSync( - join(__dirname, '__schema__/StarWarsSchema.graphql'), - 'utf8', - ); + const schemaSDL = fs.readFileSync(join(__dirname, '__schema__/StarWarsSchema.graphql'), 'utf8'); + const schemaJS = buildSchema(schemaSDL); return new Promise((resolve, reject) => resolve(schemaJS)); }, @@ -44,6 +41,7 @@ describe('GraphQLLanguageService', () => { name: { value: 'Episode', }, + loc: { start: 293, end: 335, @@ -62,6 +60,7 @@ describe('GraphQLLanguageService', () => { name: { value: 'Episode', }, + loc: { start: 293, end: 335, diff --git a/packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.js b/packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.js deleted file mode 100644 index a2a9cfa463a..00000000000 --- a/packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.js +++ /dev/null @@ -1,322 +0,0 @@ -/** - * Copyright (c) 2019 GraphQL Contributors - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - * - * @flow - */ - -import type { CompletionItem } from 'graphql-language-service-types'; - -import fs from 'fs'; -import { buildSchema } from 'graphql'; -import { Position } from 'graphql-language-service-utils'; -import path from 'path'; - -import { getAutocompleteSuggestions } from '../getAutocompleteSuggestions'; - -describe('getAutocompleteSuggestions', () => { - let schema; - beforeEach(async () => { - const schemaIDL = fs.readFileSync( - path.join(__dirname, '__schema__/StarWarsSchema.graphql'), - 'utf8', - ); - schema = buildSchema(schemaIDL); - }); - - // Returns a soreted autocomplete suggestions in an increasing order. - function testSuggestions( - query: string, - point: Position, - ): Array { - return getAutocompleteSuggestions(schema, query, point) - .filter( - field => !['__schema', '__type'].some(name => name === field.label), - ) - .sort((a, b) => a.label.localeCompare(b.label)) - .map(suggestion => { - const response = { label: suggestion.label }; - if (suggestion.detail) { - Object.assign(response, { - detail: String(suggestion.detail), - }); - } - return response; - }); - } - - it('provides correct sortText response', () => { - const result = getAutocompleteSuggestions(schema, `{ h`, new Position(0, 3)) - .map(({sortText, label, detail}) => ({sortText, label, detail})) - expect(result).toEqual([{ - sortText: '0hero', - label: 'hero', - detail: 'Character', - }, - { - sortText: '1human', - label: 'human', - detail: 'Human', - }, - { - sortText: '6__schema', - label: '__schema', - detail: '__Schema!', - }]); - }); - - it('provides correct initial keywords', () => { - expect(testSuggestions('', new Position(0, 0))).toEqual([ - { label: '{' }, - { label: 'fragment' }, - { label: 'mutation' }, - { label: 'query' }, - { label: 'subscription' }, - ]); - - expect(testSuggestions('q', new Position(0, 1))).toEqual([ - { label: '{' }, - { label: 'query' }, - ]); - }); - - it('provides correct suggestions at where the cursor is', () => { - // Below should provide initial keywords - expect(testSuggestions(' {}', new Position(0, 0))).toEqual([ - { label: '{' }, - { label: 'fragment' }, - { label: 'mutation' }, - { label: 'query' }, - { label: 'subscription' }, - ]); - // Below should provide root field names - expect(testSuggestions(' {}', new Position(0, 2))).toEqual([ - { label: '__typename', detail: 'String!' }, - { label: 'droid', detail: 'Droid' }, - { label: 'hero', detail: 'Character' }, - { label: 'human', detail: 'Human' }, - { label: 'inputTypeTest', detail: 'TestType' }, - ]); - - // Test for query text with empty lines - expect( - testSuggestions( - ` -query name { - ...testFragment -} - `, - new Position(2, 0), - ), - ).toEqual([ - { label: '__typename', detail: 'String!' }, - { label: 'droid', detail: 'Droid' }, - { label: 'hero', detail: 'Character' }, - { label: 'human', detail: 'Human' }, - { label: 'inputTypeTest', detail: 'TestType' }, - ]); - }); - - it('provides correct field name suggestions', () => { - const result = testSuggestions('{ ', new Position(0, 2)); - expect(result).toEqual([ - { label: '__typename', detail: 'String!' }, - { label: 'droid', detail: 'Droid' }, - { label: 'hero', detail: 'Character' }, - { label: 'human', detail: 'Human' }, - { label: 'inputTypeTest', detail: 'TestType' }, - ]); - }); - - it('provides correct field name suggestions after filtered', () => { - const result = testSuggestions('{ h ', new Position(0, 3)); - expect(result).toEqual([ - { label: 'hero', detail: 'Character' }, - { label: 'human', detail: 'Human' }, - ]); - }); - - it('provides correct field name suggestions with alias', () => { - const result = testSuggestions( - '{ alias: human(id: "1") { ', - new Position(0, 26), - ); - - expect(result).toEqual([ - { label: '__typename', detail: 'String!' }, - { label: 'appearsIn', detail: '[Episode]' }, - { label: 'friends', detail: '[Character]' }, - { label: 'id', detail: 'String!' }, - { label: 'name', detail: 'String' }, - { label: 'secretBackstory', detail: 'String' }, - ]); - }); - - it('provides correct field suggestions for fragments', () => { - const result = testSuggestions( - 'fragment test on Human { ', - new Position(0, 25), - ); - expect(result).toEqual([ - { label: '__typename', detail: 'String!' }, - { label: 'appearsIn', detail: '[Episode]' }, - { label: 'friends', detail: '[Character]' }, - { label: 'id', detail: 'String!' }, - { label: 'name', detail: 'String' }, - { label: 'secretBackstory', detail: 'String' }, - ]); - }); - - it('provides correct argument suggestions', () => { - const result = testSuggestions('{ human (', new Position(0, 9)); - expect(result).toEqual([{ label: 'id', detail: 'String!' }]); - }); - - it('provides correct argument suggestions when using aliases', () => { - const result = testSuggestions('{ aliasTest: human( ', new Position(0, 20)); - expect(result).toEqual([{ label: 'id', detail: 'String!' }]); - }); - - it('provides correct typeCondition suggestions', () => { - const suggestionsOnQuery = testSuggestions('{ ... on ', new Position(0, 9)); - expect( - suggestionsOnQuery.filter(({ label }) => !label.startsWith('__')), - ).toEqual([{ label: 'Query' }]); - - const suggestionsOnCompositeType = testSuggestions( - '{ hero(episode: JEDI) { ... on } }', - new Position(0, 31), - ); - expect(suggestionsOnCompositeType).toEqual([ - { label: 'Character' }, - { label: 'Droid' }, - { label: 'Human' }, - ]); - - expect( - testSuggestions( - 'fragment Foo on Character { ... on }', - new Position(0, 35), - ), - ).toEqual([ - { label: 'Character' }, - { label: 'Droid' }, - { label: 'Human' }, - ]); - }); - - it('provides correct typeCondition suggestions on fragment', () => { - const result = testSuggestions('fragment Foo on {}', new Position(0, 16)); - expect(result.filter(({ label }) => !label.startsWith('__'))).toEqual( - [ - { label: 'Character' }, - { label: 'Droid' }, - { label: 'Human' }, - { label: 'Query' }, - { label: 'TestType' }, - ], - ); - }); - - it('provides correct ENUM suggestions', () => { - const result = testSuggestions('{ hero(episode: ', new Position(0, 16)); - expect(result).toEqual([ - { label: 'EMPIRE', detail: 'Episode' }, - { label: 'JEDI', detail: 'Episode' }, - { label: 'NEWHOPE', detail: 'Episode' }, - ]); - }); - - it('provides fragment name suggestion', () => { - const fragmentDef = 'fragment Foo on Human { id }'; - - // Test on concrete types - expect( - testSuggestions( - `${fragmentDef} query { human(id: "1") { ...`, - new Position(0, 57), - ), - ).toEqual([{ label: 'Foo', detail: 'Human' }]); - expect( - testSuggestions( - `query { human(id: "1") { ... }} ${fragmentDef}`, - new Position(0, 28), - ), - ).toEqual([{ label: 'Foo', detail: 'Human' }]); - - // Test on abstract type - expect( - testSuggestions( - `${fragmentDef} query { hero(episode: JEDI) { ...`, - new Position(0, 62), - ), - ).toEqual([{ label: 'Foo', detail: 'Human' }]); - }); - - it('provides correct directive suggestions', () => { - expect(testSuggestions('{ test @', new Position(0, 8))).toEqual([ - { label: 'include' }, - { label: 'skip' }, - { label: 'test' }, - ]); - expect( - testSuggestions('{ aliasTest: test @ }', new Position(0, 19)), - ).toEqual([ - { label: 'include' }, - { label: 'skip' }, - { label: 'test' }, - ]); - expect(testSuggestions('query @', new Position(0, 7))).toEqual([]); - }); - - it('provides correct testInput suggestions', () => { - expect( - testSuggestions('{ inputTypeTest(args: {', new Position(0, 23)), - ).toEqual([ - { label: 'key', detail: 'String!' }, - { label: 'value', detail: 'Int' }, - ]); - }); - - it('provides correct field name suggestion inside inline fragment', () => { - expect( - testSuggestions( - 'fragment Foo on Character { ... on Human { }}', - new Position(0, 42), - ), - ).toEqual([ - { label: '__typename', detail: 'String!' }, - { label: 'appearsIn', detail: '[Episode]' }, - { label: 'friends', detail: '[Character]' }, - { label: 'id', detail: 'String!' }, - { label: 'name', detail: 'String' }, - { label: 'secretBackstory', detail: 'String' }, - ]); - - // Typeless inline fragment assumes the type automatically - expect( - testSuggestions('fragment Foo on Droid { ... { ', new Position(0, 30)), - ).toEqual([ - { label: '__typename', detail: 'String!' }, - { label: 'appearsIn', detail: '[Episode]' }, - { label: 'friends', detail: '[Character]' }, - { label: 'id', detail: 'String!' }, - { label: 'name', detail: 'String' }, - { label: 'primaryFunction', detail: 'String' }, - { label: 'secretBackstory', detail: 'String' }, - ]); - }); - - it('provides correct directive suggestions on definitions', () => - expect(testSuggestions('type Type @', new Position(0, 11))).toEqual([ - { label: 'onAllDefs' }, - ])); - - it('provides correct directive suggestions on args definitions', () => - expect( - testSuggestions('type Type { field(arg: String @', new Position(0, 31)), - ).toEqual([{ label: 'onAllDefs' }, { label: 'onArg' }])); -}); diff --git a/packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.ts b/packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.ts new file mode 100644 index 00000000000..953bd5172b1 --- /dev/null +++ b/packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.ts @@ -0,0 +1,324 @@ +/** + * Copyright (c) 2019 GraphQL Contributors + * All rights reserved. + * + * This source code is licensed under the license found in the + * LICENSE file in the root directory of this source tree. + * + * @flow + */ + +import { CompletionItem } from 'graphql-language-service-types'; + +import { expect } from 'chai'; +import { beforeEach, describe, it } from 'mocha'; +import fs from 'fs'; +import { buildSchema } from 'graphql'; +import { Position } from 'graphql-language-service-utils'; +import path from 'path'; + +import { getAutocompleteSuggestions } from '../getAutocompleteSuggestions'; + +describe('getAutocompleteSuggestions', () => { + let schema; + beforeEach(async () => { + const schemaIDL = fs.readFileSync( + path.join(__dirname, '__schema__/StarWarsSchema.graphql'), + 'utf8'); + + schema = buildSchema(schemaIDL); + }); + + // Returns a soreted autocomplete suggestions in an increasing order. + function testSuggestions( + query: string, + point: Position) + : Array { + return getAutocompleteSuggestions(schema, query, point). + filter( + field => !['__schema', '__type'].some(name => name === field.label)). + + sort((a, b) => a.label.localeCompare(b.label)). + map(suggestion => { + const response = { label: suggestion.label }; + if (suggestion.detail) { + Object.assign(response, { + detail: String(suggestion.detail) }); + + } + return response; + }); + } + + it('provides correct sortText response', () => { + const result = getAutocompleteSuggestions(schema, `{ h`, new Position(0, 3)). + map(({ sortText, label, detail }) => ({ sortText, label, detail })); + expect(result).to.deep.equal([{ + sortText: '0hero', + label: 'hero', + detail: 'Character' }, + + { + sortText: '1human', + label: 'human', + detail: 'Human' }, + + { + sortText: '6__schema', + label: '__schema', + detail: '__Schema!' }]); + + }); + + it('provides correct initial keywords', () => { + expect(testSuggestions('', new Position(0, 0))).to.deep.equal([ + { label: '{' }, + { label: 'fragment' }, + { label: 'mutation' }, + { label: 'query' }, + { label: 'subscription' }]); + + + expect(testSuggestions('q', new Position(0, 1))).to.deep.equal([ + { label: '{' }, + { label: 'query' }]); + + }); + + it('provides correct suggestions at where the cursor is', () => { + // Below should provide initial keywords + expect(testSuggestions(' {}', new Position(0, 0))).to.deep.equal([ + { label: '{' }, + { label: 'fragment' }, + { label: 'mutation' }, + { label: 'query' }, + { label: 'subscription' }]); + + // Below should provide root field names + expect(testSuggestions(' {}', new Position(0, 2))).to.deep.equal([ + { label: '__typename', detail: 'String!' }, + { label: 'droid', detail: 'Droid' }, + { label: 'hero', detail: 'Character' }, + { label: 'human', detail: 'Human' }, + { label: 'inputTypeTest', detail: 'TestType' }]); + + + // Test for query text with empty lines + expect( + testSuggestions( + ` +query name { + ...testFragment +} + `, + new Position(2, 0))). + + to.deep.equal([ + { label: '__typename', detail: 'String!' }, + { label: 'droid', detail: 'Droid' }, + { label: 'hero', detail: 'Character' }, + { label: 'human', detail: 'Human' }, + { label: 'inputTypeTest', detail: 'TestType' }]); + + }); + + it('provides correct field name suggestions', () => { + const result = testSuggestions('{ ', new Position(0, 2)); + expect(result).to.deep.equal([ + { label: '__typename', detail: 'String!' }, + { label: 'droid', detail: 'Droid' }, + { label: 'hero', detail: 'Character' }, + { label: 'human', detail: 'Human' }, + { label: 'inputTypeTest', detail: 'TestType' }]); + + }); + + it('provides correct field name suggestions after filtered', () => { + const result = testSuggestions('{ h ', new Position(0, 3)); + expect(result).to.deep.equal([ + { label: 'hero', detail: 'Character' }, + { label: 'human', detail: 'Human' }]); + + }); + + it('provides correct field name suggestions with alias', () => { + const result = testSuggestions( + '{ alias: human(id: "1") { ', + new Position(0, 26)); + + + expect(result).to.deep.equal([ + { label: '__typename', detail: 'String!' }, + { label: 'appearsIn', detail: '[Episode]' }, + { label: 'friends', detail: '[Character]' }, + { label: 'id', detail: 'String!' }, + { label: 'name', detail: 'String' }, + { label: 'secretBackstory', detail: 'String' }]); + + }); + + it('provides correct field suggestions for fragments', () => { + const result = testSuggestions( + 'fragment test on Human { ', + new Position(0, 25)); + + expect(result).to.deep.equal([ + { label: '__typename', detail: 'String!' }, + { label: 'appearsIn', detail: '[Episode]' }, + { label: 'friends', detail: '[Character]' }, + { label: 'id', detail: 'String!' }, + { label: 'name', detail: 'String' }, + { label: 'secretBackstory', detail: 'String' }]); + + }); + + it('provides correct argument suggestions', () => { + const result = testSuggestions('{ human (', new Position(0, 9)); + expect(result).to.deep.equal([{ label: 'id', detail: 'String!' }]); + }); + + it('provides correct argument suggestions when using aliases', () => { + const result = testSuggestions('{ aliasTest: human( ', new Position(0, 20)); + expect(result).to.deep.equal([{ label: 'id', detail: 'String!' }]); + }); + + it('provides correct typeCondition suggestions', () => { + const suggestionsOnQuery = testSuggestions('{ ... on ', new Position(0, 9)); + expect( + suggestionsOnQuery.filter(({ label }) => !label.startsWith('__'))). + to.deep.equal([{ label: 'Query' }]); + + const suggestionsOnCompositeType = testSuggestions( + '{ hero(episode: JEDI) { ... on } }', + new Position(0, 31)); + + expect(suggestionsOnCompositeType).to.deep.equal([ + { label: 'Character' }, + { label: 'Droid' }, + { label: 'Human' }]); + + + expect( + testSuggestions( + 'fragment Foo on Character { ... on }', + new Position(0, 35))). + + to.deep.equal([ + { label: 'Character' }, + { label: 'Droid' }, + { label: 'Human' }]); + + }); + + it('provides correct typeCondition suggestions on fragment', () => { + const result = testSuggestions('fragment Foo on {}', new Position(0, 16)); + expect(result.filter(({ label }) => !label.startsWith('__'))).to.deep.equal( + [ + { label: 'Character' }, + { label: 'Droid' }, + { label: 'Human' }, + { label: 'Query' }, + { label: 'TestType' }]); + + + }); + + it('provides correct ENUM suggestions', () => { + const result = testSuggestions('{ hero(episode: ', new Position(0, 16)); + expect(result).to.deep.equal([ + { label: 'EMPIRE', detail: 'Episode' }, + { label: 'JEDI', detail: 'Episode' }, + { label: 'NEWHOPE', detail: 'Episode' }]); + + }); + + it('provides fragment name suggestion', () => { + const fragmentDef = 'fragment Foo on Human { id }'; + + // Test on concrete types + expect( + testSuggestions( + `${fragmentDef} query { human(id: "1") { ...`, + new Position(0, 57))). + + to.deep.equal([{ label: 'Foo', detail: 'Human' }]); + expect( + testSuggestions( + `query { human(id: "1") { ... }} ${fragmentDef}`, + new Position(0, 28))). + + to.deep.equal([{ label: 'Foo', detail: 'Human' }]); + + // Test on abstract type + expect( + testSuggestions( + `${fragmentDef} query { hero(episode: JEDI) { ...`, + new Position(0, 62))). + + to.deep.equal([{ label: 'Foo', detail: 'Human' }]); + }); + + it('provides correct directive suggestions', () => { + expect(testSuggestions('{ test @', new Position(0, 8))).to.deep.equal([ + { label: 'include' }, + { label: 'skip' }, + { label: 'test' }]); + + expect( + testSuggestions('{ aliasTest: test @ }', new Position(0, 19))). + to.deep.equal([ + { label: 'include' }, + { label: 'skip' }, + { label: 'test' }]); + + expect(testSuggestions('query @', new Position(0, 7))).to.deep.equal([]); + }); + + it('provides correct testInput suggestions', () => { + expect( + testSuggestions('{ inputTypeTest(args: {', new Position(0, 23))). + to.deep.equal([ + { label: 'key', detail: 'String!' }, + { label: 'value', detail: 'Int' }]); + + }); + + it('provides correct field name suggestion inside inline fragment', () => { + expect( + testSuggestions( + 'fragment Foo on Character { ... on Human { }}', + new Position(0, 42))). + + to.deep.equal([ + { label: '__typename', detail: 'String!' }, + { label: 'appearsIn', detail: '[Episode]' }, + { label: 'friends', detail: '[Character]' }, + { label: 'id', detail: 'String!' }, + { label: 'name', detail: 'String' }, + { label: 'secretBackstory', detail: 'String' }]); + + + // Typeless inline fragment assumes the type automatically + expect( + testSuggestions('fragment Foo on Droid { ... { ', new Position(0, 30))). + to.deep.equal([ + { label: '__typename', detail: 'String!' }, + { label: 'appearsIn', detail: '[Episode]' }, + { label: 'friends', detail: '[Character]' }, + { label: 'id', detail: 'String!' }, + { label: 'name', detail: 'String' }, + { label: 'primaryFunction', detail: 'String' }, + { label: 'secretBackstory', detail: 'String' }]); + + }); + + it('provides correct directive suggestions on definitions', () => + expect(testSuggestions('type Type @', new Position(0, 11))).to.deep.equal([ + { label: 'onAllDefs' }])); + + + it('provides correct directive suggestions on args definitions', () => + expect( + testSuggestions('type Type { field(arg: String @', new Position(0, 31))). + to.deep.equal([{ label: 'onAllDefs' }, { label: 'onArg' }])); +}); diff --git a/packages/graphql-language-service-interface/src/__tests__/getDefinition-test.js b/packages/graphql-language-service-interface/src/__tests__/getDefinition-test.ts similarity index 70% rename from packages/graphql-language-service-interface/src/__tests__/getDefinition-test.js rename to packages/graphql-language-service-interface/src/__tests__/getDefinition-test.ts index 5ab1bf182be..8a97bedda7c 100644 --- a/packages/graphql-language-service-interface/src/__tests__/getDefinition-test.js +++ b/packages/graphql-language-service-interface/src/__tests__/getDefinition-test.ts @@ -5,14 +5,10 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ import { parse } from 'graphql'; -import { - getDefinitionQueryResultForFragmentSpread, - getDefinitionQueryResultForNamedType, -} from '../getDefinition'; +import { getDefinitionQueryResultForFragmentSpread, getDefinitionQueryResultForNamedType } from '../getDefinition'; describe('getDefinition', () => { describe('getDefinitionQueryResultForNamedType', () => { @@ -33,6 +29,7 @@ describe('getDefinition', () => { { ...namedTypeDefinition, }, + [ { file: 'someFile', @@ -43,6 +40,10 @@ describe('getDefinition', () => { }, ], ); +<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getDefinition-test.js +======= + +>>>>>>> chore: Convert LSP tests to jest from mocha (#871):packages/graphql-language-service-interface/src/__tests__/getDefinition-test.ts expect(result.definitions.length).toEqual(1); expect(result.definitions[0].position.line).toEqual(1); expect(result.definitions[0].position.character).toEqual(32); @@ -58,9 +59,9 @@ describe('getDefinition', () => { fragment Duck on Duck { cuack }`; - const fragmentSpread = parse(query).definitions[0].selectionSet - .selections[0]; + const fragmentSpread = parse(query).definitions[0].selectionSet.selections[0]; const fragmentDefinition = parse(fragment).definitions[0]; +<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getDefinition-test.js const result = await getDefinitionQueryResultForFragmentSpread( query, fragmentSpread, @@ -72,6 +73,16 @@ describe('getDefinition', () => { }, ], ); +======= + const result = await getDefinitionQueryResultForFragmentSpread(query, fragmentSpread, [ + { + file: 'someFile', + content: fragment, + definition: fragmentDefinition, + }, + ]); + +>>>>>>> chore: Convert LSP tests to jest from mocha (#871):packages/graphql-language-service-interface/src/__tests__/getDefinition-test.ts expect(result.definitions.length).toEqual(1); expect(result.definitions[0].position.line).toEqual(1); expect(result.definitions[0].position.character).toEqual(6); diff --git a/packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.js b/packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts similarity index 63% rename from packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.js rename to packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts index b40bb2488a3..cbba0ede361 100644 --- a/packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.js +++ b/packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts @@ -18,29 +18,43 @@ describe('getDiagnostics', () => { let schema; beforeEach(async () => { const schemaIDL = fs.readFileSync( - path.join(__dirname, '__schema__/StarWarsSchema.graphql'), - 'utf8', - ); + path.join(__dirname, '__schema__/StarWarsSchema.graphql'), + 'utf8'); + schema = buildSchema(schemaIDL); }); it('catches field validation errors', () => { const error = validateQuery(parse('query queryName { title }'), schema)[0]; expect(error.message).toEqual( +<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.js 'Cannot query field "title" on type "Query".', ); +======= + 'Cannot query field "title" on type "Query".'); + +>>>>>>> chore: Convert LSP tests to jest from mocha (#871):packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts expect(error.severity).toEqual(SEVERITY.ERROR); expect(error.source).toEqual('GraphQL: Validation'); }); it('catches field deprecation errors', () => { const error = getDiagnostics( +<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.js '{ deprecatedField { testField } }', schema, )[0]; expect(error.message).toEqual( 'The field Query.deprecatedField is deprecated. Use test instead.', ); +======= + '{ deprecatedField { testField } }', + schema)[ + 0]; + expect(error.message).toEqual( + 'The field Query.deprecatedField is deprecated. Use test instead.'); + +>>>>>>> chore: Convert LSP tests to jest from mocha (#871):packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts expect(error.severity).toEqual(SEVERITY.WARNING); expect(error.source).toEqual('GraphQL: Deprecation'); }); @@ -52,22 +66,33 @@ describe('getDiagnostics', () => { it('returns no errors for valid query with aliases', () => { const errors = getDiagnostics( +<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.js 'query { superHero: hero { superName: name } superHero2: hero { superName2: name } }', schema, ); +======= + 'query { superHero: hero { superName: name } superHero2: hero { superName2: name } }', + schema); + +>>>>>>> chore: Convert LSP tests to jest from mocha (#871):packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts expect(errors.length).toEqual(0); }); it('catches a syntax error in the SDL', () => { const errors = getDiagnostics( - ` + ` type Human implements Character { field_without_type_is_a_syntax_error id: String! } `, +<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.js schema, ); +======= + schema); + +>>>>>>> chore: Convert LSP tests to jest from mocha (#871):packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts expect(errors.length).toEqual(1); const error = errors[0]; expect(error.message).toEqual('Syntax Error: Expected :, found Name "id"'); @@ -79,9 +104,9 @@ describe('getDiagnostics', () => { // and then run diagnostics with the schema it('returns no errors after parsing kitchen-sink query', () => { const kitchenSink = fs.readFileSync( - path.join(__dirname, '/kitchen-sink.graphql'), - 'utf8', - ); + path.join(__dirname, '/kitchen-sink.graphql'), + 'utf8'); + const errors = getDiagnostics(kitchenSink); expect(errors).toHaveLength(0); diff --git a/packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js b/packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js deleted file mode 100644 index 33ffffa6b9e..00000000000 --- a/packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js +++ /dev/null @@ -1,117 +0,0 @@ -/** - * Copyright (c) 2019 GraphQL Contributors - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - * - * @flow - */ - -import type { Hover } from 'vscode-languageserver-types'; - -import fs from 'fs'; -import { buildSchema } from 'graphql'; -import { Position } from 'graphql-language-service-utils'; -import path from 'path'; - -import { getHoverInformation } from '../getHoverInformation'; - -describe('getHoverInformation', () => { - let schema; - beforeEach(async () => { - const schemaIDL = fs.readFileSync( - path.join(__dirname, '__schema__/HoverTestSchema.graphql'), - 'utf8', - ); - schema = buildSchema(schemaIDL); - }); - - function testHover(query: string, point: Position): Hover.contents { - return getHoverInformation(schema, query, point); - } - - it('provides leaf field information', () => { - const actual = testHover( - 'query { thing { testField } }', - new Position(0, 20), - ); - expect(actual).toEqual( - 'TestType.testField: String\n\n This is field documentation for TestType.testField', - ); - }); - - it('provides aliased field information', () => { - const actual = testHover( - 'query { thing { other: testField } }', - new Position(0, 25), - ); - expect(actual).toEqual( - 'TestType.testField: String\n\n This is field documentation for TestType.testField', - ); - }); - - it('provides intermediate field information', () => { - const actual = testHover( - 'query { thing { testField } }', - new Position(0, 10), - ); - expect(actual).toEqual( - 'Query.thing: TestType\n\n This is field documentation for Query.thing', - ); - }); - - it('provides list field information', () => { - const actual = testHover( - 'query { listOfThing { testField } }', - new Position(0, 10), - ); - expect(actual).toEqual('Query.listOfThing: [TestType!]'); - }); - - it('provides deprecated field information', () => { - const actual = testHover( - 'query { thing { testDeprecatedField } }', - new Position(0, 20), - ); - expect(actual).toEqual( - 'TestType.testDeprecatedField: Float\n\nDeprecated: deprecation reason', - ); - }); - - it('provides enum field information', () => { - const actual = testHover( - 'query { thing { testEnumField } }', - new Position(0, 20), - ); - expect(actual).toEqual('TestType.testEnumField: Color'); - }); - - it('provides scalar field information', () => { - const actual = testHover('query { cluck }', new Position(0, 10)); - expect(actual).toEqual('Query.cluck: Chicken'); - }); - - it('provides parameter type information', () => { - const actual = testHover( - 'query { parameterizedField(id: "foo") { testField } }', - new Position(0, 28), - ); - expect(actual).toEqual('Query.parameterizedField(id: String!)'); - }); - - it('provides directive information', () => { - const actual = testHover( - 'query { thing { testField @skip(if:true) } }', - new Position(0, 30), - ); - expect(actual).toEqual( - '@skip\n\nDirects the executor to skip this field or fragment when the `if` argument is true.', - ); - }); - - it('provides union information', () => { - const actual = testHover('query { unionField }', new Position(0, 12)); - expect(actual).toEqual('Query.unionField: UnionType'); - }); -}); diff --git a/packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts b/packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts new file mode 100644 index 00000000000..d1fee08ba90 --- /dev/null +++ b/packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts @@ -0,0 +1,183 @@ +/** + * Copyright (c) 2019 GraphQL Contributors + * All rights reserved. + * + * This source code is licensed under the license found in the + * LICENSE file in the root directory of this source tree. + * + * @flow + */ + +import { Hover } from 'vscode-languageserver-types'; + +import fs from 'fs'; +import { buildSchema } from 'graphql'; +import { Position } from 'graphql-language-service-utils'; +import path from 'path'; + +import { getHoverInformation } from '../getHoverInformation'; + +describe('getHoverInformation', () => { + let schema; + beforeEach(async () => { + const schemaIDL = fs.readFileSync( + path.join(__dirname, '__schema__/HoverTestSchema.graphql'), + 'utf8'); + + schema = buildSchema(schemaIDL); + }); + + function testHover(query: string, point: Position): Hover.contents { + return getHoverInformation(schema, query, point); + } + + it('provides leaf field information', () => { + const actual = testHover( +<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js + 'query { thing { testField } }', + new Position(0, 20), + ); + expect(actual).toEqual( + 'TestType.testField: String\n\n This is field documentation for TestType.testField', + ); +======= + 'query { thing { testField } }', + new Position(0, 20)); + + expect(actual).to.deep.equal( + 'TestType.testField: String\n\n This is field documentation for TestType.testField'); + +>>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts + }); + + it('provides aliased field information', () => { + const actual = testHover( +<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js + 'query { thing { other: testField } }', + new Position(0, 25), + ); + expect(actual).toEqual( + 'TestType.testField: String\n\n This is field documentation for TestType.testField', + ); +======= + 'query { thing { other: testField } }', + new Position(0, 25)); + + expect(actual).to.deep.equal( + 'TestType.testField: String\n\n This is field documentation for TestType.testField'); + +>>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts + }); + + it('provides intermediate field information', () => { + const actual = testHover( +<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js + 'query { thing { testField } }', + new Position(0, 10), + ); + expect(actual).toEqual( + 'Query.thing: TestType\n\n This is field documentation for Query.thing', + ); +======= + 'query { thing { testField } }', + new Position(0, 10)); + + expect(actual).to.deep.equal( + 'Query.thing: TestType\n\n This is field documentation for Query.thing'); + +>>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts + }); + + it('provides list field information', () => { + const actual = testHover( +<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js + 'query { listOfThing { testField } }', + new Position(0, 10), + ); + expect(actual).toEqual('Query.listOfThing: [TestType!]'); +======= + 'query { listOfThing { testField } }', + new Position(0, 10)); + + expect(actual).to.deep.equal('Query.listOfThing: [TestType!]'); +>>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts + }); + + it('provides deprecated field information', () => { + const actual = testHover( +<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js + 'query { thing { testDeprecatedField } }', + new Position(0, 20), + ); + expect(actual).toEqual( + 'TestType.testDeprecatedField: Float\n\nDeprecated: deprecation reason', + ); +======= + 'query { thing { testDeprecatedField } }', + new Position(0, 20)); + + expect(actual).to.deep.equal( + 'TestType.testDeprecatedField: Float\n\nDeprecated: deprecation reason'); + +>>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts + }); + + it('provides enum field information', () => { + const actual = testHover( +<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js + 'query { thing { testEnumField } }', + new Position(0, 20), + ); + expect(actual).toEqual('TestType.testEnumField: Color'); +======= + 'query { thing { testEnumField } }', + new Position(0, 20)); + + expect(actual).to.deep.equal('TestType.testEnumField: Color'); +>>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts + }); + + it('provides scalar field information', () => { + const actual = testHover('query { cluck }', new Position(0, 10)); + expect(actual).toEqual('Query.cluck: Chicken'); + }); + + it('provides parameter type information', () => { + const actual = testHover( +<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js + 'query { parameterizedField(id: "foo") { testField } }', + new Position(0, 28), + ); + expect(actual).toEqual('Query.parameterizedField(id: String!)'); +======= + 'query { parameterizedField(id: "foo") { testField } }', + new Position(0, 28)); + + expect(actual).to.deep.equal('Query.parameterizedField(id: String!)'); +>>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts + }); + + it('provides directive information', () => { + const actual = testHover( +<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js + 'query { thing { testField @skip(if:true) } }', + new Position(0, 30), + ); + expect(actual).toEqual( + '@skip\n\nDirects the executor to skip this field or fragment when the `if` argument is true.', + ); +======= + 'query { thing { testField @skip(if:true) } }', + new Position(0, 30)); + + expect(actual).to.deep.equal( + '@skip\n\nDirects the executor to skip this field or fragment when the `if` argument is true.'); + +>>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts + }); + + it('provides union information', () => { + const actual = testHover('query { unionField }', new Position(0, 12)); + expect(actual).toEqual('Query.unionField: UnionType'); + }); +}); diff --git a/packages/graphql-language-service-interface/src/__tests__/getOutline-test.js b/packages/graphql-language-service-interface/src/__tests__/getOutline-test.ts similarity index 97% rename from packages/graphql-language-service-interface/src/__tests__/getOutline-test.js rename to packages/graphql-language-service-interface/src/__tests__/getOutline-test.ts index aeab2607463..331c6b7c8e2 100644 --- a/packages/graphql-language-service-interface/src/__tests__/getOutline-test.js +++ b/packages/graphql-language-service-interface/src/__tests__/getOutline-test.ts @@ -5,7 +5,6 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ import { getOutline } from '../getOutline'; @@ -46,7 +45,7 @@ describe('getOutline()', () => { expect(tree[0].children[0].tokenizedText.length).toEqual(1); expect(tree[0].children[0].tokenizedText[0]).toEqual({ kind: 'plain', - value: 'name', - }); + value: 'name' }); + }); }); diff --git a/packages/graphql-language-service-interface/src/autocompleteUtils.js b/packages/graphql-language-service-interface/src/autocompleteUtils.ts similarity index 86% rename from packages/graphql-language-service-interface/src/autocompleteUtils.js rename to packages/graphql-language-service-interface/src/autocompleteUtils.ts index 10d3a17fb45..92450ca3935 100644 --- a/packages/graphql-language-service-interface/src/autocompleteUtils.js +++ b/packages/graphql-language-service-interface/src/autocompleteUtils.ts @@ -5,29 +5,32 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ -import type { GraphQLField, GraphQLSchema, GraphQLType } from 'graphql'; +import { GraphQLField, GraphQLSchema, GraphQLType } from 'graphql'; import { isCompositeType } from 'graphql'; import { SchemaMetaFieldDef, TypeMetaFieldDef, TypeNameMetaFieldDef, } from 'graphql/type/introspection'; -import type { +import { CompletionItem, ContextToken, State, - TypeInfo, + AllTypeInfo, } from 'graphql-language-service-types'; // Utility for returning the state representing the Definition this token state // is within, if any. -export function getDefinitionState(tokenState: State): ?State { +export function getDefinitionState( + tokenState: State, +): State | null | undefined { let definitionState; - forEachState(tokenState, state => { + // TODO - couldn't figure this one out + // @ts-ignore + forEachState(tokenState, (state: State): AllTypeInfo | null | undefined => { switch (state.kind) { case 'Query': case 'ShortQuery': @@ -47,7 +50,7 @@ export function getFieldDef( schema: GraphQLSchema, type: GraphQLType, fieldName: string, -): ?GraphQLField<*, *> { +): GraphQLField | null | undefined { if (fieldName === SchemaMetaFieldDef.name && schema.getQueryType() === type) { return SchemaMetaFieldDef; } @@ -57,9 +60,8 @@ export function getFieldDef( if (fieldName === TypeNameMetaFieldDef.name && isCompositeType(type)) { return TypeNameMetaFieldDef; } - if (type.getFields && typeof type.getFields === 'function') { - // $FlowFixMe - return (type.getFields()[fieldName]: any); + if ('getFields' in type) { + return type.getFields()[fieldName] as any; } return null; @@ -68,10 +70,10 @@ export function getFieldDef( // Utility for iterating through a CodeMirror parse state stack bottom-up. export function forEachState( stack: State, - fn: (state: State) => ?TypeInfo, + fn: (state: State) => AllTypeInfo | null | undefined, ): void { const reverseStateStack = []; - let state = stack; + let state: State | null | undefined = stack; while (state && state.kind) { reverseStateStack.push(state); state = state.prevState; @@ -81,7 +83,7 @@ export function forEachState( } } -export function objectValues(object: Object): Array { +export function objectValues(object: Record): Array { const keys = Object.keys(object); const len = keys.length; const values = new Array(len); @@ -106,7 +108,7 @@ function filterAndSortList( text: string, ): Array { if (!text) { - return filterNonEmpty(list, entry => !entry.isDeprecated); + return filterNonEmpty(list, entry => !entry.isDeprecated); } const byProximity = list.map(entry => ({ @@ -131,10 +133,10 @@ function filterAndSortList( // Filters the array by the predicate, unless it results in an empty array, // in which case return the original array. -function filterNonEmpty( - array: Array, - predicate: (entry: Object) => boolean, -): Array { +function filterNonEmpty( + array: Array, + predicate: (entry: T) => boolean, +): Array { const filtered = array.filter(predicate); return filtered.length === 0 ? array : filtered; } diff --git a/packages/graphql-language-service-interface/src/getAutocompleteSuggestions.js b/packages/graphql-language-service-interface/src/getAutocompleteSuggestions.ts similarity index 95% rename from packages/graphql-language-service-interface/src/getAutocompleteSuggestions.js rename to packages/graphql-language-service-interface/src/getAutocompleteSuggestions.ts index b05f539a5f7..10918f10bea 100644 --- a/packages/graphql-language-service-interface/src/getAutocompleteSuggestions.js +++ b/packages/graphql-language-service-interface/src/getAutocompleteSuggestions.ts @@ -1,3 +1,4 @@ +// @ts-nocheck /** * Copyright (c) 2019 GraphQL Contributors * All rights reserved. @@ -5,21 +6,23 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ -import type { +import { FragmentDefinitionNode, GraphQLDirective, GraphQLSchema, + GraphQLType, + GraphQLObjectType, + ArgumentNode, } from 'graphql'; -import type { +import { CompletionItem, ContextToken, State, - TypeInfo, + AllTypeInfo } from 'graphql-language-service-types'; -import type { Position } from 'graphql-language-service-utils'; +import { Position } from 'graphql-language-service-utils'; import { GraphQLBoolean, @@ -164,16 +167,13 @@ export function getAutocompleteSuggestions( // Helper functions to get suggestions for each kinds function getSuggestionsForFieldNames( token: ContextToken, - typeInfo: TypeInfo, + typeInfo: AllTypeInfo, schema: GraphQLSchema, ): Array { if (typeInfo.parentType) { const parentType = typeInfo.parentType; const fields = - parentType.getFields instanceof Function - // $FlowFixMe - ? objectValues(parentType.getFields()) - : []; + 'getFields' in parentType ? objectValues(parentType.getFields()) : []; if (isCompositeType(parentType)) { fields.push(TypeNameMetaFieldDef); } @@ -198,7 +198,7 @@ function getSuggestionsForFieldNames( function getSuggestionsForInputValues( token: ContextToken, - typeInfo: TypeInfo, + typeInfo: AllTypeInfo, ): Array { const namedInputType = getNamedType(typeInfo.inputType); if (namedInputType instanceof GraphQLEnumType) { @@ -220,6 +220,7 @@ function getSuggestionsForInputValues( detail: String(GraphQLBoolean), documentation: 'Not false.', }, + { label: 'false', detail: String(GraphQLBoolean), @@ -233,7 +234,7 @@ function getSuggestionsForInputValues( function getSuggestionsForFragmentTypeConditions( token: ContextToken, - typeInfo: TypeInfo, + typeInfo: AllTypeInfo, schema: GraphQLSchema, ): Array { let possibleTypes; @@ -273,7 +274,7 @@ function getSuggestionsForFragmentTypeConditions( function getSuggestionsForFragmentSpread( token: ContextToken, - typeInfo: TypeInfo, + typeInfo: AllTypeInfo, schema: GraphQLSchema, queryText: string, ): Array { @@ -307,9 +308,7 @@ function getSuggestionsForFragmentSpread( relevantFrags.map(frag => ({ label: frag.name.value, detail: String(typeMap[frag.typeCondition.name.value]), - documentation: `fragment ${frag.name.value} on ${ - frag.typeCondition.name.value - }`, + documentation: `fragment ${frag.name.value} on ${frag.typeCondition.name.value}`, })), ); } @@ -317,7 +316,7 @@ function getSuggestionsForFragmentSpread( function getFragmentDefinitions( queryText: string, ): Array { - const fragmentDefs = []; + const fragmentDefs: FragmentDefinitionNode[] = []; runOnlineParser(queryText, (_, state) => { if (state.kind === 'FragmentDefinition' && state.name && state.type) { fragmentDefs.push({ @@ -326,10 +325,12 @@ function getFragmentDefinitions( kind: 'Name', value: state.name, }, + selectionSet: { kind: 'SelectionSet', selections: [], }, + typeCondition: { kind: 'NamedType', name: { @@ -420,7 +421,7 @@ type callbackFnType = ( state: State, style: string, index: number, -) => void | 'BREAK'; +) => undefined | 'BREAK'; function runOnlineParser( queryText: string, @@ -462,7 +463,7 @@ function runOnlineParser( } function canUseDirective( - state: $PropertyType, + state: State['prevState'], directive: GraphQLDirective, ): boolean { if (!state || !state.kind) { @@ -515,24 +516,25 @@ function canUseDirective( return locations.indexOf('INPUT_FIELD_DEFINITION') !== -1; } } + return false; } - +type Maybe = T | null | undefined; // Utility for collecting rich type information given any token's state // from the graphql-mode parser. export function getTypeInfo( schema: GraphQLSchema, tokenState: State, -): TypeInfo { - let argDef; - let argDefs; +): AllTypeInfo { + let argDef: ArgumentNode; + let argDefs: ArgumentNode[]; let directiveDef; let enumValue; let fieldDef; - let inputType; + let inputType: GraphQLType | null; let objectFieldDefs; - let parentType; - let type; + let parentType: GraphQLType; + let type: Maybe>; forEachState(tokenState, state => { switch (state.kind) { diff --git a/packages/graphql-language-service-interface/src/getDefinition.js b/packages/graphql-language-service-interface/src/getDefinition.ts similarity index 94% rename from packages/graphql-language-service-interface/src/getDefinition.js rename to packages/graphql-language-service-interface/src/getDefinition.ts index 8d28c93cd0b..07707937750 100644 --- a/packages/graphql-language-service-interface/src/getDefinition.js +++ b/packages/graphql-language-service-interface/src/getDefinition.ts @@ -5,18 +5,18 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ -import type { +import { ASTNode, FragmentSpreadNode, FragmentDefinitionNode, OperationDefinitionNode, NamedTypeNode, TypeDefinitionNode, + Location, } from 'graphql'; -import type { +import { Definition, DefinitionQueryResult, FragmentInfo, @@ -25,19 +25,20 @@ import type { Uri, ObjectTypeInfo, } from 'graphql-language-service-types'; + import { locToRange, offsetToPosition } from 'graphql-language-service-utils'; import invariant from 'assert'; export const LANGUAGE = 'GraphQL'; function getRange(text: string, node: ASTNode): Range { - const location = node.loc; + const location = node.loc as Location; invariant(location, 'Expected ASTNode to have a location.'); return locToRange(text, location); } function getPosition(text: string, node: ASTNode): Position { - const location = node.loc; + const location = node.loc as Location; invariant(location, 'Expected ASTNode to have a location.'); return offsetToPosition(text, location.start); } @@ -51,6 +52,7 @@ export async function getDefinitionQueryResultForNamedType( const defNodes = dependencies.filter( ({ definition }) => definition.name && definition.name.value === name, ); + if (defNodes.length === 0) { process.stderr.write(`Definition not found for GraphQL type ${name}`); return { queryRange: [], definitions: [] }; @@ -59,6 +61,7 @@ export async function getDefinitionQueryResultForNamedType( ({ filePath, content, definition }) => getDefinitionForNodeDefinition(filePath || '', content, definition), ); + return { definitions, queryRange: definitions.map(_ => getRange(text, node)), @@ -74,6 +77,7 @@ export async function getDefinitionQueryResultForFragmentSpread( const defNodes = dependencies.filter( ({ definition }) => definition.name.value === name, ); + if (defNodes.length === 0) { process.stderr.write(`Definition not found for GraphQL fragment ${name}`); return { queryRange: [], definitions: [] }; @@ -82,6 +86,7 @@ export async function getDefinitionQueryResultForFragmentSpread( ({ filePath, content, definition }) => getDefinitionForFragmentDefinition(filePath || '', content, definition), ); + return { definitions, queryRange: definitions.map(_ => getRange(text, fragment)), @@ -110,6 +115,9 @@ function getDefinitionForFragmentDefinition( path, position: getPosition(text, definition), range: getRange(text, definition), + // @ts-ignore + // TODO: doesnt seem to pick up the inference + // from invariant() exception logic name: name.value || '', language: LANGUAGE, // This is a file inside the project root, good enough for now diff --git a/packages/graphql-language-service-interface/src/getDiagnostics.js b/packages/graphql-language-service-interface/src/getDiagnostics.ts similarity index 91% rename from packages/graphql-language-service-interface/src/getDiagnostics.js rename to packages/graphql-language-service-interface/src/getDiagnostics.ts index 29c57000e6d..3da6acfbb03 100644 --- a/packages/graphql-language-service-interface/src/getDiagnostics.js +++ b/packages/graphql-language-service-interface/src/getDiagnostics.ts @@ -5,10 +5,9 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ -import type { +import { ASTNode, DocumentNode, GraphQLError, @@ -16,14 +15,17 @@ import type { Location, SourceLocation, } from 'graphql'; -import type { + +import { Diagnostic, CustomValidationRule, } from 'graphql-language-service-types'; import invariant from 'assert'; import { findDeprecatedUsages, parse } from 'graphql'; + import { CharacterStream, onlineParser } from 'graphql-language-service-parser'; + import { Position, Range, @@ -39,7 +41,7 @@ export const SEVERITY = { export function getDiagnostics( query: string, - schema: ?GraphQLSchema = null, + schema: GraphQLSchema | null | undefined = null, customRules?: Array, isRelayCompatMode?: boolean, ): Array { @@ -63,7 +65,7 @@ export function getDiagnostics( export function validateQuery( ast: DocumentNode, - schema: ?GraphQLSchema = null, + schema: GraphQLSchema | null | undefined = null, customRules?: Array, isRelayCompatMode?: boolean, ): Array { @@ -76,6 +78,7 @@ export function validateQuery( validateWithCustomRules(schema, ast, customRules, isRelayCompatMode), error => annotations(error, SEVERITY.ERROR, 'Validation'), ); + // Note: findDeprecatedUsages was added in graphql@0.9.0, but we want to // support older versions of graphql-js. const deprecationWarningAnnotations = !findDeprecatedUsages @@ -83,6 +86,7 @@ export function validateQuery( : mapCat(findDeprecatedUsages(schema, ast), error => annotations(error, SEVERITY.WARNING, 'Deprecation'), ); + return validationErrorAnnotations.concat(deprecationWarningAnnotations); } @@ -104,13 +108,15 @@ function annotations( } return error.nodes.map(node => { const highlightNode = - node.kind !== 'Variable' && node.name + node.kind !== 'Variable' && 'name' in node ? node.name - : node.variable + : 'variable' in node ? node.variable : node; invariant(error.locations, 'GraphQL validation error requires locations.'); + // @ts-ignore + // https://github.com/microsoft/TypeScript/pull/32695 const loc = error.locations[0]; const highlightLoc = getLocation(highlightNode); const end = loc.column + (highlightLoc.end - highlightLoc.start); @@ -126,7 +132,7 @@ function annotations( }); } -export function getRange(location: SourceLocation, queryText: string) { +export function getRange(location: SourceLocation, queryText: string): Range { const parser = onlineParser(); const state = parser.startState(); const lines = queryText.split('\n'); @@ -165,8 +171,10 @@ export function getRange(location: SourceLocation, queryText: string) { * call `parse` without options above. */ function getLocation(node: any): Location { - const typeCastedNode = (node: ASTNode); + const typeCastedNode = node as ASTNode; const location = typeCastedNode.loc; invariant(location, 'Expected ASTNode to have a location.'); + // @ts-ignore + // https://github.com/microsoft/TypeScript/pull/32695 return location; } diff --git a/packages/graphql-language-service-interface/src/getHoverInformation.js b/packages/graphql-language-service-interface/src/getHoverInformation.ts similarity index 65% rename from packages/graphql-language-service-interface/src/getHoverInformation.js rename to packages/graphql-language-service-interface/src/getHoverInformation.ts index 3a84c06eef2..c7d311782ab 100644 --- a/packages/graphql-language-service-interface/src/getHoverInformation.js +++ b/packages/graphql-language-service-interface/src/getHoverInformation.ts @@ -5,7 +5,6 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ /** @@ -13,19 +12,29 @@ * https://github.com/graphql/codemirror-graphql/blob/master/src/info.js */ -import type { GraphQLSchema } from 'graphql'; -import type { ContextToken } from 'graphql-language-service-types'; -import type { Hover } from 'vscode-languageserver-types'; -import type { Position } from 'graphql-language-service-utils'; +import { + GraphQLSchema, + GraphQLNonNull, + GraphQLList, + GraphQLType, + GraphQLField, + GraphQLFieldConfig, +} from 'graphql'; +import { + ContextToken, + AllTypeInfo, +} from 'graphql-language-service-types'; + +import { Hover } from 'vscode-languageserver-types'; +import { Position } from 'graphql-language-service-utils'; import { getTokenAtPosition, getTypeInfo } from './getAutocompleteSuggestions'; -import { GraphQLNonNull, GraphQLList } from 'graphql'; export function getHoverInformation( schema: GraphQLSchema, queryText: string, cursor: Position, contextToken?: ContextToken, -): Hover.contents { +): Hover['contents'] | void | undefined { const token = contextToken || getTokenAtPosition(queryText, cursor); if (!schema || !token || !token.state) { @@ -45,59 +54,59 @@ export function getHoverInformation( (kind === 'Field' && step === 0 && typeInfo.fieldDef) || (kind === 'AliasedField' && step === 2 && typeInfo.fieldDef) ) { - const into = []; + const into: string[] = []; renderField(into, typeInfo, options); renderDescription(into, options, typeInfo.fieldDef); return into.join('').trim(); } else if (kind === 'Directive' && step === 1 && typeInfo.directiveDef) { - const into = []; + const into: string[] = []; renderDirective(into, typeInfo, options); renderDescription(into, options, typeInfo.directiveDef); return into.join('').trim(); } else if (kind === 'Argument' && step === 0 && typeInfo.argDef) { - const into = []; + const into: string[] = []; renderArg(into, typeInfo, options); renderDescription(into, options, typeInfo.argDef); return into.join('').trim(); } else if ( kind === 'EnumValue' && typeInfo.enumValue && - typeInfo.enumValue.description + 'description' in typeInfo.enumValue ) { - const into = []; + const into: string[] = []; renderEnumValue(into, typeInfo, options); renderDescription(into, options, typeInfo.enumValue); return into.join('').trim(); } else if ( kind === 'NamedType' && typeInfo.type && - typeInfo.type.description + 'description' in typeInfo.type ) { - const into = []; + const into: string[] = []; renderType(into, typeInfo, options, typeInfo.type); renderDescription(into, options, typeInfo.type); return into.join('').trim(); } } -function renderField(into, typeInfo, options) { +function renderField(into: string[], typeInfo: AllTypeInfo, options: any) { renderQualifiedField(into, typeInfo, options); - renderTypeAnnotation(into, typeInfo, options, typeInfo.type); + renderTypeAnnotation(into, typeInfo, options, typeInfo.type as GraphQLType); } -function renderQualifiedField(into, typeInfo, options) { +function renderQualifiedField(into: string[], typeInfo: AllTypeInfo, options) { if (!typeInfo.fieldDef) { return; } - const fieldName = (typeInfo.fieldDef.name: string); + const fieldName = typeInfo.fieldDef.name as string; if (fieldName.slice(0, 2) !== '__') { - renderType(into, typeInfo, options, typeInfo.parentType); + renderType(into, typeInfo, options, typeInfo.parentType as GraphQLType); text(into, '.'); } text(into, fieldName); } -function renderDirective(into, typeInfo, options) { +function renderDirective(into: string[], typeInfo: AllTypeInfo, options: any) { if (!typeInfo.directiveDef) { return; } @@ -105,7 +114,7 @@ function renderDirective(into, typeInfo, options) { text(into, name); } -function renderArg(into, typeInfo, options) { +function renderArg(into: string[], typeInfo: AllTypeInfo, options: any) { if (typeInfo.directiveDef) { renderDirective(into, typeInfo, options); } else if (typeInfo.fieldDef) { @@ -119,26 +128,41 @@ function renderArg(into, typeInfo, options) { const name = typeInfo.argDef.name; text(into, '('); text(into, name); - renderTypeAnnotation(into, typeInfo, options, typeInfo.inputType); + renderTypeAnnotation( + into, + typeInfo, + options, + typeInfo.inputType as GraphQLType, + ); text(into, ')'); } -function renderTypeAnnotation(into, typeInfo, options, t) { +function renderTypeAnnotation( + into: string[], + typeInfo: AllTypeInfo, + options: any, + t: GraphQLType, +) { text(into, ': '); renderType(into, typeInfo, options, t); } -function renderEnumValue(into, typeInfo, options) { +function renderEnumValue(into: string[], typeInfo: AllTypeInfo, options: any) { if (!typeInfo.enumValue) { return; } const name = typeInfo.enumValue.name; - renderType(into, typeInfo, options, typeInfo.inputType); + renderType(into, typeInfo, options, typeInfo.inputType as GraphQLType); text(into, '.'); text(into, name); } -function renderType(into, typeInfo, options, t) { +function renderType( + into: string[], + typeInfo: AllTypeInfo, + options: any, + t: GraphQLType, +) { if (!t) { return; } @@ -154,7 +178,12 @@ function renderType(into, typeInfo, options, t) { } } -function renderDescription(into, options, def) { +function renderDescription( + into: string[], + options: any, + // TODO: Figure out the right type for this one + def: any, +) { if (!def) { return; } @@ -167,12 +196,16 @@ function renderDescription(into, options, def) { renderDeprecation(into, options, def); } -function renderDeprecation(into, options, def) { +function renderDeprecation( + into: string[], + options: any, + def: GraphQLField | GraphQLFieldConfig, +) { if (!def) { return; } - const reason = - typeof def.deprecationReason === 'string' ? def.deprecationReason : null; + + const reason = def['deprecationReason'] ? def.deprecationReason : null; if (!reason) { return; } diff --git a/packages/graphql-language-service-interface/src/getOutline.js b/packages/graphql-language-service-interface/src/getOutline.ts similarity index 62% rename from packages/graphql-language-service-interface/src/getOutline.js rename to packages/graphql-language-service-interface/src/getOutline.ts index f2e149c4a08..fb7ea4028ef 100644 --- a/packages/graphql-language-service-interface/src/getOutline.js +++ b/packages/graphql-language-service-interface/src/getOutline.ts @@ -5,16 +5,11 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ -import type { - Outline, - TextToken, - TokenKind, -} from 'graphql-language-service-types'; +import { Outline, TextToken, TokenKind } from 'graphql-language-service-types'; -import { Kind, parse, visit } from 'graphql'; +import { Kind, parse, visit, DefinitionNode, FieldNode, InlineFragmentNode, DocumentNode, FragmentSpreadNode, OperationDefinitionNode, NameNode, FragmentDefinitionNode, SelectionSetNode } from 'graphql'; import { offsetToPosition } from 'graphql-language-service-utils'; const { INLINE_FRAGMENT } = Kind; @@ -32,7 +27,7 @@ const OUTLINEABLE_KINDS = { type OutlineTreeConverterType = { [name: string]: Function }; -export function getOutline(queryText: string): ?Outline { +export function getOutline(queryText: string): Outline | null | undefined { let ast; try { ast = parse(queryText); @@ -52,58 +47,66 @@ export function getOutline(queryText: string): ?Outline { return null; }, }); + return { outlineTrees }; } function outlineTreeConverter(docText: string): OutlineTreeConverterType { - const meta = node => ({ - representativeName: node.name, + const meta = (node: DefinitionNode) => ({ + representativeName: node.name as string, startPosition: offsetToPosition(docText, node.loc.start), endPosition: offsetToPosition(docText, node.loc.end), children: node.selectionSet || [], }); + return { - Field: node => { - const tokenizedText = node.alias - ? [buildToken('plain', node.alias), buildToken('plain', ': ')] + Field: (node: FieldNode) => { + const tokenizedText = 'alias' in node + ? [buildToken('plain', node.alias.value), buildToken('plain', ': ')] : []; - tokenizedText.push(buildToken('plain', node.name)); + tokenizedText.push(buildToken('plain', node.name.value)); return { tokenizedText, ...meta(node) }; }, - OperationDefinition: node => ({ + OperationDefinition: (node: OperationDefinitionNode) => ({ tokenizedText: [ buildToken('keyword', node.operation), buildToken('whitespace', ' '), - buildToken('class-name', node.name), + buildToken('class-name', node.name.value), ], + ...meta(node), }), - Document: node => node.definitions, - SelectionSet: node => + + Document: (node: DocumentNode) => node.definitions, + SelectionSet: (node: SelectionSetNode) => concatMap(node.selections, child => { return child.kind === INLINE_FRAGMENT ? child.selectionSet : child; }), - Name: node => node.value, - FragmentDefinition: node => ({ + Name: (node: NameNode) => node.value, + FragmentDefinition: (node: FragmentDefinitionNode) => ({ tokenizedText: [ buildToken('keyword', 'fragment'), buildToken('whitespace', ' '), - buildToken('class-name', node.name), + buildToken('class-name', node.name.value), ], + ...meta(node), }), - FragmentSpread: node => ({ + + FragmentSpread: (node: FragmentSpreadNode) => ({ tokenizedText: [ buildToken('plain', '...'), - buildToken('class-name', node.name), + buildToken('class-name', node.name.value), ], + ...meta(node), }), - InlineFragment: node => node.selectionSet, + + InlineFragment: (node: InlineFragmentNode) => node.selectionSet, }; } -function buildToken(kind: TokenKind, value: string): TextToken { +function buildToken(kind: TokenKind, value: string | undefined): TextToken { return { kind, value }; } diff --git a/packages/graphql-language-service-interface/src/index.js b/packages/graphql-language-service-interface/src/index.ts similarity index 98% rename from packages/graphql-language-service-interface/src/index.js rename to packages/graphql-language-service-interface/src/index.ts index d418450e728..9899e59401a 100644 --- a/packages/graphql-language-service-interface/src/index.js +++ b/packages/graphql-language-service-interface/src/index.ts @@ -5,7 +5,6 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ export { diff --git a/packages/graphql-language-service-interface/tsconfig.json b/packages/graphql-language-service-interface/tsconfig.json new file mode 100644 index 00000000000..dd01d525f5a --- /dev/null +++ b/packages/graphql-language-service-interface/tsconfig.json @@ -0,0 +1,7 @@ +{ + "extends": "../../tsconfig.base", + "compilerOptions": { + "rootDir": "./src", + "outDir": "./dist", + } +} diff --git a/packages/graphql-language-service-parser/package.json b/packages/graphql-language-service-parser/package.json index aa6712a2a0d..fdb60423f3b 100644 --- a/packages/graphql-language-service-parser/package.json +++ b/packages/graphql-language-service-parser/package.json @@ -20,6 +20,7 @@ "graphql" ], "main": "dist/index.js", + "types": "dist/index.d.ts", "scripts": { "build": "yarn run build-js && yarn run build-flow", "build-js": "node ../../resources/buildJs.js", diff --git a/packages/graphql-language-service-parser/src/CharacterStream.js b/packages/graphql-language-service-parser/src/CharacterStream.ts similarity index 95% rename from packages/graphql-language-service-parser/src/CharacterStream.js rename to packages/graphql-language-service-parser/src/CharacterStream.ts index 4590bf478e5..8a0a5d5e63b 100644 --- a/packages/graphql-language-service-parser/src/CharacterStream.js +++ b/packages/graphql-language-service-parser/src/CharacterStream.ts @@ -5,7 +5,6 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ /** @@ -19,7 +18,7 @@ * */ -import type { +import { TokenPattern, CharacterStream as CharacterStreamInterface, } from 'graphql-language-service-types'; @@ -29,7 +28,7 @@ export default class CharacterStream implements CharacterStreamInterface { _pos: number; _sourceText: string; - constructor(sourceText: string): void { + constructor(sourceText: string) { this._start = 0; this._pos = 0; this._sourceText = sourceText; @@ -69,7 +68,7 @@ export default class CharacterStream implements CharacterStreamInterface { return char; }; - eat = (pattern: TokenPattern): string | void => { + eat = (pattern: TokenPattern): string | undefined => { const isMatched = this._testNextCharacter(pattern); if (isMatched) { this._start = this._pos; @@ -110,8 +109,8 @@ export default class CharacterStream implements CharacterStreamInterface { match = ( pattern: TokenPattern, - consume: ?boolean = true, - caseFold: ?boolean = false, + consume: boolean | null | undefined = true, + caseFold: boolean | null | undefined = false, ): Array | boolean => { let token = null; let match = null; diff --git a/packages/graphql-language-service-parser/src/RuleHelpers.js b/packages/graphql-language-service-parser/src/RuleHelpers.ts similarity index 88% rename from packages/graphql-language-service-parser/src/RuleHelpers.js rename to packages/graphql-language-service-parser/src/RuleHelpers.ts index 9032a026751..28f5210d12e 100644 --- a/packages/graphql-language-service-parser/src/RuleHelpers.js +++ b/packages/graphql-language-service-parser/src/RuleHelpers.ts @@ -10,7 +10,7 @@ // These functions help build matching rules for ParseRules. -import type { Rule, Token } from 'graphql-language-service-types'; +import { Rule, Token } from 'graphql-language-service-types'; // An optional rule. export function opt(ofRule: Rule | string): Rule { @@ -32,8 +32,8 @@ export function butNot(rule: Rule, exclusions: Array) { } return ( check && - exclusions.every(exclusion => exclusion.match && !exclusion.match(token)) - ); + exclusions.every(exclusion => exclusion.match && !exclusion.match(token))); + }; return rule; } @@ -48,6 +48,6 @@ export function p(value: string, style?: string): Rule { return { style: style || 'punctuation', match: (token: Token) => - token.kind === 'Punctuation' && token.value === value, - }; + token.kind === 'Punctuation' && token.value === value }; + } diff --git a/packages/graphql-language-service-parser/src/Rules.js b/packages/graphql-language-service-parser/src/Rules.ts similarity index 99% rename from packages/graphql-language-service-parser/src/Rules.js rename to packages/graphql-language-service-parser/src/Rules.ts index 8794966dba7..f3088949b9f 100644 --- a/packages/graphql-language-service-parser/src/Rules.js +++ b/packages/graphql-language-service-parser/src/Rules.ts @@ -5,10 +5,9 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ -import type { +import { CharacterStream, State, Token, @@ -96,6 +95,7 @@ export const ParseRules: { [name: string]: ParseRule } = { list('Directive'), 'SelectionSet', ], + Mutation: [ word('mutation'), opt(name('def')), @@ -103,6 +103,7 @@ export const ParseRules: { [name: string]: ParseRule } = { list('Directive'), 'SelectionSet', ], + Subscription: [ word('subscription'), opt(name('def')), @@ -110,6 +111,7 @@ export const ParseRules: { [name: string]: ParseRule } = { list('Directive'), 'SelectionSet', ], + VariableDefinitions: [p('('), list('VariableDefinition'), p(')')], VariableDefinition: ['Variable', p(':'), 'Type', opt('DefaultValue')], Variable: [p('$', 'variable'), name('variable')], @@ -133,12 +135,14 @@ export const ParseRules: { [name: string]: ParseRule } = { list('Directive'), opt('SelectionSet'), ], + Field: [ name('property'), opt('Arguments'), list('Directive'), opt('SelectionSet'), ], + Arguments: [p('('), list('Argument'), p(')')], Argument: [name('attribute'), p(':'), 'Value'], FragmentSpread: [p('...'), name('def'), list('Directive')], @@ -148,6 +152,7 @@ export const ParseRules: { [name: string]: ParseRule } = { list('Directive'), 'SelectionSet', ], + FragmentDefinition: [ word('fragment'), opt(butNot(name('def'), [word('on')])), @@ -155,6 +160,7 @@ export const ParseRules: { [name: string]: ParseRule } = { list('Directive'), 'SelectionSet', ], + TypeCondition: [word('on'), 'NamedType'], // Variables could be parsed in cases where only Const is expected by spec. Value(token: Token) { @@ -172,6 +178,7 @@ export const ParseRules: { [name: string]: ParseRule } = { case '$': return 'Variable'; } + return null; case 'Name': switch (token.value) { @@ -179,6 +186,7 @@ export const ParseRules: { [name: string]: ParseRule } = { case 'false': return 'BooleanValue'; } + if (token.value === 'null') { return 'NullValue'; } @@ -209,6 +217,7 @@ export const ParseRules: { [name: string]: ParseRule } = { list('OperationTypeDef'), p('}'), ], + OperationTypeDef: [name('keyword'), p(':'), name('atom')], ScalarDef: [word('scalar'), name('atom'), list('Directive')], ObjectTypeDef: [ @@ -220,6 +229,7 @@ export const ParseRules: { [name: string]: ParseRule } = { list('FieldDef'), p('}'), ], + Implements: [word('implements'), list('NamedType')], FieldDef: [ name('property'), @@ -228,6 +238,7 @@ export const ParseRules: { [name: string]: ParseRule } = { 'Type', list('Directive'), ], + ArgumentsDef: [p('('), list('InputValueDef'), p(')')], InputValueDef: [ name('attribute'), @@ -236,6 +247,7 @@ export const ParseRules: { [name: string]: ParseRule } = { opt('DefaultValue'), list('Directive'), ], + InterfaceDef: [ word('interface'), name('atom'), @@ -244,6 +256,7 @@ export const ParseRules: { [name: string]: ParseRule } = { list('FieldDef'), p('}'), ], + UnionDef: [ word('union'), name('atom'), @@ -251,6 +264,7 @@ export const ParseRules: { [name: string]: ParseRule } = { p('='), list('UnionMember', p('|')), ], + UnionMember: ['NamedType'], EnumDef: [ word('enum'), @@ -260,6 +274,7 @@ export const ParseRules: { [name: string]: ParseRule } = { list('EnumValueDef'), p('}'), ], + EnumValueDef: [name('string-2'), list('Directive')], InputDef: [ word('input'), @@ -269,6 +284,7 @@ export const ParseRules: { [name: string]: ParseRule } = { list('InputValueDef'), p('}'), ], + ExtendDef: [word('extend'), 'ObjectTypeDef'], DirectiveDef: [ word('directive'), @@ -278,6 +294,7 @@ export const ParseRules: { [name: string]: ParseRule } = { word('on'), list('DirectiveLocation', p('|')), ], + DirectiveLocation: [name('string-2')], }; diff --git a/packages/graphql-language-service-parser/src/index.js b/packages/graphql-language-service-parser/src/index.ts similarity index 97% rename from packages/graphql-language-service-parser/src/index.js rename to packages/graphql-language-service-parser/src/index.ts index e37acc18e51..881a80f33d7 100644 --- a/packages/graphql-language-service-parser/src/index.js +++ b/packages/graphql-language-service-parser/src/index.ts @@ -5,7 +5,6 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ export { default as CharacterStream } from './CharacterStream'; diff --git a/packages/graphql-language-service-parser/src/onlineParser.js b/packages/graphql-language-service-parser/src/onlineParser.ts similarity index 85% rename from packages/graphql-language-service-parser/src/onlineParser.js rename to packages/graphql-language-service-parser/src/onlineParser.ts index 0cf8013c60a..d3ab5b8153d 100644 --- a/packages/graphql-language-service-parser/src/onlineParser.js +++ b/packages/graphql-language-service-parser/src/onlineParser.ts @@ -5,7 +5,6 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ /** @@ -28,23 +27,24 @@ * */ -import typeof { +import { LexRules as LexRulesType, ParseRules as ParseRulesType, } from './Rules'; -import type { +import { CharacterStream, State, Token, + Rule, } from 'graphql-language-service-types'; import { LexRules, ParseRules, isIgnored } from './Rules'; type ParserOptions = { - eatWhitespace: (stream: CharacterStream) => boolean, - lexRules: LexRulesType, - parseRules: ParseRulesType, - editorConfig: { [name: string]: any }, + eatWhitespace: (stream: CharacterStream) => boolean; + lexRules: typeof LexRulesType; + parseRules: typeof ParseRulesType; + editorConfig: { [name: string]: any }; }; export default function onlineParser( @@ -55,8 +55,8 @@ export default function onlineParser( editorConfig: {}, }, ): { - startState: () => State, - token: (stream: CharacterStream, state: State) => string, + startState: () => State; + token: (stream: CharacterStream, state: State) => string; } { return { startState() { @@ -70,6 +70,7 @@ export default function onlineParser( needsSeperator: false, prevState: null, }; + pushRule(options.parseRules, initialState, 'Document'); return initialState; }, @@ -131,13 +132,17 @@ function getToken( // Handle changes in expected indentation level if (token.kind === 'Punctuation') { if (/^[{([]/.test(token.value)) { - // Push on the stack of levels one level deeper than the current level. - state.levels = (state.levels || []).concat(state.indentLevel + 1); + if (state.indentLevel !== undefined) { + // Push on the stack of levels one level deeper than the current level. + state.levels = (state.levels || []).concat(state.indentLevel + 1); + } } else if (/^[})\]]/.test(token.value)) { // Pop from the stack of levels. // If the top of the stack is lower than the current level, lower the // current level to match. const levels = (state.levels = (state.levels || []).slice(0, -1)); + // FIXME + // what if state.indentLevel === 0? if (state.indentLevel) { if ( levels.length > 0 && @@ -207,6 +212,8 @@ function getToken( function assign(to: Object, from: Object): Object { const keys = Object.keys(from); for (let i = 0; i < keys.length; i++) { + // @ts-ignore + // TODO: ParseRules as numerical index to[keys[i]] = from[keys[i]]; } return to; @@ -219,7 +226,11 @@ const SpecialParseRules = { }; // Push a new rule onto the state. -function pushRule(rules: ParseRulesType, state: State, ruleKind: string): void { +function pushRule( + rules: typeof ParseRulesType, + state: State, + ruleKind: string, +): void { if (!rules[ruleKind]) { throw new TypeError('Unknown rule: ' + ruleKind); } @@ -233,7 +244,7 @@ function pushRule(rules: ParseRulesType, state: State, ruleKind: string): void { } // Pop the current rule from the state. -function popRule(state: State): void { +function popRule(state: State): undefined { // Check if there's anything to pop if (!state.prevState) { return; @@ -248,12 +259,15 @@ function popRule(state: State): void { } // Advance the step of the current rule. -function advanceRule(state: State, successful: boolean): void { +function advanceRule(state: State, successful: boolean): undefined { // If this is advancing successfully and the current state is a list, give // it an opportunity to repeat itself. - if (isList(state)) { - if (state.rule && state.rule[state.step].separator) { - const separator = state.rule[state.step].separator; + if (isList(state) && state.rule) { + // @ts-ignore + // TODO: ParseRules as numerical index + const step = state.rule[state.step]; + if (step.separator) { + const separator = step.separator; state.needsSeperator = !state.needsSeperator; // If the separator was optional, then give it an opportunity to repeat. if (!state.needsSeperator && separator.ofRule) { @@ -281,6 +295,8 @@ function advanceRule(state: State, successful: boolean): void { if (state.rule) { // Do not advance a List step so it has the opportunity to repeat itself. if (isList(state)) { + // @ts-ignore + // TODO: ParseRules as numerical index if (state.rule && state.rule[state.step].separator) { state.needsSeperator = !state.needsSeperator; } @@ -292,12 +308,12 @@ function advanceRule(state: State, successful: boolean): void { } } -function isList(state: State): ?boolean { - return ( +function isList(state: State): boolean | null | undefined { + const step = Array.isArray(state.rule) && typeof state.rule[state.step] !== 'string' && - state.rule[state.step].isList - ); + (state.rule[state.step] as Rule); + return step && step.isList; } // Unwind the state after an unsuccessful match. @@ -306,6 +322,8 @@ function unsuccessful(state: State): void { // until the entire stack of rules is empty. while ( state.rule && + // TODO: not sure how to fix this performantly + // @ts-ignore !(Array.isArray(state.rule) && state.rule[state.step].ofRule) ) { popRule(state); @@ -319,9 +337,14 @@ function unsuccessful(state: State): void { } // Given a stream, returns a { kind, value } pair, or null. -function lex(lexRules: LexRulesType, stream: CharacterStream): ?Token { +function lex( + lexRules: typeof LexRulesType, + stream: CharacterStream, +): Token | null | undefined { const kinds = Object.keys(lexRules); for (let i = 0; i < kinds.length; i++) { + // @ts-ignore + // TODO: ParseRules as numerical index const match = stream.match(lexRules[kinds[i]]); if (match && match instanceof Array) { return { kind: kinds[i], value: match[0] }; diff --git a/packages/graphql-language-service-parser/tsconfig.json b/packages/graphql-language-service-parser/tsconfig.json new file mode 100644 index 00000000000..5014e53919a --- /dev/null +++ b/packages/graphql-language-service-parser/tsconfig.json @@ -0,0 +1,7 @@ +{ + "extends": "../../tsconfig.base", + "compilerOptions": { + "rootDir": "./src", + "outDir": "./dist" + } +} diff --git a/packages/graphql-language-service-parser/tsconfig.tsbuildinfo b/packages/graphql-language-service-parser/tsconfig.tsbuildinfo new file mode 100644 index 00000000000..c6a09ac11a9 --- /dev/null +++ b/packages/graphql-language-service-parser/tsconfig.tsbuildinfo @@ -0,0 +1,3419 @@ +{ + "program": { + "fileInfos": { + "../../node_modules/typescript/lib/lib.es5.d.ts": { + "version": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1", + "signature": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1" + }, + "../../node_modules/typescript/lib/lib.es2015.d.ts": { + "version": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96", + "signature": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96" + }, + "../../node_modules/typescript/lib/lib.es2016.d.ts": { + "version": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1", + "signature": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1" + }, + "../../node_modules/typescript/lib/lib.es2017.d.ts": { + "version": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743", + "signature": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743" + }, + "../../node_modules/typescript/lib/lib.es2018.d.ts": { + "version": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091", + "signature": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091" + }, + "../../node_modules/typescript/lib/lib.dom.d.ts": { + "version": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f", + "signature": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f" + }, + "../../node_modules/typescript/lib/lib.es2015.core.d.ts": { + "version": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f", + "signature": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f" + }, + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": { + "version": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0", + "signature": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0" + }, + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": { + "version": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122", + "signature": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122" + }, + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": { + "version": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210", + "signature": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210" + }, + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": { + "version": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2", + "signature": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2" + }, + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": { + "version": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe", + "signature": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe" + }, + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": { + "version": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976", + "signature": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976" + }, + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": { + "version": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230", + "signature": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230" + }, + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": { + "version": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303", + "signature": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303" + }, + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": { + "version": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0", + "signature": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0" + }, + "../../node_modules/typescript/lib/lib.es2017.object.d.ts": { + "version": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4", + "signature": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4" + }, + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": { + "version": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f", + "signature": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f" + }, + "../../node_modules/typescript/lib/lib.es2017.string.d.ts": { + "version": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c", + "signature": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c" + }, + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": { + "version": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6", + "signature": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6" + }, + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": { + "version": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46", + "signature": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46" + }, + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": { + "version": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0", + "signature": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0" + }, + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": { + "version": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10", + "signature": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10" + }, + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": { + "version": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0", + "signature": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0" + }, + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": { + "version": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62", + "signature": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62" + }, + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": { + "version": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8", + "signature": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8" + }, + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": { + "version": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8", + "signature": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8" + }, + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": { + "version": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8", + "signature": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8" + }, + "../../node_modules/graphql/version.d.ts": { + "version": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2", + "signature": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2" + }, + "../../node_modules/graphql/tsutils/Maybe.d.ts": { + "version": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392", + "signature": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392" + }, + "../../node_modules/graphql/language/source.d.ts": { + "version": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd", + "signature": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd" + }, + "../../node_modules/graphql/language/tokenKind.d.ts": { + "version": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78", + "signature": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78" + }, + "../../node_modules/graphql/language/ast.d.ts": { + "version": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937", + "signature": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937" + }, + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": { + "version": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717", + "signature": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717" + }, + "../../node_modules/graphql/jsutils/Path.d.ts": { + "version": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b", + "signature": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b" + }, + "../../node_modules/graphql/type/definition.d.ts": { + "version": "7fab802d7b9d8067b0903ce65934e80325a621304831a2b9a60d7630134c12e4", + "signature": "7fab802d7b9d8067b0903ce65934e80325a621304831a2b9a60d7630134c12e4" + }, + "../../node_modules/graphql/language/directiveLocation.d.ts": { + "version": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b", + "signature": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b" + }, + "../../node_modules/graphql/type/directives.d.ts": { + "version": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d", + "signature": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d" + }, + "../../node_modules/graphql/type/schema.d.ts": { + "version": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491", + "signature": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491" + }, + "../../node_modules/graphql/language/location.d.ts": { + "version": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160", + "signature": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160" + }, + "../../node_modules/graphql/error/GraphQLError.d.ts": { + "version": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b", + "signature": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b" + }, + "../../node_modules/graphql/error/locatedError.d.ts": { + "version": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb", + "signature": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb" + }, + "../../node_modules/graphql/execution/execute.d.ts": { + "version": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4", + "signature": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4" + }, + "../../node_modules/graphql/graphql.d.ts": { + "version": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca", + "signature": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca" + }, + "../../node_modules/graphql/type/scalars.d.ts": { + "version": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11", + "signature": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11" + }, + "../../node_modules/graphql/type/introspection.d.ts": { + "version": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870", + "signature": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870" + }, + "../../node_modules/graphql/type/validate.d.ts": { + "version": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30", + "signature": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30" + }, + "../../node_modules/graphql/type/index.d.ts": { + "version": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62", + "signature": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62" + }, + "../../node_modules/graphql/language/printLocation.d.ts": { + "version": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1", + "signature": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1" + }, + "../../node_modules/graphql/language/kinds.d.ts": { + "version": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293", + "signature": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293" + }, + "../../node_modules/graphql/error/syntaxError.d.ts": { + "version": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b", + "signature": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b" + }, + "../../node_modules/graphql/error/formatError.d.ts": { + "version": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23", + "signature": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23" + }, + "../../node_modules/graphql/error/index.d.ts": { + "version": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0", + "signature": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0" + }, + "../../node_modules/graphql/language/lexer.d.ts": { + "version": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023", + "signature": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023" + }, + "../../node_modules/graphql/language/parser.d.ts": { + "version": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e", + "signature": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e" + }, + "../../node_modules/graphql/language/printer.d.ts": { + "version": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41", + "signature": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41" + }, + "../../node_modules/graphql/utilities/TypeInfo.d.ts": { + "version": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4", + "signature": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4" + }, + "../../node_modules/graphql/language/visitor.d.ts": { + "version": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9", + "signature": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9" + }, + "../../node_modules/graphql/language/predicates.d.ts": { + "version": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271", + "signature": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271" + }, + "../../node_modules/graphql/language/index.d.ts": { + "version": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420", + "signature": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420" + }, + "../../node_modules/graphql/execution/values.d.ts": { + "version": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5", + "signature": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5" + }, + "../../node_modules/graphql/execution/index.d.ts": { + "version": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24", + "signature": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24" + }, + "../../node_modules/graphql/subscription/subscribe.d.ts": { + "version": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22", + "signature": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22" + }, + "../../node_modules/graphql/subscription/index.d.ts": { + "version": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3", + "signature": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3" + }, + "../../node_modules/graphql/validation/ValidationContext.d.ts": { + "version": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14", + "signature": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14" + }, + "../../node_modules/graphql/validation/validate.d.ts": { + "version": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95", + "signature": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95" + }, + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": { + "version": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163", + "signature": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163" + }, + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": { + "version": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152", + "signature": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152" + }, + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": { + "version": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb", + "signature": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb" + }, + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": { + "version": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e", + "signature": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e" + }, + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": { + "version": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6", + "signature": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6" + }, + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": { + "version": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9", + "signature": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9" + }, + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": { + "version": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9", + "signature": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9" + }, + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": { + "version": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5", + "signature": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5" + }, + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": { + "version": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae", + "signature": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae" + }, + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": { + "version": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a", + "signature": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a" + }, + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": { + "version": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f", + "signature": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f" + }, + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": { + "version": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222", + "signature": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222" + }, + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": { + "version": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce", + "signature": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce" + }, + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": { + "version": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294", + "signature": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294" + }, + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": { + "version": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc", + "signature": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc" + }, + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": { + "version": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f", + "signature": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f" + }, + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": { + "version": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014", + "signature": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014" + }, + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": { + "version": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae", + "signature": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae" + }, + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": { + "version": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5", + "signature": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5" + }, + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": { + "version": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73", + "signature": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73" + }, + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": { + "version": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c", + "signature": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c" + }, + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": { + "version": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b", + "signature": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b" + }, + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": { + "version": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1", + "signature": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1" + }, + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": { + "version": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2", + "signature": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2" + }, + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": { + "version": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8", + "signature": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8" + }, + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": { + "version": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c", + "signature": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c" + }, + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": { + "version": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e", + "signature": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e" + }, + "../../node_modules/graphql/validation/specifiedRules.d.ts": { + "version": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d", + "signature": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d" + }, + "../../node_modules/graphql/validation/index.d.ts": { + "version": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423", + "signature": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423" + }, + "../../node_modules/graphql/utilities/introspectionQuery.d.ts": { + "version": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597", + "signature": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597" + }, + "../../node_modules/graphql/utilities/getOperationAST.d.ts": { + "version": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8", + "signature": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8" + }, + "../../node_modules/graphql/utilities/getOperationRootType.d.ts": { + "version": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc", + "signature": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc" + }, + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": { + "version": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d", + "signature": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d" + }, + "../../node_modules/graphql/utilities/buildClientSchema.d.ts": { + "version": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820", + "signature": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820" + }, + "../../node_modules/graphql/language/blockString.d.ts": { + "version": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86", + "signature": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86" + }, + "../../node_modules/graphql/utilities/buildASTSchema.d.ts": { + "version": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7", + "signature": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7" + }, + "../../node_modules/graphql/utilities/extendSchema.d.ts": { + "version": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b", + "signature": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b" + }, + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": { + "version": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896", + "signature": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896" + }, + "../../node_modules/graphql/utilities/schemaPrinter.d.ts": { + "version": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff", + "signature": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff" + }, + "../../node_modules/graphql/utilities/typeFromAST.d.ts": { + "version": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922", + "signature": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922" + }, + "../../node_modules/graphql/utilities/valueFromAST.d.ts": { + "version": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b", + "signature": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b" + }, + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": { + "version": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf", + "signature": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf" + }, + "../../node_modules/graphql/utilities/astFromValue.d.ts": { + "version": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae", + "signature": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae" + }, + "../../node_modules/graphql/utilities/coerceInputValue.d.ts": { + "version": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5", + "signature": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5" + }, + "../../node_modules/graphql/utilities/coerceValue.d.ts": { + "version": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197", + "signature": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197" + }, + "../../node_modules/graphql/utilities/isValidJSValue.d.ts": { + "version": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f", + "signature": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f" + }, + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": { + "version": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8", + "signature": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8" + }, + "../../node_modules/graphql/utilities/concatAST.d.ts": { + "version": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9", + "signature": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9" + }, + "../../node_modules/graphql/utilities/separateOperations.d.ts": { + "version": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a", + "signature": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a" + }, + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": { + "version": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c", + "signature": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c" + }, + "../../node_modules/graphql/utilities/typeComparators.d.ts": { + "version": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454", + "signature": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454" + }, + "../../node_modules/graphql/utilities/assertValidName.d.ts": { + "version": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5", + "signature": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5" + }, + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": { + "version": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a", + "signature": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a" + }, + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": { + "version": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b", + "signature": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b" + }, + "../../node_modules/graphql/utilities/index.d.ts": { + "version": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e", + "signature": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e" + }, + "../../node_modules/graphql/index.d.ts": { + "version": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6", + "signature": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6" + }, + "../../node_modules/graphql-request/dist/src/types.d.ts": { + "version": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4", + "signature": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4" + }, + "../../node_modules/graphql-request/dist/src/index.d.ts": { + "version": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786", + "signature": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786" + }, + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": { + "version": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a", + "signature": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a" + }, + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": { + "version": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc", + "signature": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc" + }, + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": { + "version": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644", + "signature": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644" + }, + "../../node_modules/graphql-config/lib/extensions/index.d.ts": { + "version": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41", + "signature": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41" + }, + "../../node_modules/graphql-config/lib/types.d.ts": { + "version": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6", + "signature": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6" + }, + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": { + "version": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca", + "signature": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca" + }, + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": { + "version": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf", + "signature": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf" + }, + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": { + "version": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca", + "signature": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca" + }, + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": { + "version": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411", + "signature": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411" + }, + "../../node_modules/graphql-config/lib/utils.d.ts": { + "version": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4", + "signature": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4" + }, + "../../node_modules/graphql-config/lib/errors.d.ts": { + "version": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9", + "signature": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9" + }, + "../../node_modules/graphql-config/lib/index.d.ts": { + "version": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4", + "signature": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4" + }, + "../graphql-language-service-types/src/index.ts": { + "version": "522a600e28a0b23ca8483484fce636240b7ec3fec62f48e6ff40567a74297d85" + }, + "./src/CharacterStream.ts": { + "version": "a649cf8370c20f25b354c264ff1ac13721e46d51d249516110098e6816bd3a0f", + "signature": "1c504c5689ed0400b6c48b94721fb023f5b94813f1a6d99cdfcd4df867e880fe" + }, + "./src/RuleHelpers.ts": { + "version": "785d0ffda1a1110fd15291268a4394c6eb2e0307fffed4618b11c09f7b87e4d1", + "signature": "5a3c9d7eac0cfa3b5308c6360d274fd3c2fd5d97bde42ba627088f064c54d677" + }, + "./src/Rules.ts": { + "version": "484b1dd6c0248887f8c5b3134042725c1b421f99270acec5a7207acafd7e5f25", + "signature": "3c44f8e6343510059f4c2d062ed8637e58444333301022877ac49c635b76cc2f" + }, + "./src/onlineParser.ts": { + "version": "3e01b316ff50aebd6949b7614ba462fe81a176cc03837faa215f65dce3c66c31", + "signature": "fe4a9dab6a32ebb38be6c09919fa8f547ec045d4071c43eeac4c59d9b9b42921" + }, + "./src/index.ts": { + "version": "97f833b8b76fe170084043d24907620434f0ef0660fcafb968212598fbba13e6", + "signature": "86f0afb0728c90e507a529bfa6a4653a01bfba0ed816633e2557e104fffb6f31" + }, + "../../node_modules/@types/node/globals.d.ts": { + "version": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed", + "signature": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed" + }, + "../../node_modules/@types/node/assert.d.ts": { + "version": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f", + "signature": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f" + }, + "../../node_modules/@types/node/async_hooks.d.ts": { + "version": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561", + "signature": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561" + }, + "../../node_modules/@types/node/buffer.d.ts": { + "version": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878", + "signature": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878" + }, + "../../node_modules/@types/events/index.d.ts": { + "version": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935", + "signature": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935" + }, + "../../node_modules/@types/node/child_process.d.ts": { + "version": "123366127434e33eade36f3d06653dbc7457397fc93cfdd100776cfc12b6734c", + "signature": "123366127434e33eade36f3d06653dbc7457397fc93cfdd100776cfc12b6734c" + }, + "../../node_modules/@types/node/cluster.d.ts": { + "version": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a", + "signature": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a" + }, + "../../node_modules/@types/node/console.d.ts": { + "version": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d", + "signature": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d" + }, + "../../node_modules/@types/node/constants.d.ts": { + "version": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424", + "signature": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424" + }, + "../../node_modules/@types/node/crypto.d.ts": { + "version": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b", + "signature": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b" + }, + "../../node_modules/@types/node/dgram.d.ts": { + "version": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30", + "signature": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30" + }, + "../../node_modules/@types/node/dns.d.ts": { + "version": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c", + "signature": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c" + }, + "../../node_modules/@types/node/domain.d.ts": { + "version": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa", + "signature": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa" + }, + "../../node_modules/@types/node/events.d.ts": { + "version": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c", + "signature": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c" + }, + "../../node_modules/@types/node/fs.d.ts": { + "version": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882", + "signature": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882" + }, + "../../node_modules/@types/node/http.d.ts": { + "version": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36", + "signature": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36" + }, + "../../node_modules/@types/node/http2.d.ts": { + "version": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d", + "signature": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d" + }, + "../../node_modules/@types/node/https.d.ts": { + "version": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6", + "signature": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6" + }, + "../../node_modules/@types/node/inspector.d.ts": { + "version": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c", + "signature": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c" + }, + "../../node_modules/@types/node/module.d.ts": { + "version": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66", + "signature": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66" + }, + "../../node_modules/@types/node/net.d.ts": { + "version": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4", + "signature": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4" + }, + "../../node_modules/@types/node/os.d.ts": { + "version": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486", + "signature": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486" + }, + "../../node_modules/@types/node/path.d.ts": { + "version": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36", + "signature": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36" + }, + "../../node_modules/@types/node/perf_hooks.d.ts": { + "version": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f", + "signature": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f" + }, + "../../node_modules/@types/node/process.d.ts": { + "version": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389", + "signature": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389" + }, + "../../node_modules/@types/node/punycode.d.ts": { + "version": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1", + "signature": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1" + }, + "../../node_modules/@types/node/querystring.d.ts": { + "version": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e", + "signature": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e" + }, + "../../node_modules/@types/node/readline.d.ts": { + "version": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24", + "signature": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24" + }, + "../../node_modules/@types/node/repl.d.ts": { + "version": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157", + "signature": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157" + }, + "../../node_modules/@types/node/stream.d.ts": { + "version": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd", + "signature": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd" + }, + "../../node_modules/@types/node/string_decoder.d.ts": { + "version": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432", + "signature": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432" + }, + "../../node_modules/@types/node/timers.d.ts": { + "version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9", + "signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9" + }, + "../../node_modules/@types/node/tls.d.ts": { + "version": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a", + "signature": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a" + }, + "../../node_modules/@types/node/trace_events.d.ts": { + "version": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662", + "signature": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662" + }, + "../../node_modules/@types/node/tty.d.ts": { + "version": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007", + "signature": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007" + }, + "../../node_modules/@types/node/url.d.ts": { + "version": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7", + "signature": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7" + }, + "../../node_modules/@types/node/util.d.ts": { + "version": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12", + "signature": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12" + }, + "../../node_modules/@types/node/v8.d.ts": { + "version": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725", + "signature": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725" + }, + "../../node_modules/@types/node/vm.d.ts": { + "version": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562", + "signature": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562" + }, + "../../node_modules/@types/node/worker_threads.d.ts": { + "version": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb", + "signature": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb" + }, + "../../node_modules/@types/node/zlib.d.ts": { + "version": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b", + "signature": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b" + }, + "../../node_modules/@types/node/base.d.ts": { + "version": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce", + "signature": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce" + }, + "../../node_modules/@types/node/ts3.2/util.d.ts": { + "version": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c", + "signature": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c" + }, + "../../node_modules/@types/node/ts3.2/globals.d.ts": { + "version": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1", + "signature": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1" + }, + "../../node_modules/@types/node/ts3.2/index.d.ts": { + "version": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c", + "signature": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c" + }, + "../../node_modules/@types/jest-diff/index.d.ts": { + "version": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06", + "signature": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06" + }, + "../../node_modules/jest-diff/build/types.d.ts": { + "version": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7", + "signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7" + }, + "../../node_modules/jest-diff/build/index.d.ts": { + "version": "b2c5ded6320c45c5d3e1c481c5d2808adf24dd1a59ffc944b72a418e95da5b17", + "signature": "b2c5ded6320c45c5d3e1c481c5d2808adf24dd1a59ffc944b72a418e95da5b17" + }, + "../../node_modules/@types/jest/index.d.ts": { + "version": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b", + "signature": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b" + } + }, + "options": { + "composite": true, + "target": 99, + "module": 99, + "moduleResolution": 2, + "esModuleInterop": true, + "sourceMap": true, + "declaration": true, + "declarationMap": true, + "removeComments": true, + "strict": true, + "noImplicitAny": true, + "noImplicitReturns": false, + "noFallthroughCasesInSwitch": true, + "noUnusedParameters": true, + "noUnusedLocals": true, + "forceConsistentCasingInFileNames": true, + "lib": [ + "lib.dom.d.ts", + "lib.es2017.d.ts", + "lib.es2018.asynciterable.d.ts" + ], + "types": [ + "node", + "jest" + ], + "baseUrl": "../..", + "paths": { + "graphql-language-*": [ + "graphql-language-*" + ] + }, + "rootDir": "./src", + "outDir": "./dist", + "configFilePath": "./tsconfig.json" + }, + "referencedMap": { + "../../node_modules/typescript/lib/lib.es5.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.dom.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/version.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/tsutils/Maybe.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/source.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/tokenKind.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/ast.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/Path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/definition.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/directiveLocation.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/directives.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/schema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/location.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/GraphQLError.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/locatedError.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/execute.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/graphql.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/scalars.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/introspection.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/scalars.d.ts", + "../../node_modules/graphql/type/introspection.d.ts", + "../../node_modules/graphql/type/validate.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printLocation.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/kinds.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/syntaxError.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/formatError.d.ts": [ + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/index.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/syntaxError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/error/formatError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/lexer.d.ts": [ + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/parser.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printer.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/visitor.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/predicates.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/index.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/language/printLocation.d.ts", + "../../node_modules/graphql/language/kinds.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/printer.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/predicates.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/values.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/execution/values.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/subscribe.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/index.d.ts": [ + "../../node_modules/graphql/subscription/subscribe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/ValidationContext.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/specifiedRules.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/index.d.ts": [ + "../../node_modules/graphql/validation/validate.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/specifiedRules.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/blockString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/blockString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/extendSchema.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/astFromValue.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceValue.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/concatAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/separateOperations.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeComparators.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/assertValidName.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/index.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/utilities/getOperationAST.d.ts", + "../../node_modules/graphql/utilities/getOperationRootType.d.ts", + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", + "../../node_modules/graphql/utilities/buildClientSchema.d.ts", + "../../node_modules/graphql/utilities/buildASTSchema.d.ts", + "../../node_modules/graphql/utilities/extendSchema.d.ts", + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", + "../../node_modules/graphql/utilities/schemaPrinter.d.ts", + "../../node_modules/graphql/utilities/typeFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", + "../../node_modules/graphql/utilities/astFromValue.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/utilities/coerceInputValue.d.ts", + "../../node_modules/graphql/utilities/coerceValue.d.ts", + "../../node_modules/graphql/utilities/isValidJSValue.d.ts", + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", + "../../node_modules/graphql/utilities/concatAST.d.ts", + "../../node_modules/graphql/utilities/separateOperations.d.ts", + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", + "../../node_modules/graphql/utilities/typeComparators.d.ts", + "../../node_modules/graphql/utilities/assertValidName.d.ts", + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/index.d.ts": [ + "../../node_modules/graphql/version.d.ts", + "../../node_modules/graphql/graphql.d.ts", + "../../node_modules/graphql/type/index.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/execution/index.d.ts", + "../../node_modules/graphql/subscription/index.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/utilities/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/index.d.ts": [ + "../../node_modules/graphql-request/dist/src/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ + "../../node_modules/graphql-request/dist/src/index.d.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/types.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/utils.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/errors.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/index.d.ts": [ + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", + "../../node_modules/graphql-config/lib/utils.d.ts", + "../../node_modules/graphql-config/lib/errors.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-types/src/index.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql-config/lib/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/CharacterStream.ts": [ + "../graphql-language-service-types/src/index.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/RuleHelpers.ts": [ + "../graphql-language-service-types/src/index.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/Rules.ts": [ + "../graphql-language-service-types/src/index.ts", + "./src/RuleHelpers.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/onlineParser.ts": [ + "./src/Rules.ts", + "../graphql-language-service-types/src/index.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/index.ts": [ + "./src/CharacterStream.ts", + "./src/Rules.ts", + "./src/RuleHelpers.ts", + "./src/onlineParser.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/globals.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/assert.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/async_hooks.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/buffer.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/events/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/child_process.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/cluster.d.ts": [ + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/console.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/constants.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/crypto.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dgram.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dns.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/domain.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/fs.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http2.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/https.d.ts": [ + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/inspector.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/module.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/net.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/os.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/perf_hooks.d.ts": [ + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/process.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/punycode.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/querystring.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/readline.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/repl.d.ts": [ + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/stream.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/string_decoder.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/timers.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tls.d.ts": [ + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/trace_events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tty.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/url.d.ts": [ + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/util.d.ts": [ + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/v8.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/vm.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/worker_threads.d.ts": [ + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/zlib.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/base.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/assert.d.ts", + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/buffer.d.ts", + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/cluster.d.ts", + "../../node_modules/@types/node/console.d.ts", + "../../node_modules/@types/node/constants.d.ts", + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dgram.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/domain.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/http2.d.ts", + "../../node_modules/@types/node/https.d.ts", + "../../node_modules/@types/node/inspector.d.ts", + "../../node_modules/@types/node/module.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/os.d.ts", + "../../node_modules/@types/node/path.d.ts", + "../../node_modules/@types/node/perf_hooks.d.ts", + "../../node_modules/@types/node/process.d.ts", + "../../node_modules/@types/node/punycode.d.ts", + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/repl.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/string_decoder.d.ts", + "../../node_modules/@types/node/timers.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/trace_events.d.ts", + "../../node_modules/@types/node/tty.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/v8.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/worker_threads.d.ts", + "../../node_modules/@types/node/zlib.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/util.d.ts": [ + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/globals.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/index.d.ts": [ + "../../node_modules/@types/node/base.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts", + "../../node_modules/@types/node/ts3.2/globals.d.ts", + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/jest-diff/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/index.d.ts": [ + "../../node_modules/jest-diff/build/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/jest/index.d.ts": [ + "../../node_modules/jest-diff/build/index.d.ts", + "../../node_modules/@types/jest-diff/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ] + }, + "exportedModulesMap": { + "../../node_modules/typescript/lib/lib.es5.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.dom.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/version.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/index.d.ts": [ + "../../node_modules/graphql/version.d.ts", + "../../node_modules/graphql/graphql.d.ts", + "../../node_modules/graphql/type/index.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/execution/index.d.ts", + "../../node_modules/graphql/subscription/index.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/utilities/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/onlineParser.ts": [ + "../graphql-language-service-types/src/index.ts", + "./src/Rules.ts" + ], + "./src/index.ts": [ + "./src/CharacterStream.ts", + "./src/Rules.ts", + "./src/RuleHelpers.ts", + "./src/onlineParser.ts" + ], + "./src/Rules.ts": [ + "../graphql-language-service-types/src/index.ts" + ], + "./src/RuleHelpers.ts": [ + "../graphql-language-service-types/src/index.ts" + ], + "./src/CharacterStream.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../graphql-language-service-types/src/index.ts" + ], + "../../node_modules/graphql-config/lib/utils.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/index.d.ts": [ + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", + "../../node_modules/graphql-config/lib/utils.d.ts", + "../../node_modules/graphql-config/lib/errors.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/types.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ + "../../node_modules/graphql-request/dist/src/index.d.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/tsutils/Maybe.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/astFromValue.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/index.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/utilities/getOperationAST.d.ts", + "../../node_modules/graphql/utilities/getOperationRootType.d.ts", + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", + "../../node_modules/graphql/utilities/buildClientSchema.d.ts", + "../../node_modules/graphql/utilities/buildASTSchema.d.ts", + "../../node_modules/graphql/utilities/extendSchema.d.ts", + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", + "../../node_modules/graphql/utilities/schemaPrinter.d.ts", + "../../node_modules/graphql/utilities/typeFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", + "../../node_modules/graphql/utilities/astFromValue.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/utilities/coerceInputValue.d.ts", + "../../node_modules/graphql/utilities/coerceValue.d.ts", + "../../node_modules/graphql/utilities/isValidJSValue.d.ts", + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", + "../../node_modules/graphql/utilities/concatAST.d.ts", + "../../node_modules/graphql/utilities/separateOperations.d.ts", + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", + "../../node_modules/graphql/utilities/typeComparators.d.ts", + "../../node_modules/graphql/utilities/assertValidName.d.ts", + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/blockString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/index.d.ts": [ + "../../node_modules/graphql/validation/validate.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/specifiedRules.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/specifiedRules.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/ValidationContext.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/subscribe.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/index.d.ts": [ + "../../node_modules/graphql/subscription/subscribe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/values.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/execution/values.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/visitor.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/index.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/language/printLocation.d.ts", + "../../node_modules/graphql/language/kinds.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/printer.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/predicates.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/graphql.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/execute.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/GraphQLError.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/assertValidName.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceValue.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/index.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/syntaxError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/error/formatError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/lexer.d.ts": [ + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/parser.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/formatError.d.ts": [ + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/syntaxError.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/scalars.d.ts", + "../../node_modules/graphql/type/introspection.d.ts", + "../../node_modules/graphql/type/validate.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/locatedError.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/schema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeComparators.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/extendSchema.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/definition.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/introspection.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/scalars.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/directives.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/source.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printLocation.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/location.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/ast.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/separateOperations.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/concatAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/predicates.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printer.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/tokenKind.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/Path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/directiveLocation.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/kinds.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/blockString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/index.d.ts": [ + "../../node_modules/graphql-request/dist/src/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/errors.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/globals.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/assert.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/base.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/assert.d.ts", + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/buffer.d.ts", + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/cluster.d.ts", + "../../node_modules/@types/node/console.d.ts", + "../../node_modules/@types/node/constants.d.ts", + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dgram.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/domain.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/http2.d.ts", + "../../node_modules/@types/node/https.d.ts", + "../../node_modules/@types/node/inspector.d.ts", + "../../node_modules/@types/node/module.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/os.d.ts", + "../../node_modules/@types/node/path.d.ts", + "../../node_modules/@types/node/perf_hooks.d.ts", + "../../node_modules/@types/node/process.d.ts", + "../../node_modules/@types/node/punycode.d.ts", + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/repl.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/string_decoder.d.ts", + "../../node_modules/@types/node/timers.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/trace_events.d.ts", + "../../node_modules/@types/node/tty.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/v8.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/worker_threads.d.ts", + "../../node_modules/@types/node/zlib.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/index.d.ts": [ + "../../node_modules/@types/node/base.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts", + "../../node_modules/@types/node/ts3.2/globals.d.ts", + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/node/async_hooks.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/perf_hooks.d.ts": [ + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/buffer.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/events/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/child_process.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/cluster.d.ts": [ + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/console.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/constants.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/crypto.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tls.d.ts": [ + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/https.d.ts": [ + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http2.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dgram.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dns.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/net.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tty.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/domain.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/worker_threads.d.ts": [ + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/stream.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/zlib.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/v8.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/readline.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/repl.d.ts": [ + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/fs.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/inspector.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/module.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/os.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/process.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/punycode.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/querystring.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/url.d.ts": [ + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/string_decoder.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/timers.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/trace_events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/util.d.ts": [ + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/jest/index.d.ts": [ + "../../node_modules/jest-diff/build/index.d.ts", + "../../node_modules/@types/jest-diff/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/index.d.ts": [ + "../../node_modules/jest-diff/build/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/jest-diff/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/globals.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/util.d.ts": [ + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/node/vm.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ] + }, + "semanticDiagnosticsPerFile": [ + "../../node_modules/graphql/version.d.ts", + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/graphql.d.ts", + "../../node_modules/graphql/type/scalars.d.ts", + "../../node_modules/graphql/type/introspection.d.ts", + "../../node_modules/graphql/type/validate.d.ts", + "../../node_modules/graphql/type/index.d.ts", + "../../node_modules/graphql/language/printLocation.d.ts", + "../../node_modules/graphql/language/kinds.d.ts", + "../../node_modules/graphql/error/syntaxError.d.ts", + "../../node_modules/graphql/error/formatError.d.ts", + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/printer.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/predicates.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/execution/values.d.ts", + "../../node_modules/graphql/execution/index.d.ts", + "../../node_modules/graphql/subscription/subscribe.d.ts", + "../../node_modules/graphql/subscription/index.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/validate.d.ts", + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", + "../../node_modules/graphql/validation/specifiedRules.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/utilities/getOperationAST.d.ts", + "../../node_modules/graphql/utilities/getOperationRootType.d.ts", + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", + "../../node_modules/graphql/utilities/buildClientSchema.d.ts", + "../../node_modules/graphql/language/blockString.d.ts", + "../../node_modules/graphql/utilities/buildASTSchema.d.ts", + "../../node_modules/graphql/utilities/extendSchema.d.ts", + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", + "../../node_modules/graphql/utilities/schemaPrinter.d.ts", + "../../node_modules/graphql/utilities/typeFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", + "../../node_modules/graphql/utilities/astFromValue.d.ts", + "../../node_modules/graphql/utilities/coerceInputValue.d.ts", + "../../node_modules/graphql/utilities/coerceValue.d.ts", + "../../node_modules/graphql/utilities/isValidJSValue.d.ts", + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", + "../../node_modules/graphql/utilities/concatAST.d.ts", + "../../node_modules/graphql/utilities/separateOperations.d.ts", + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", + "../../node_modules/graphql/utilities/typeComparators.d.ts", + "../../node_modules/graphql/utilities/assertValidName.d.ts", + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", + "../../node_modules/graphql/utilities/index.d.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-request/dist/src/types.d.ts", + "../../node_modules/graphql-request/dist/src/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", + "../../node_modules/graphql-config/lib/utils.d.ts", + "../../node_modules/graphql-config/lib/errors.d.ts", + "../../node_modules/graphql-config/lib/index.d.ts", + "../graphql-language-service-types/src/index.ts", + "./src/CharacterStream.ts", + "./src/RuleHelpers.ts", + "./src/Rules.ts", + "./src/onlineParser.ts", + "./src/index.ts", + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/assert.d.ts", + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/buffer.d.ts", + "../../node_modules/@types/events/index.d.ts", + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/cluster.d.ts", + "../../node_modules/@types/node/console.d.ts", + "../../node_modules/@types/node/constants.d.ts", + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dgram.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/domain.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/http2.d.ts", + "../../node_modules/@types/node/https.d.ts", + "../../node_modules/@types/node/inspector.d.ts", + "../../node_modules/@types/node/module.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/os.d.ts", + "../../node_modules/@types/node/path.d.ts", + "../../node_modules/@types/node/perf_hooks.d.ts", + "../../node_modules/@types/node/process.d.ts", + "../../node_modules/@types/node/punycode.d.ts", + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/repl.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/string_decoder.d.ts", + "../../node_modules/@types/node/timers.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/trace_events.d.ts", + "../../node_modules/@types/node/tty.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/v8.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/worker_threads.d.ts", + "../../node_modules/@types/node/zlib.d.ts", + "../../node_modules/@types/node/base.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts", + "../../node_modules/@types/node/ts3.2/globals.d.ts", + "../../node_modules/@types/node/ts3.2/index.d.ts", + "../../node_modules/@types/jest-diff/index.d.ts", + "../../node_modules/jest-diff/build/types.d.ts", + "../../node_modules/jest-diff/build/index.d.ts", + "../../node_modules/@types/jest/index.d.ts", + "../../node_modules/typescript/lib/lib.es2015.d.ts", + "../../node_modules/typescript/lib/lib.es2016.d.ts", + "../../node_modules/typescript/lib/lib.es2017.d.ts", + "../../node_modules/typescript/lib/lib.es2018.d.ts", + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts", + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts", + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts", + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts", + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts", + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts", + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts", + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts", + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts", + "../../node_modules/typescript/lib/lib.es2017.string.d.ts", + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts", + "../../node_modules/typescript/lib/lib.es2017.object.d.ts", + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts", + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts", + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts", + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts", + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts", + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts", + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts", + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts", + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts", + "../../node_modules/typescript/lib/lib.es2015.core.d.ts", + "../../node_modules/typescript/lib/lib.dom.d.ts", + "../../node_modules/typescript/lib/lib.es5.d.ts" + ] + }, + "version": "3.6.3" +} \ No newline at end of file diff --git a/packages/graphql-language-service-types/package.json b/packages/graphql-language-service-types/package.json index 3e23610cecd..0de5d72ae58 100644 --- a/packages/graphql-language-service-types/package.json +++ b/packages/graphql-language-service-types/package.json @@ -20,6 +20,7 @@ "graphql" ], "main": "dist/index.js", + "typings": "src/index", "scripts": { "build": "yarn run build-js && yarn run build-flow", "build-js": "node ../../resources/buildJs.js", diff --git a/packages/graphql-language-service-types/src/index.js b/packages/graphql-language-service-types/src/index.ts similarity index 53% rename from packages/graphql-language-service-types/src/index.js rename to packages/graphql-language-service-types/src/index.ts index 29d74483ad3..cac041c38b9 100644 --- a/packages/graphql-language-service-types/src/index.js +++ b/packages/graphql-language-service-types/src/index.ts @@ -5,29 +5,28 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ -import type { GraphQLSchema } from 'graphql'; -import type { +import { GraphQLSchema } from 'graphql'; +import { ASTNode, DocumentNode, FragmentDefinitionNode, NamedTypeNode, TypeDefinitionNode, } from 'graphql/language'; -import type { ValidationContext } from 'graphql/validation'; -import type { +import { ValidationContext } from 'graphql/validation'; +import { GraphQLArgument, GraphQLEnumValue, GraphQLField, GraphQLInputField, GraphQLType, } from 'graphql/type/definition'; -import type { GraphQLDirective } from 'graphql/type/directives'; +import { GraphQLDirective } from 'graphql/type/directives'; -export type { GraphQLConfig, GraphQLProjectConfig } from 'graphql-config'; -import type { GraphQLConfig, GraphQLProjectConfig } from 'graphql-config'; +export { GraphQLConfig, GraphQLProjectConfig }; +import { GraphQLConfig, GraphQLProjectConfig } from 'graphql-config'; export type TokenPattern = string | ((char: string) => boolean) | RegExp; @@ -38,15 +37,15 @@ export interface CharacterStream { sol: () => boolean; peek: () => string | null; next: () => string; - eat: (pattern: TokenPattern) => string | void; + eat: (pattern: TokenPattern) => string | undefined; eatWhile: (match: TokenPattern) => boolean; eatSpace: () => boolean; skipToEnd: () => void; skipTo: (position: number) => void; match: ( pattern: TokenPattern, - consume: ?boolean, - caseFold: ?boolean, + consume?: boolean | null | undefined, + caseFold?: boolean | null | undefined, ) => Array | boolean; backUp: (num: number) => void; column: () => number; @@ -57,28 +56,28 @@ export interface CharacterStream { // Cache and config-related. export type GraphQLConfiguration = GraphQLProjectConfiguration & { projects?: { - [projectName: string]: GraphQLProjectConfiguration, - }, + [projectName: string]: GraphQLProjectConfiguration; + }; }; export type GraphQLProjectConfiguration = { // The name for this project configuration. // If not supplied, the object key can be used for the project name. - name?: string, - schemaPath?: string, // a file with schema IDL + name?: string; + schemaPath?: string; // a file with schema IDL // For multiple applications with overlapping files, // these configuration options may be helpful - includes?: Array, - excludes?: Array, + includes?: Array; + excludes?: Array; // If you'd like to specify any other configurations, // we provide a reserved namespace for it - extensions?: GraphQLConfigurationExtension, + extensions?: GraphQLConfigurationExtension; }; export type GraphQLConfigurationExtension = { - [name: string]: mixed, + [name: string]: unknown; }; export interface GraphQLCache { @@ -86,7 +85,7 @@ export interface GraphQLCache { getObjectTypeDependencies: ( query: string, - fragmentDefinitions: ?Map, + fragmentDefinitions: Map | null | undefined, ) => Promise>; getObjectTypeDependenciesForAST: ( @@ -98,21 +97,21 @@ export interface GraphQLCache { graphQLConfig: GraphQLProjectConfig, ) => Promise>; - +updateObjectTypeDefinition: ( + updateObjectTypeDefinition: ( rootDir: Uri, filePath: Uri, contents: Array, - ) => Promise; + ) => Promise; - +updateObjectTypeDefinitionCache: ( + updateObjectTypeDefinitionCache: ( rootDir: Uri, filePath: Uri, exists: boolean, - ) => Promise; + ) => Promise; getFragmentDependencies: ( query: string, - fragmentDefinitions: ?Map, + fragmentDefinitions: Map | null | undefined, ) => Promise>; getFragmentDependenciesForAST: ( @@ -124,27 +123,27 @@ export interface GraphQLCache { graphQLConfig: GraphQLProjectConfig, ) => Promise>; - +updateFragmentDefinition: ( + updateFragmentDefinition: ( rootDir: Uri, filePath: Uri, contents: Array, - ) => Promise; + ) => Promise; - +updateFragmentDefinitionCache: ( + updateFragmentDefinitionCache: ( rootDir: Uri, filePath: Uri, exists: boolean, - ) => Promise; + ) => Promise; getSchema: ( - appName: ?string, - queryHasExtensions?: ?boolean, - ) => Promise; + appName: string | null | undefined, + queryHasExtensions?: boolean | null | undefined, + ) => Promise; handleWatchmanSubscribeEvent: ( rootDir: string, projectConfig: GraphQLProjectConfig, - ) => (result: Object) => void; + ) => (result: Object) => undefined; } // online-parser related @@ -161,132 +160,133 @@ export interface Range { } export type CachedContent = { - query: string, - range: ?Range, + query: string; + range: Range | null | undefined; }; -export type ParseRule = - | ((token: Token, stream: CharacterStream) => ?string) - | Array; +export type RuleOrString = Rule | string + +export type ParseRule = RuleOrString[] | ((token: Token, stream: CharacterStream) => string | null | undefined) export type Token = { - kind: string, - value: string, + kind: string; + value: string; }; export type Rule = { - style?: string, - match?: (token: Token) => boolean, - update?: (state: State, token: Token) => void, - separator?: string | Rule, - isList?: boolean, - ofRule?: Rule | string, + style?: string; + match?: (token: Token) => boolean; + update?: (state: State, token: Token) => void; + separator?: string | Rule; + isList?: boolean; + ofRule?: Rule | string; }; export type State = { - level: number, - levels?: Array, - prevState: ?State, - rule: ?ParseRule, - kind: ?string, - name: ?string, - type: ?string, - step: number, - needsSeperator: boolean, - needsAdvance?: boolean, - indentLevel?: number, + level: number; + levels?: Array; + prevState: State | null | undefined; + rule: ParseRule | null | undefined; + kind: string | null | undefined; + name: string | null | undefined; + type: string | null | undefined; + step: number; + needsSeperator: boolean; + needsAdvance?: boolean; + indentLevel?: number; }; // GraphQL Language Service related types export type Uri = string; export type GraphQLFileMetadata = { - filePath: Uri, - size: number, - mtime: number, + filePath: Uri; + size: number; + mtime: number; }; export type GraphQLFileInfo = { - filePath: Uri, - content: string, - asts: Array, - size: number, - mtime: number, + filePath: Uri; + content: string; + asts: Array; + size: number; + mtime: number; }; export type ContextToken = { - start: number, - end: number, - string: string, - state: State, - style: string, + start: number; + end: number; + string: string; + state: State; + style: string; }; -export type TypeInfo = { - type: ?GraphQLType, - parentType: ?GraphQLType, - inputType: ?GraphQLType, - directiveDef: ?GraphQLDirective, - fieldDef: ?GraphQLField<*, *>, - enumValue: ?GraphQLEnumValue, - argDef: ?GraphQLArgument, - argDefs: ?Array, - objectFieldDefs: ?GraphQLInputField, +export type AllTypeInfo = { + type: GraphQLType | null | undefined; + parentType: GraphQLType | null | undefined; + inputType: GraphQLType | null | undefined; + directiveDef: GraphQLDirective | null | undefined; + fieldDef: GraphQLField | null | undefined; + enumValue: GraphQLEnumValue | null | undefined; + argDef: GraphQLArgument | null | undefined; + argDefs: Array | null | undefined; + objectFieldDefs: GraphQLInputField | null | undefined; }; export type FragmentInfo = { - filePath?: Uri, - content: string, - definition: FragmentDefinitionNode, + filePath?: Uri; + content: string; + definition: FragmentDefinitionNode; }; export type NamedTypeInfo = { - filePath?: Uri, - content: string, - definition: NamedTypeNode, + filePath?: Uri; + content: string; + definition: NamedTypeNode; }; export type ObjectTypeInfo = { - filePath?: Uri, - content: string, - definition: TypeDefinitionNode, + filePath?: Uri; + content: string; + definition: TypeDefinitionNode; }; export type CustomValidationRule = (context: ValidationContext) => Object; export type Diagnostic = { - range: Range, - severity?: number, - code?: number | string, - source?: string, - message: string, + range: Range; + severity?: number; + code?: number | string; + source?: string; + message: string; }; export type CompletionItem = { - label: string, - kind?: number, - detail?: string, - documentation?: ?string, + label: string; + kind?: number; + detail?: string; + documentation?: string | null | undefined; // GraphQL Deprecation information - isDeprecated?: ?boolean, - deprecationReason?: ?string, + isDeprecated?: boolean | null | undefined; + deprecationReason?: string | null | undefined; }; // Below are basically a copy-paste from Nuclide rpc types for definitions. // Definitions/hyperlink export type Definition = { - path: Uri, - position: Position, - range?: Range, - id?: string, - name?: string, - language: string, - projectRoot?: Uri, + path: Uri; + position: Position; + range?: Range; + id?: string; + name?: string; + language: string; + projectRoot?: Uri; }; + export type DefinitionQueryResult = { - queryRange: Array, - definitions: Array, + queryRange: Array; + definitions: Array; }; // Outline view @@ -301,34 +301,47 @@ export type TokenKind = | 'plain' | 'type'; export type TextToken = { - kind: TokenKind, - value: string, + kind: TokenKind; + value: string | undefined; }; + export type TokenizedText = Array; export type OutlineTree = { // Must be one or the other. If both are present, tokenizedText is preferred. - plainText?: string, - tokenizedText?: TokenizedText, - representativeName?: string, + plainText?: string; + tokenizedText?: TokenizedText; + representativeName?: string; - startPosition: Position, - endPosition?: Position, - children: Array, + startPosition: Position; + endPosition?: Position; + children: Array; }; + export type Outline = { - outlineTrees: Array, + outlineTrees: Array; }; export interface DidChangeWatchedFilesParams { changes: FileEvent[]; } + export interface FileEvent { uri: string; type: FileChangeType; } + export const FileChangeTypeKind = { Created: 1, Changed: 2, Deleted: 3, }; -export type FileChangeType = $Values; + +export type FileChangeTypeKind = { + Created: 1; + Changed: 2; + Deleted: 3; +}; + +export type FileChangeTypeKeys = keyof FileChangeTypeKind; + +export type FileChangeType = FileChangeTypeKind[FileChangeTypeKeys]; diff --git a/packages/graphql-language-service-types/tsconfig.json b/packages/graphql-language-service-types/tsconfig.json new file mode 100644 index 00000000000..dd01d525f5a --- /dev/null +++ b/packages/graphql-language-service-types/tsconfig.json @@ -0,0 +1,7 @@ +{ + "extends": "../../tsconfig.base", + "compilerOptions": { + "rootDir": "./src", + "outDir": "./dist", + } +} diff --git a/packages/graphql-language-service-types/tsconfig.tsbuildinfo b/packages/graphql-language-service-types/tsconfig.tsbuildinfo new file mode 100644 index 00000000000..dd8eb09ccff --- /dev/null +++ b/packages/graphql-language-service-types/tsconfig.tsbuildinfo @@ -0,0 +1,3353 @@ +{ + "program": { + "fileInfos": { + "../../node_modules/typescript/lib/lib.es5.d.ts": { + "version": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1", + "signature": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1" + }, + "../../node_modules/typescript/lib/lib.es2015.d.ts": { + "version": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96", + "signature": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96" + }, + "../../node_modules/typescript/lib/lib.es2016.d.ts": { + "version": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1", + "signature": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1" + }, + "../../node_modules/typescript/lib/lib.es2017.d.ts": { + "version": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743", + "signature": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743" + }, + "../../node_modules/typescript/lib/lib.es2018.d.ts": { + "version": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091", + "signature": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091" + }, + "../../node_modules/typescript/lib/lib.dom.d.ts": { + "version": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f", + "signature": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f" + }, + "../../node_modules/typescript/lib/lib.es2015.core.d.ts": { + "version": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f", + "signature": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f" + }, + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": { + "version": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0", + "signature": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0" + }, + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": { + "version": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122", + "signature": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122" + }, + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": { + "version": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210", + "signature": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210" + }, + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": { + "version": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2", + "signature": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2" + }, + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": { + "version": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe", + "signature": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe" + }, + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": { + "version": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976", + "signature": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976" + }, + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": { + "version": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230", + "signature": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230" + }, + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": { + "version": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303", + "signature": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303" + }, + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": { + "version": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0", + "signature": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0" + }, + "../../node_modules/typescript/lib/lib.es2017.object.d.ts": { + "version": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4", + "signature": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4" + }, + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": { + "version": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f", + "signature": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f" + }, + "../../node_modules/typescript/lib/lib.es2017.string.d.ts": { + "version": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c", + "signature": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c" + }, + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": { + "version": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6", + "signature": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6" + }, + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": { + "version": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46", + "signature": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46" + }, + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": { + "version": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0", + "signature": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0" + }, + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": { + "version": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10", + "signature": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10" + }, + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": { + "version": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0", + "signature": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0" + }, + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": { + "version": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62", + "signature": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62" + }, + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": { + "version": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8", + "signature": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8" + }, + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": { + "version": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8", + "signature": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8" + }, + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": { + "version": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8", + "signature": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8" + }, + "../../node_modules/graphql/version.d.ts": { + "version": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2", + "signature": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2" + }, + "../../node_modules/graphql/tsutils/Maybe.d.ts": { + "version": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392", + "signature": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392" + }, + "../../node_modules/graphql/language/source.d.ts": { + "version": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd", + "signature": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd" + }, + "../../node_modules/graphql/language/tokenKind.d.ts": { + "version": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78", + "signature": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78" + }, + "../../node_modules/graphql/language/ast.d.ts": { + "version": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937", + "signature": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937" + }, + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": { + "version": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717", + "signature": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717" + }, + "../../node_modules/graphql/jsutils/Path.d.ts": { + "version": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b", + "signature": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b" + }, + "../../node_modules/graphql/type/definition.d.ts": { + "version": "7fab802d7b9d8067b0903ce65934e80325a621304831a2b9a60d7630134c12e4", + "signature": "7fab802d7b9d8067b0903ce65934e80325a621304831a2b9a60d7630134c12e4" + }, + "../../node_modules/graphql/language/directiveLocation.d.ts": { + "version": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b", + "signature": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b" + }, + "../../node_modules/graphql/type/directives.d.ts": { + "version": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d", + "signature": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d" + }, + "../../node_modules/graphql/type/schema.d.ts": { + "version": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491", + "signature": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491" + }, + "../../node_modules/graphql/language/location.d.ts": { + "version": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160", + "signature": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160" + }, + "../../node_modules/graphql/error/GraphQLError.d.ts": { + "version": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b", + "signature": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b" + }, + "../../node_modules/graphql/error/locatedError.d.ts": { + "version": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb", + "signature": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb" + }, + "../../node_modules/graphql/execution/execute.d.ts": { + "version": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4", + "signature": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4" + }, + "../../node_modules/graphql/graphql.d.ts": { + "version": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca", + "signature": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca" + }, + "../../node_modules/graphql/type/scalars.d.ts": { + "version": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11", + "signature": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11" + }, + "../../node_modules/graphql/type/introspection.d.ts": { + "version": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870", + "signature": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870" + }, + "../../node_modules/graphql/type/validate.d.ts": { + "version": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30", + "signature": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30" + }, + "../../node_modules/graphql/type/index.d.ts": { + "version": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62", + "signature": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62" + }, + "../../node_modules/graphql/language/printLocation.d.ts": { + "version": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1", + "signature": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1" + }, + "../../node_modules/graphql/language/kinds.d.ts": { + "version": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293", + "signature": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293" + }, + "../../node_modules/graphql/error/syntaxError.d.ts": { + "version": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b", + "signature": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b" + }, + "../../node_modules/graphql/error/formatError.d.ts": { + "version": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23", + "signature": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23" + }, + "../../node_modules/graphql/error/index.d.ts": { + "version": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0", + "signature": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0" + }, + "../../node_modules/graphql/language/lexer.d.ts": { + "version": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023", + "signature": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023" + }, + "../../node_modules/graphql/language/parser.d.ts": { + "version": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e", + "signature": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e" + }, + "../../node_modules/graphql/language/printer.d.ts": { + "version": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41", + "signature": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41" + }, + "../../node_modules/graphql/utilities/TypeInfo.d.ts": { + "version": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4", + "signature": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4" + }, + "../../node_modules/graphql/language/visitor.d.ts": { + "version": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9", + "signature": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9" + }, + "../../node_modules/graphql/language/predicates.d.ts": { + "version": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271", + "signature": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271" + }, + "../../node_modules/graphql/language/index.d.ts": { + "version": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420", + "signature": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420" + }, + "../../node_modules/graphql/execution/values.d.ts": { + "version": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5", + "signature": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5" + }, + "../../node_modules/graphql/execution/index.d.ts": { + "version": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24", + "signature": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24" + }, + "../../node_modules/graphql/subscription/subscribe.d.ts": { + "version": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22", + "signature": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22" + }, + "../../node_modules/graphql/subscription/index.d.ts": { + "version": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3", + "signature": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3" + }, + "../../node_modules/graphql/validation/ValidationContext.d.ts": { + "version": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14", + "signature": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14" + }, + "../../node_modules/graphql/validation/validate.d.ts": { + "version": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95", + "signature": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95" + }, + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": { + "version": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163", + "signature": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163" + }, + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": { + "version": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152", + "signature": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152" + }, + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": { + "version": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb", + "signature": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb" + }, + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": { + "version": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e", + "signature": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e" + }, + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": { + "version": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6", + "signature": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6" + }, + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": { + "version": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9", + "signature": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9" + }, + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": { + "version": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9", + "signature": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9" + }, + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": { + "version": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5", + "signature": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5" + }, + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": { + "version": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae", + "signature": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae" + }, + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": { + "version": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a", + "signature": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a" + }, + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": { + "version": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f", + "signature": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f" + }, + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": { + "version": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222", + "signature": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222" + }, + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": { + "version": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce", + "signature": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce" + }, + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": { + "version": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294", + "signature": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294" + }, + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": { + "version": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc", + "signature": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc" + }, + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": { + "version": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f", + "signature": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f" + }, + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": { + "version": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014", + "signature": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014" + }, + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": { + "version": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae", + "signature": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae" + }, + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": { + "version": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5", + "signature": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5" + }, + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": { + "version": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73", + "signature": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73" + }, + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": { + "version": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c", + "signature": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c" + }, + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": { + "version": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b", + "signature": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b" + }, + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": { + "version": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1", + "signature": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1" + }, + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": { + "version": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2", + "signature": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2" + }, + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": { + "version": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8", + "signature": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8" + }, + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": { + "version": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c", + "signature": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c" + }, + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": { + "version": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e", + "signature": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e" + }, + "../../node_modules/graphql/validation/specifiedRules.d.ts": { + "version": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d", + "signature": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d" + }, + "../../node_modules/graphql/validation/index.d.ts": { + "version": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423", + "signature": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423" + }, + "../../node_modules/graphql/utilities/introspectionQuery.d.ts": { + "version": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597", + "signature": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597" + }, + "../../node_modules/graphql/utilities/getOperationAST.d.ts": { + "version": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8", + "signature": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8" + }, + "../../node_modules/graphql/utilities/getOperationRootType.d.ts": { + "version": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc", + "signature": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc" + }, + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": { + "version": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d", + "signature": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d" + }, + "../../node_modules/graphql/utilities/buildClientSchema.d.ts": { + "version": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820", + "signature": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820" + }, + "../../node_modules/graphql/language/blockString.d.ts": { + "version": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86", + "signature": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86" + }, + "../../node_modules/graphql/utilities/buildASTSchema.d.ts": { + "version": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7", + "signature": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7" + }, + "../../node_modules/graphql/utilities/extendSchema.d.ts": { + "version": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b", + "signature": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b" + }, + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": { + "version": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896", + "signature": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896" + }, + "../../node_modules/graphql/utilities/schemaPrinter.d.ts": { + "version": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff", + "signature": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff" + }, + "../../node_modules/graphql/utilities/typeFromAST.d.ts": { + "version": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922", + "signature": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922" + }, + "../../node_modules/graphql/utilities/valueFromAST.d.ts": { + "version": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b", + "signature": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b" + }, + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": { + "version": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf", + "signature": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf" + }, + "../../node_modules/graphql/utilities/astFromValue.d.ts": { + "version": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae", + "signature": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae" + }, + "../../node_modules/graphql/utilities/coerceInputValue.d.ts": { + "version": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5", + "signature": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5" + }, + "../../node_modules/graphql/utilities/coerceValue.d.ts": { + "version": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197", + "signature": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197" + }, + "../../node_modules/graphql/utilities/isValidJSValue.d.ts": { + "version": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f", + "signature": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f" + }, + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": { + "version": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8", + "signature": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8" + }, + "../../node_modules/graphql/utilities/concatAST.d.ts": { + "version": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9", + "signature": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9" + }, + "../../node_modules/graphql/utilities/separateOperations.d.ts": { + "version": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a", + "signature": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a" + }, + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": { + "version": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c", + "signature": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c" + }, + "../../node_modules/graphql/utilities/typeComparators.d.ts": { + "version": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454", + "signature": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454" + }, + "../../node_modules/graphql/utilities/assertValidName.d.ts": { + "version": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5", + "signature": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5" + }, + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": { + "version": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a", + "signature": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a" + }, + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": { + "version": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b", + "signature": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b" + }, + "../../node_modules/graphql/utilities/index.d.ts": { + "version": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e", + "signature": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e" + }, + "../../node_modules/graphql/index.d.ts": { + "version": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6", + "signature": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6" + }, + "../../node_modules/graphql-request/dist/src/types.d.ts": { + "version": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4", + "signature": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4" + }, + "../../node_modules/graphql-request/dist/src/index.d.ts": { + "version": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786", + "signature": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786" + }, + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": { + "version": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a", + "signature": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a" + }, + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": { + "version": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc", + "signature": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc" + }, + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": { + "version": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644", + "signature": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644" + }, + "../../node_modules/graphql-config/lib/extensions/index.d.ts": { + "version": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41", + "signature": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41" + }, + "../../node_modules/graphql-config/lib/types.d.ts": { + "version": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6", + "signature": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6" + }, + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": { + "version": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca", + "signature": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca" + }, + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": { + "version": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf", + "signature": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf" + }, + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": { + "version": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca", + "signature": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca" + }, + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": { + "version": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411", + "signature": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411" + }, + "../../node_modules/graphql-config/lib/utils.d.ts": { + "version": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4", + "signature": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4" + }, + "../../node_modules/graphql-config/lib/errors.d.ts": { + "version": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9", + "signature": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9" + }, + "../../node_modules/graphql-config/lib/index.d.ts": { + "version": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4", + "signature": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4" + }, + "./src/index.ts": { + "version": "522a600e28a0b23ca8483484fce636240b7ec3fec62f48e6ff40567a74297d85", + "signature": "d11c0f1cdac0931ac05bc373fd17debb769b98d240bf0ce0f8690c46cadcd78a" + }, + "../../node_modules/@types/node/globals.d.ts": { + "version": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed", + "signature": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed" + }, + "../../node_modules/@types/node/assert.d.ts": { + "version": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f", + "signature": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f" + }, + "../../node_modules/@types/node/async_hooks.d.ts": { + "version": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561", + "signature": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561" + }, + "../../node_modules/@types/node/buffer.d.ts": { + "version": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878", + "signature": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878" + }, + "../../node_modules/@types/events/index.d.ts": { + "version": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935", + "signature": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935" + }, + "../../node_modules/@types/node/child_process.d.ts": { + "version": "123366127434e33eade36f3d06653dbc7457397fc93cfdd100776cfc12b6734c", + "signature": "123366127434e33eade36f3d06653dbc7457397fc93cfdd100776cfc12b6734c" + }, + "../../node_modules/@types/node/cluster.d.ts": { + "version": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a", + "signature": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a" + }, + "../../node_modules/@types/node/console.d.ts": { + "version": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d", + "signature": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d" + }, + "../../node_modules/@types/node/constants.d.ts": { + "version": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424", + "signature": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424" + }, + "../../node_modules/@types/node/crypto.d.ts": { + "version": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b", + "signature": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b" + }, + "../../node_modules/@types/node/dgram.d.ts": { + "version": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30", + "signature": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30" + }, + "../../node_modules/@types/node/dns.d.ts": { + "version": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c", + "signature": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c" + }, + "../../node_modules/@types/node/domain.d.ts": { + "version": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa", + "signature": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa" + }, + "../../node_modules/@types/node/events.d.ts": { + "version": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c", + "signature": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c" + }, + "../../node_modules/@types/node/fs.d.ts": { + "version": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882", + "signature": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882" + }, + "../../node_modules/@types/node/http.d.ts": { + "version": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36", + "signature": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36" + }, + "../../node_modules/@types/node/http2.d.ts": { + "version": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d", + "signature": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d" + }, + "../../node_modules/@types/node/https.d.ts": { + "version": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6", + "signature": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6" + }, + "../../node_modules/@types/node/inspector.d.ts": { + "version": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c", + "signature": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c" + }, + "../../node_modules/@types/node/module.d.ts": { + "version": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66", + "signature": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66" + }, + "../../node_modules/@types/node/net.d.ts": { + "version": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4", + "signature": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4" + }, + "../../node_modules/@types/node/os.d.ts": { + "version": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486", + "signature": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486" + }, + "../../node_modules/@types/node/path.d.ts": { + "version": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36", + "signature": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36" + }, + "../../node_modules/@types/node/perf_hooks.d.ts": { + "version": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f", + "signature": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f" + }, + "../../node_modules/@types/node/process.d.ts": { + "version": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389", + "signature": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389" + }, + "../../node_modules/@types/node/punycode.d.ts": { + "version": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1", + "signature": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1" + }, + "../../node_modules/@types/node/querystring.d.ts": { + "version": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e", + "signature": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e" + }, + "../../node_modules/@types/node/readline.d.ts": { + "version": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24", + "signature": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24" + }, + "../../node_modules/@types/node/repl.d.ts": { + "version": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157", + "signature": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157" + }, + "../../node_modules/@types/node/stream.d.ts": { + "version": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd", + "signature": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd" + }, + "../../node_modules/@types/node/string_decoder.d.ts": { + "version": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432", + "signature": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432" + }, + "../../node_modules/@types/node/timers.d.ts": { + "version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9", + "signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9" + }, + "../../node_modules/@types/node/tls.d.ts": { + "version": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a", + "signature": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a" + }, + "../../node_modules/@types/node/trace_events.d.ts": { + "version": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662", + "signature": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662" + }, + "../../node_modules/@types/node/tty.d.ts": { + "version": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007", + "signature": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007" + }, + "../../node_modules/@types/node/url.d.ts": { + "version": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7", + "signature": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7" + }, + "../../node_modules/@types/node/util.d.ts": { + "version": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12", + "signature": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12" + }, + "../../node_modules/@types/node/v8.d.ts": { + "version": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725", + "signature": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725" + }, + "../../node_modules/@types/node/vm.d.ts": { + "version": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562", + "signature": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562" + }, + "../../node_modules/@types/node/worker_threads.d.ts": { + "version": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb", + "signature": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb" + }, + "../../node_modules/@types/node/zlib.d.ts": { + "version": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b", + "signature": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b" + }, + "../../node_modules/@types/node/base.d.ts": { + "version": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce", + "signature": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce" + }, + "../../node_modules/@types/node/ts3.2/util.d.ts": { + "version": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c", + "signature": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c" + }, + "../../node_modules/@types/node/ts3.2/globals.d.ts": { + "version": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1", + "signature": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1" + }, + "../../node_modules/@types/node/ts3.2/index.d.ts": { + "version": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c", + "signature": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c" + }, + "../../node_modules/@types/jest-diff/index.d.ts": { + "version": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06", + "signature": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06" + }, + "../../node_modules/jest-diff/build/types.d.ts": { + "version": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7", + "signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7" + }, + "../../node_modules/jest-diff/build/index.d.ts": { + "version": "b2c5ded6320c45c5d3e1c481c5d2808adf24dd1a59ffc944b72a418e95da5b17", + "signature": "b2c5ded6320c45c5d3e1c481c5d2808adf24dd1a59ffc944b72a418e95da5b17" + }, + "../../node_modules/@types/jest/index.d.ts": { + "version": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b", + "signature": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b" + } + }, + "options": { + "composite": true, + "target": 99, + "module": 99, + "moduleResolution": 2, + "esModuleInterop": true, + "sourceMap": true, + "declaration": true, + "declarationMap": true, + "removeComments": true, + "strict": true, + "noImplicitAny": true, + "noImplicitReturns": false, + "noFallthroughCasesInSwitch": true, + "noUnusedParameters": true, + "noUnusedLocals": true, + "forceConsistentCasingInFileNames": true, + "lib": [ + "lib.dom.d.ts", + "lib.es2017.d.ts", + "lib.es2018.asynciterable.d.ts" + ], + "types": [ + "node", + "jest" + ], + "baseUrl": "../..", + "paths": { + "graphql-language-*": [ + "graphql-language-*" + ] + }, + "rootDir": "./src", + "outDir": "./dist", + "configFilePath": "./tsconfig.json" + }, + "referencedMap": { + "../../node_modules/typescript/lib/lib.es5.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.dom.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/version.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/tsutils/Maybe.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/source.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/tokenKind.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/ast.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/Path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/definition.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/directiveLocation.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/directives.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/schema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/location.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/GraphQLError.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/locatedError.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/execute.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/graphql.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/scalars.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/introspection.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/scalars.d.ts", + "../../node_modules/graphql/type/introspection.d.ts", + "../../node_modules/graphql/type/validate.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printLocation.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/kinds.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/syntaxError.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/formatError.d.ts": [ + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/index.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/syntaxError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/error/formatError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/lexer.d.ts": [ + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/parser.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printer.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/visitor.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/predicates.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/index.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/language/printLocation.d.ts", + "../../node_modules/graphql/language/kinds.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/printer.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/predicates.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/values.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/execution/values.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/subscribe.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/index.d.ts": [ + "../../node_modules/graphql/subscription/subscribe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/ValidationContext.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/specifiedRules.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/index.d.ts": [ + "../../node_modules/graphql/validation/validate.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/specifiedRules.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/blockString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/blockString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/extendSchema.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/astFromValue.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceValue.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/concatAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/separateOperations.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeComparators.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/assertValidName.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/index.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/utilities/getOperationAST.d.ts", + "../../node_modules/graphql/utilities/getOperationRootType.d.ts", + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", + "../../node_modules/graphql/utilities/buildClientSchema.d.ts", + "../../node_modules/graphql/utilities/buildASTSchema.d.ts", + "../../node_modules/graphql/utilities/extendSchema.d.ts", + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", + "../../node_modules/graphql/utilities/schemaPrinter.d.ts", + "../../node_modules/graphql/utilities/typeFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", + "../../node_modules/graphql/utilities/astFromValue.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/utilities/coerceInputValue.d.ts", + "../../node_modules/graphql/utilities/coerceValue.d.ts", + "../../node_modules/graphql/utilities/isValidJSValue.d.ts", + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", + "../../node_modules/graphql/utilities/concatAST.d.ts", + "../../node_modules/graphql/utilities/separateOperations.d.ts", + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", + "../../node_modules/graphql/utilities/typeComparators.d.ts", + "../../node_modules/graphql/utilities/assertValidName.d.ts", + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/index.d.ts": [ + "../../node_modules/graphql/version.d.ts", + "../../node_modules/graphql/graphql.d.ts", + "../../node_modules/graphql/type/index.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/execution/index.d.ts", + "../../node_modules/graphql/subscription/index.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/utilities/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/index.d.ts": [ + "../../node_modules/graphql-request/dist/src/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ + "../../node_modules/graphql-request/dist/src/index.d.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/types.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/utils.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/errors.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/index.d.ts": [ + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", + "../../node_modules/graphql-config/lib/utils.d.ts", + "../../node_modules/graphql-config/lib/errors.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/index.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql-config/lib/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/globals.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/assert.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/async_hooks.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/buffer.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/events/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/child_process.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/cluster.d.ts": [ + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/console.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/constants.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/crypto.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dgram.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dns.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/domain.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/fs.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http2.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/https.d.ts": [ + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/inspector.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/module.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/net.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/os.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/perf_hooks.d.ts": [ + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/process.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/punycode.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/querystring.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/readline.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/repl.d.ts": [ + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/stream.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/string_decoder.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/timers.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tls.d.ts": [ + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/trace_events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tty.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/url.d.ts": [ + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/util.d.ts": [ + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/v8.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/vm.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/worker_threads.d.ts": [ + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/zlib.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/base.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/assert.d.ts", + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/buffer.d.ts", + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/cluster.d.ts", + "../../node_modules/@types/node/console.d.ts", + "../../node_modules/@types/node/constants.d.ts", + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dgram.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/domain.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/http2.d.ts", + "../../node_modules/@types/node/https.d.ts", + "../../node_modules/@types/node/inspector.d.ts", + "../../node_modules/@types/node/module.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/os.d.ts", + "../../node_modules/@types/node/path.d.ts", + "../../node_modules/@types/node/perf_hooks.d.ts", + "../../node_modules/@types/node/process.d.ts", + "../../node_modules/@types/node/punycode.d.ts", + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/repl.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/string_decoder.d.ts", + "../../node_modules/@types/node/timers.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/trace_events.d.ts", + "../../node_modules/@types/node/tty.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/v8.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/worker_threads.d.ts", + "../../node_modules/@types/node/zlib.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/util.d.ts": [ + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/globals.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/index.d.ts": [ + "../../node_modules/@types/node/base.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts", + "../../node_modules/@types/node/ts3.2/globals.d.ts", + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/jest-diff/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/index.d.ts": [ + "../../node_modules/jest-diff/build/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/jest/index.d.ts": [ + "../../node_modules/jest-diff/build/index.d.ts", + "../../node_modules/@types/jest-diff/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ] + }, + "exportedModulesMap": { + "../../node_modules/typescript/lib/lib.es5.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.dom.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/version.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/index.d.ts": [ + "../../node_modules/graphql/version.d.ts", + "../../node_modules/graphql/graphql.d.ts", + "../../node_modules/graphql/type/index.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/execution/index.d.ts", + "../../node_modules/graphql/subscription/index.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/utilities/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/index.ts": [ + "../../node_modules/graphql-config/lib/index.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/validation/index.d.ts" + ], + "../../node_modules/graphql-config/lib/utils.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/index.d.ts": [ + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", + "../../node_modules/graphql-config/lib/utils.d.ts", + "../../node_modules/graphql-config/lib/errors.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/types.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ + "../../node_modules/graphql-request/dist/src/index.d.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/tsutils/Maybe.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/astFromValue.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/index.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/utilities/getOperationAST.d.ts", + "../../node_modules/graphql/utilities/getOperationRootType.d.ts", + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", + "../../node_modules/graphql/utilities/buildClientSchema.d.ts", + "../../node_modules/graphql/utilities/buildASTSchema.d.ts", + "../../node_modules/graphql/utilities/extendSchema.d.ts", + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", + "../../node_modules/graphql/utilities/schemaPrinter.d.ts", + "../../node_modules/graphql/utilities/typeFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", + "../../node_modules/graphql/utilities/astFromValue.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/utilities/coerceInputValue.d.ts", + "../../node_modules/graphql/utilities/coerceValue.d.ts", + "../../node_modules/graphql/utilities/isValidJSValue.d.ts", + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", + "../../node_modules/graphql/utilities/concatAST.d.ts", + "../../node_modules/graphql/utilities/separateOperations.d.ts", + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", + "../../node_modules/graphql/utilities/typeComparators.d.ts", + "../../node_modules/graphql/utilities/assertValidName.d.ts", + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/blockString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/index.d.ts": [ + "../../node_modules/graphql/validation/validate.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/specifiedRules.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/specifiedRules.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/ValidationContext.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/subscribe.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/index.d.ts": [ + "../../node_modules/graphql/subscription/subscribe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/values.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/execution/values.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/visitor.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/index.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/language/printLocation.d.ts", + "../../node_modules/graphql/language/kinds.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/printer.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/predicates.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/graphql.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/execute.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/GraphQLError.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/assertValidName.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceValue.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/index.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/syntaxError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/error/formatError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/lexer.d.ts": [ + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/parser.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/formatError.d.ts": [ + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/syntaxError.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/scalars.d.ts", + "../../node_modules/graphql/type/introspection.d.ts", + "../../node_modules/graphql/type/validate.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/locatedError.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/schema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeComparators.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/extendSchema.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/definition.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/introspection.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/scalars.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/directives.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/source.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printLocation.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/location.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/ast.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/separateOperations.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/concatAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/predicates.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printer.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/tokenKind.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/Path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/directiveLocation.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/kinds.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/blockString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/index.d.ts": [ + "../../node_modules/graphql-request/dist/src/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/errors.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/globals.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/assert.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/base.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/assert.d.ts", + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/buffer.d.ts", + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/cluster.d.ts", + "../../node_modules/@types/node/console.d.ts", + "../../node_modules/@types/node/constants.d.ts", + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dgram.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/domain.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/http2.d.ts", + "../../node_modules/@types/node/https.d.ts", + "../../node_modules/@types/node/inspector.d.ts", + "../../node_modules/@types/node/module.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/os.d.ts", + "../../node_modules/@types/node/path.d.ts", + "../../node_modules/@types/node/perf_hooks.d.ts", + "../../node_modules/@types/node/process.d.ts", + "../../node_modules/@types/node/punycode.d.ts", + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/repl.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/string_decoder.d.ts", + "../../node_modules/@types/node/timers.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/trace_events.d.ts", + "../../node_modules/@types/node/tty.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/v8.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/worker_threads.d.ts", + "../../node_modules/@types/node/zlib.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/index.d.ts": [ + "../../node_modules/@types/node/base.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts", + "../../node_modules/@types/node/ts3.2/globals.d.ts", + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/node/async_hooks.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/perf_hooks.d.ts": [ + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/buffer.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/events/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/child_process.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/cluster.d.ts": [ + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/console.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/constants.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/crypto.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tls.d.ts": [ + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/https.d.ts": [ + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http2.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dgram.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dns.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/net.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tty.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/domain.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/worker_threads.d.ts": [ + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/stream.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/zlib.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/v8.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/readline.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/repl.d.ts": [ + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/fs.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/inspector.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/module.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/os.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/process.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/punycode.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/querystring.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/url.d.ts": [ + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/string_decoder.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/timers.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/trace_events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/util.d.ts": [ + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/jest/index.d.ts": [ + "../../node_modules/jest-diff/build/index.d.ts", + "../../node_modules/@types/jest-diff/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/index.d.ts": [ + "../../node_modules/jest-diff/build/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/jest-diff/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/globals.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/util.d.ts": [ + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/node/vm.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ] + }, + "semanticDiagnosticsPerFile": [ + "../../node_modules/graphql/version.d.ts", + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/graphql.d.ts", + "../../node_modules/graphql/type/scalars.d.ts", + "../../node_modules/graphql/type/introspection.d.ts", + "../../node_modules/graphql/type/validate.d.ts", + "../../node_modules/graphql/type/index.d.ts", + "../../node_modules/graphql/language/printLocation.d.ts", + "../../node_modules/graphql/language/kinds.d.ts", + "../../node_modules/graphql/error/syntaxError.d.ts", + "../../node_modules/graphql/error/formatError.d.ts", + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/printer.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/predicates.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/execution/values.d.ts", + "../../node_modules/graphql/execution/index.d.ts", + "../../node_modules/graphql/subscription/subscribe.d.ts", + "../../node_modules/graphql/subscription/index.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/validate.d.ts", + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", + "../../node_modules/graphql/validation/specifiedRules.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/utilities/getOperationAST.d.ts", + "../../node_modules/graphql/utilities/getOperationRootType.d.ts", + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", + "../../node_modules/graphql/utilities/buildClientSchema.d.ts", + "../../node_modules/graphql/language/blockString.d.ts", + "../../node_modules/graphql/utilities/buildASTSchema.d.ts", + "../../node_modules/graphql/utilities/extendSchema.d.ts", + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", + "../../node_modules/graphql/utilities/schemaPrinter.d.ts", + "../../node_modules/graphql/utilities/typeFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", + "../../node_modules/graphql/utilities/astFromValue.d.ts", + "../../node_modules/graphql/utilities/coerceInputValue.d.ts", + "../../node_modules/graphql/utilities/coerceValue.d.ts", + "../../node_modules/graphql/utilities/isValidJSValue.d.ts", + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", + "../../node_modules/graphql/utilities/concatAST.d.ts", + "../../node_modules/graphql/utilities/separateOperations.d.ts", + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", + "../../node_modules/graphql/utilities/typeComparators.d.ts", + "../../node_modules/graphql/utilities/assertValidName.d.ts", + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", + "../../node_modules/graphql/utilities/index.d.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-request/dist/src/types.d.ts", + "../../node_modules/graphql-request/dist/src/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", + "../../node_modules/graphql-config/lib/utils.d.ts", + "../../node_modules/graphql-config/lib/errors.d.ts", + "../../node_modules/graphql-config/lib/index.d.ts", + "./src/index.ts", + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/assert.d.ts", + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/buffer.d.ts", + "../../node_modules/@types/events/index.d.ts", + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/cluster.d.ts", + "../../node_modules/@types/node/console.d.ts", + "../../node_modules/@types/node/constants.d.ts", + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dgram.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/domain.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/http2.d.ts", + "../../node_modules/@types/node/https.d.ts", + "../../node_modules/@types/node/inspector.d.ts", + "../../node_modules/@types/node/module.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/os.d.ts", + "../../node_modules/@types/node/path.d.ts", + "../../node_modules/@types/node/perf_hooks.d.ts", + "../../node_modules/@types/node/process.d.ts", + "../../node_modules/@types/node/punycode.d.ts", + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/repl.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/string_decoder.d.ts", + "../../node_modules/@types/node/timers.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/trace_events.d.ts", + "../../node_modules/@types/node/tty.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/v8.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/worker_threads.d.ts", + "../../node_modules/@types/node/zlib.d.ts", + "../../node_modules/@types/node/base.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts", + "../../node_modules/@types/node/ts3.2/globals.d.ts", + "../../node_modules/@types/node/ts3.2/index.d.ts", + "../../node_modules/@types/jest-diff/index.d.ts", + "../../node_modules/jest-diff/build/types.d.ts", + "../../node_modules/jest-diff/build/index.d.ts", + "../../node_modules/@types/jest/index.d.ts", + "../../node_modules/typescript/lib/lib.es2015.d.ts", + "../../node_modules/typescript/lib/lib.es2016.d.ts", + "../../node_modules/typescript/lib/lib.es2017.d.ts", + "../../node_modules/typescript/lib/lib.es2018.d.ts", + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts", + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts", + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts", + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts", + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts", + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts", + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts", + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts", + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts", + "../../node_modules/typescript/lib/lib.es2017.string.d.ts", + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts", + "../../node_modules/typescript/lib/lib.es2017.object.d.ts", + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts", + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts", + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts", + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts", + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts", + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts", + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts", + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts", + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts", + "../../node_modules/typescript/lib/lib.es2015.core.d.ts", + "../../node_modules/typescript/lib/lib.dom.d.ts", + "../../node_modules/typescript/lib/lib.es5.d.ts" + ] + }, + "version": "3.6.3" +} \ No newline at end of file diff --git a/packages/graphql-language-service-utils/package.json b/packages/graphql-language-service-utils/package.json index 85216644dcb..c297f78106f 100644 --- a/packages/graphql-language-service-utils/package.json +++ b/packages/graphql-language-service-utils/package.json @@ -20,6 +20,7 @@ "graphql" ], "main": "dist/index.js", + "types": "src/index.ts", "scripts": { "test": "node ../../resources/runTests.js", "build": "yarn run build-js && yarn run build-flow", diff --git a/packages/graphql-language-service-utils/src/Range.js b/packages/graphql-language-service-utils/src/Range.ts similarity index 74% rename from packages/graphql-language-service-utils/src/Range.js rename to packages/graphql-language-service-utils/src/Range.ts index 6e2b221a631..62b36b85362 100644 --- a/packages/graphql-language-service-utils/src/Range.js +++ b/packages/graphql-language-service-utils/src/Range.ts @@ -5,28 +5,24 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ -import type { Location } from 'graphql/language'; -import type { - Range as RangeInterface, - Position as PositionInterface, -} from 'graphql-language-service-types'; +import { Location } from 'graphql/language'; +import { Range as RangeInterface, Position as PositionInterface } from 'graphql-language-service-types'; export class Range implements RangeInterface { start: PositionInterface; end: PositionInterface; - constructor(start: PositionInterface, end: PositionInterface): void { + constructor(start: PositionInterface, end: PositionInterface) { this.start = start; this.end = end; } - setStart(line: number, character: number): void { + setStart(line: number, character: number) { this.start = new Position(line, character); } - setEnd(line: number, character: number): void { + setEnd(line: number, character: number) { this.end = new Position(line, character); } @@ -38,29 +34,29 @@ export class Range implements RangeInterface { } else { return this.start.line <= position.line && this.end.line >= position.line; } - }; -} + };} + export class Position implements PositionInterface { line: number; character: number; - constructor(line: number, character: number): void { + constructor(line: number, character: number) { this.line = line; this.character = character; } - setLine(line: number): void { + setLine(line: number) { this.line = line; } - setCharacter(character: number): void { + setCharacter(character: number) { this.character = character; } lessThanOrEqualTo = (position: PositionInterface): boolean => - this.line < position.line || - (this.line === position.line && this.character <= position.character); -} + this.line < position.line || + this.line === position.line && this.character <= position.character;} + export function offsetToPosition(text: string, loc: number): Position { const EOL = '\n'; diff --git a/packages/graphql-language-service-utils/src/__tests__/Range-test.js b/packages/graphql-language-service-utils/src/__tests__/Range-test.ts similarity index 91% rename from packages/graphql-language-service-utils/src/__tests__/Range-test.js rename to packages/graphql-language-service-utils/src/__tests__/Range-test.ts index d77fbf3aea4..6db22c75212 100644 --- a/packages/graphql-language-service-utils/src/__tests__/Range-test.js +++ b/packages/graphql-language-service-utils/src/__tests__/Range-test.ts @@ -5,15 +5,23 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ +import { Location } from 'graphql/language'; import { Range, Position, offsetToPosition, locToRange } from '../Range'; const text = `query test { name }`; -const absRange = { start: 15, end: 18 }; // position of 'name' attribute in the test query + +const absRange: Location = { + start: 15, + end: 18, + startToken: null, + endToken: null, + source: null, +}; // position of 'name' attribute in the test query + const offsetRangeStart = new Position(1, 2); const offsetRangeEnd = new Position(1, 5); diff --git a/packages/graphql-language-service-utils/src/__tests__/getASTNodeAtPosition-test.js b/packages/graphql-language-service-utils/src/__tests__/getASTNodeAtPosition-test.ts similarity index 99% rename from packages/graphql-language-service-utils/src/__tests__/getASTNodeAtPosition-test.js rename to packages/graphql-language-service-utils/src/__tests__/getASTNodeAtPosition-test.ts index 1552f959891..1575fe051b5 100644 --- a/packages/graphql-language-service-utils/src/__tests__/getASTNodeAtPosition-test.js +++ b/packages/graphql-language-service-utils/src/__tests__/getASTNodeAtPosition-test.ts @@ -7,7 +7,6 @@ */ import { parse } from 'graphql'; - import { Position } from '../Range'; import { getASTNodeAtPosition, pointToOffset } from '../getASTNodeAtPosition'; diff --git a/packages/graphql-language-service-utils/src/__tests__/validateWithCustomRules-test.js b/packages/graphql-language-service-utils/src/__tests__/validateWithCustomRules-test.ts similarity index 99% rename from packages/graphql-language-service-utils/src/__tests__/validateWithCustomRules-test.js rename to packages/graphql-language-service-utils/src/__tests__/validateWithCustomRules-test.ts index 74bf57b4bc8..ab87f53518e 100644 --- a/packages/graphql-language-service-utils/src/__tests__/validateWithCustomRules-test.js +++ b/packages/graphql-language-service-utils/src/__tests__/validateWithCustomRules-test.ts @@ -36,6 +36,7 @@ describe('validateWithCustomRules', () => { }, }), ]; + const errors = validateWithCustomRules(schema, invalidAST, customRules); expect(errors.length).toEqual(1); expect(errors[0].message).toEqual( @@ -67,6 +68,7 @@ describe('validateWithCustomRules', () => { const astWithArgumentsDirective = parse( 'query { human(id: "1") @arguments(foo: "bar") { name } }', ); + expect( validateWithCustomRules(schema, astWithArgumentsDirective, []), ).toEqual([]); @@ -74,6 +76,7 @@ describe('validateWithCustomRules', () => { const astWithArgumentDefDirective = parse( '{ human(id: "2") { name @argumentDefinitions(arg: "foo") } }', ); + expect( validateWithCustomRules(schema, astWithArgumentDefDirective), ).toEqual([]); diff --git a/packages/graphql-language-service-utils/src/getASTNodeAtPosition.js b/packages/graphql-language-service-utils/src/getASTNodeAtPosition.ts similarity index 89% rename from packages/graphql-language-service-utils/src/getASTNodeAtPosition.js rename to packages/graphql-language-service-utils/src/getASTNodeAtPosition.ts index c1fa2c167dd..2f00a1d4de7 100644 --- a/packages/graphql-language-service-utils/src/getASTNodeAtPosition.js +++ b/packages/graphql-language-service-utils/src/getASTNodeAtPosition.ts @@ -5,10 +5,9 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ -import type { ASTNode } from 'graphql/language'; +import { ASTNode } from 'graphql/language'; import { Position } from './Range'; import { visit } from 'graphql'; @@ -17,9 +16,9 @@ export function getASTNodeAtPosition( query: string, ast: ASTNode, point: Position, -): ?ASTNode { +): ASTNode | null | undefined { const offset = pointToOffset(query, point); - let nodeContainingPosition: ?ASTNode; + let nodeContainingPosition: ASTNode | null | undefined; visit(ast, { enter(node) { if ( @@ -39,6 +38,7 @@ export function getASTNodeAtPosition( } }, }); + return nodeContainingPosition; } diff --git a/packages/graphql-language-service-utils/src/index.js b/packages/graphql-language-service-utils/src/index.ts similarity index 97% rename from packages/graphql-language-service-utils/src/index.js rename to packages/graphql-language-service-utils/src/index.ts index 81b05b8066b..c4bff804519 100644 --- a/packages/graphql-language-service-utils/src/index.js +++ b/packages/graphql-language-service-utils/src/index.ts @@ -5,7 +5,6 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ export { getASTNodeAtPosition, pointToOffset } from './getASTNodeAtPosition'; diff --git a/packages/graphql-language-service-utils/src/validateWithCustomRules.js b/packages/graphql-language-service-utils/src/validateWithCustomRules.ts similarity index 71% rename from packages/graphql-language-service-utils/src/validateWithCustomRules.js rename to packages/graphql-language-service-utils/src/validateWithCustomRules.ts index 38f8b0fbc9d..3aa221cd1c1 100644 --- a/packages/graphql-language-service-utils/src/validateWithCustomRules.js +++ b/packages/graphql-language-service-utils/src/validateWithCustomRules.ts @@ -5,13 +5,12 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ -import type { DocumentNode } from 'graphql/language'; -import type { GraphQLError } from 'graphql/error'; -import type { GraphQLSchema } from 'graphql/type'; -import type { CustomValidationRule } from 'graphql-language-service-types'; +import { DocumentNode, TypeDefinitionNode } from 'graphql/language'; +import { GraphQLError } from 'graphql/error'; +import { GraphQLSchema } from 'graphql/type'; +import { CustomValidationRule } from 'graphql-language-service-types'; import { specifiedRules, TypeInfo, validate } from 'graphql'; @@ -40,16 +39,18 @@ export function validateWithCustomRules( } = require('graphql/validation/rules/KnownFragmentNames'); rulesToSkip.push(KnownFragmentNames); } + const rules = specifiedRules.filter( rule => !rulesToSkip.some(r => r === rule), ); const typeInfo = new TypeInfo(schema); + if (customRules) { Array.prototype.push.apply(rules, customRules); } - const errors: $ReadOnlyArray = validate( + const errors: Readonly> = validate( schema, ast, rules, @@ -61,17 +62,14 @@ export function validateWithCustomRules( if (error.message.indexOf('Unknown directive') === -1) { return true; } - return !( - (error.nodes && - error.nodes[0] && - error.nodes[0].name && - error.nodes[0].name.value === 'arguments') || - (error.nodes && - error.nodes[0] && - error.nodes[0].name && - error.nodes[0].name.value && - error.nodes[0].name.value === 'argumentDefinitions') - ); + if (error.nodes && error.nodes[0] as TypeDefinitionNode) { + const node = error.nodes[0]; + return !( + node.name && + node.name.value === 'arguments' || + node.name.value === 'argumentDefinitions' + ); + } }); } diff --git a/packages/graphql-language-service-utils/tsconfig.json b/packages/graphql-language-service-utils/tsconfig.json new file mode 100644 index 00000000000..dd01d525f5a --- /dev/null +++ b/packages/graphql-language-service-utils/tsconfig.json @@ -0,0 +1,7 @@ +{ + "extends": "../../tsconfig.base", + "compilerOptions": { + "rootDir": "./src", + "outDir": "./dist", + } +} diff --git a/packages/graphql-language-service-utils/tsconfig.tsbuildinfo b/packages/graphql-language-service-utils/tsconfig.tsbuildinfo new file mode 100644 index 00000000000..a78147a0fb8 --- /dev/null +++ b/packages/graphql-language-service-utils/tsconfig.tsbuildinfo @@ -0,0 +1,3412 @@ +{ + "program": { + "fileInfos": { + "../../node_modules/typescript/lib/lib.es5.d.ts": { + "version": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1", + "signature": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1" + }, + "../../node_modules/typescript/lib/lib.es2015.d.ts": { + "version": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96", + "signature": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96" + }, + "../../node_modules/typescript/lib/lib.es2016.d.ts": { + "version": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1", + "signature": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1" + }, + "../../node_modules/typescript/lib/lib.es2017.d.ts": { + "version": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743", + "signature": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743" + }, + "../../node_modules/typescript/lib/lib.es2018.d.ts": { + "version": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091", + "signature": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091" + }, + "../../node_modules/typescript/lib/lib.dom.d.ts": { + "version": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f", + "signature": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f" + }, + "../../node_modules/typescript/lib/lib.es2015.core.d.ts": { + "version": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f", + "signature": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f" + }, + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": { + "version": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0", + "signature": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0" + }, + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": { + "version": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122", + "signature": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122" + }, + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": { + "version": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210", + "signature": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210" + }, + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": { + "version": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2", + "signature": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2" + }, + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": { + "version": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe", + "signature": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe" + }, + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": { + "version": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976", + "signature": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976" + }, + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": { + "version": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230", + "signature": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230" + }, + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": { + "version": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303", + "signature": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303" + }, + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": { + "version": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0", + "signature": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0" + }, + "../../node_modules/typescript/lib/lib.es2017.object.d.ts": { + "version": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4", + "signature": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4" + }, + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": { + "version": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f", + "signature": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f" + }, + "../../node_modules/typescript/lib/lib.es2017.string.d.ts": { + "version": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c", + "signature": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c" + }, + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": { + "version": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6", + "signature": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6" + }, + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": { + "version": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46", + "signature": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46" + }, + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": { + "version": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0", + "signature": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0" + }, + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": { + "version": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10", + "signature": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10" + }, + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": { + "version": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0", + "signature": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0" + }, + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": { + "version": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62", + "signature": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62" + }, + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": { + "version": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8", + "signature": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8" + }, + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": { + "version": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8", + "signature": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8" + }, + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": { + "version": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8", + "signature": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8" + }, + "../../node_modules/graphql/language/source.d.ts": { + "version": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd", + "signature": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd" + }, + "../../node_modules/graphql/language/location.d.ts": { + "version": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160", + "signature": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160" + }, + "../../node_modules/graphql/language/tokenKind.d.ts": { + "version": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78", + "signature": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78" + }, + "../../node_modules/graphql/language/ast.d.ts": { + "version": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937", + "signature": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937" + }, + "../../node_modules/graphql/language/printLocation.d.ts": { + "version": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1", + "signature": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1" + }, + "../../node_modules/graphql/language/kinds.d.ts": { + "version": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293", + "signature": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293" + }, + "../../node_modules/graphql/tsutils/Maybe.d.ts": { + "version": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392", + "signature": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392" + }, + "../../node_modules/graphql/error/GraphQLError.d.ts": { + "version": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b", + "signature": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b" + }, + "../../node_modules/graphql/error/syntaxError.d.ts": { + "version": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b", + "signature": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b" + }, + "../../node_modules/graphql/error/locatedError.d.ts": { + "version": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb", + "signature": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb" + }, + "../../node_modules/graphql/error/formatError.d.ts": { + "version": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23", + "signature": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23" + }, + "../../node_modules/graphql/error/index.d.ts": { + "version": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0", + "signature": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0" + }, + "../../node_modules/graphql/language/lexer.d.ts": { + "version": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023", + "signature": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023" + }, + "../../node_modules/graphql/language/parser.d.ts": { + "version": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e", + "signature": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e" + }, + "../../node_modules/graphql/language/printer.d.ts": { + "version": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41", + "signature": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41" + }, + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": { + "version": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717", + "signature": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717" + }, + "../../node_modules/graphql/jsutils/Path.d.ts": { + "version": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b", + "signature": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b" + }, + "../../node_modules/graphql/type/definition.d.ts": { + "version": "7fab802d7b9d8067b0903ce65934e80325a621304831a2b9a60d7630134c12e4", + "signature": "7fab802d7b9d8067b0903ce65934e80325a621304831a2b9a60d7630134c12e4" + }, + "../../node_modules/graphql/language/directiveLocation.d.ts": { + "version": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b", + "signature": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b" + }, + "../../node_modules/graphql/type/directives.d.ts": { + "version": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d", + "signature": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d" + }, + "../../node_modules/graphql/type/schema.d.ts": { + "version": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491", + "signature": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491" + }, + "../../node_modules/graphql/utilities/TypeInfo.d.ts": { + "version": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4", + "signature": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4" + }, + "../../node_modules/graphql/language/visitor.d.ts": { + "version": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9", + "signature": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9" + }, + "../../node_modules/graphql/language/predicates.d.ts": { + "version": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271", + "signature": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271" + }, + "../../node_modules/graphql/language/index.d.ts": { + "version": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420", + "signature": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420" + }, + "../../node_modules/graphql/version.d.ts": { + "version": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2", + "signature": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2" + }, + "../../node_modules/graphql/execution/execute.d.ts": { + "version": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4", + "signature": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4" + }, + "../../node_modules/graphql/graphql.d.ts": { + "version": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca", + "signature": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca" + }, + "../../node_modules/graphql/type/scalars.d.ts": { + "version": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11", + "signature": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11" + }, + "../../node_modules/graphql/type/introspection.d.ts": { + "version": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870", + "signature": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870" + }, + "../../node_modules/graphql/type/validate.d.ts": { + "version": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30", + "signature": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30" + }, + "../../node_modules/graphql/type/index.d.ts": { + "version": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62", + "signature": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62" + }, + "../../node_modules/graphql/execution/values.d.ts": { + "version": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5", + "signature": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5" + }, + "../../node_modules/graphql/execution/index.d.ts": { + "version": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24", + "signature": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24" + }, + "../../node_modules/graphql/subscription/subscribe.d.ts": { + "version": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22", + "signature": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22" + }, + "../../node_modules/graphql/subscription/index.d.ts": { + "version": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3", + "signature": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3" + }, + "../../node_modules/graphql/validation/ValidationContext.d.ts": { + "version": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14", + "signature": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14" + }, + "../../node_modules/graphql/validation/validate.d.ts": { + "version": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95", + "signature": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95" + }, + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": { + "version": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163", + "signature": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163" + }, + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": { + "version": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152", + "signature": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152" + }, + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": { + "version": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb", + "signature": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb" + }, + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": { + "version": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e", + "signature": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e" + }, + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": { + "version": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6", + "signature": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6" + }, + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": { + "version": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9", + "signature": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9" + }, + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": { + "version": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9", + "signature": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9" + }, + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": { + "version": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5", + "signature": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5" + }, + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": { + "version": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae", + "signature": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae" + }, + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": { + "version": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a", + "signature": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a" + }, + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": { + "version": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f", + "signature": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f" + }, + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": { + "version": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222", + "signature": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222" + }, + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": { + "version": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce", + "signature": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce" + }, + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": { + "version": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294", + "signature": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294" + }, + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": { + "version": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc", + "signature": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc" + }, + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": { + "version": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f", + "signature": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f" + }, + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": { + "version": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014", + "signature": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014" + }, + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": { + "version": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae", + "signature": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae" + }, + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": { + "version": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5", + "signature": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5" + }, + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": { + "version": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73", + "signature": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73" + }, + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": { + "version": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c", + "signature": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c" + }, + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": { + "version": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b", + "signature": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b" + }, + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": { + "version": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1", + "signature": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1" + }, + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": { + "version": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2", + "signature": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2" + }, + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": { + "version": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8", + "signature": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8" + }, + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": { + "version": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c", + "signature": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c" + }, + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": { + "version": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e", + "signature": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e" + }, + "../../node_modules/graphql/validation/specifiedRules.d.ts": { + "version": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d", + "signature": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d" + }, + "../../node_modules/graphql/validation/index.d.ts": { + "version": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423", + "signature": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423" + }, + "../../node_modules/graphql/utilities/introspectionQuery.d.ts": { + "version": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597", + "signature": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597" + }, + "../../node_modules/graphql/utilities/getOperationAST.d.ts": { + "version": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8", + "signature": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8" + }, + "../../node_modules/graphql/utilities/getOperationRootType.d.ts": { + "version": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc", + "signature": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc" + }, + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": { + "version": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d", + "signature": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d" + }, + "../../node_modules/graphql/utilities/buildClientSchema.d.ts": { + "version": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820", + "signature": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820" + }, + "../../node_modules/graphql/language/blockString.d.ts": { + "version": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86", + "signature": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86" + }, + "../../node_modules/graphql/utilities/buildASTSchema.d.ts": { + "version": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7", + "signature": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7" + }, + "../../node_modules/graphql/utilities/extendSchema.d.ts": { + "version": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b", + "signature": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b" + }, + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": { + "version": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896", + "signature": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896" + }, + "../../node_modules/graphql/utilities/schemaPrinter.d.ts": { + "version": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff", + "signature": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff" + }, + "../../node_modules/graphql/utilities/typeFromAST.d.ts": { + "version": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922", + "signature": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922" + }, + "../../node_modules/graphql/utilities/valueFromAST.d.ts": { + "version": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b", + "signature": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b" + }, + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": { + "version": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf", + "signature": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf" + }, + "../../node_modules/graphql/utilities/astFromValue.d.ts": { + "version": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae", + "signature": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae" + }, + "../../node_modules/graphql/utilities/coerceInputValue.d.ts": { + "version": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5", + "signature": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5" + }, + "../../node_modules/graphql/utilities/coerceValue.d.ts": { + "version": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197", + "signature": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197" + }, + "../../node_modules/graphql/utilities/isValidJSValue.d.ts": { + "version": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f", + "signature": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f" + }, + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": { + "version": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8", + "signature": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8" + }, + "../../node_modules/graphql/utilities/concatAST.d.ts": { + "version": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9", + "signature": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9" + }, + "../../node_modules/graphql/utilities/separateOperations.d.ts": { + "version": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a", + "signature": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a" + }, + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": { + "version": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c", + "signature": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c" + }, + "../../node_modules/graphql/utilities/typeComparators.d.ts": { + "version": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454", + "signature": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454" + }, + "../../node_modules/graphql/utilities/assertValidName.d.ts": { + "version": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5", + "signature": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5" + }, + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": { + "version": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a", + "signature": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a" + }, + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": { + "version": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b", + "signature": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b" + }, + "../../node_modules/graphql/utilities/index.d.ts": { + "version": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e", + "signature": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e" + }, + "../../node_modules/graphql/index.d.ts": { + "version": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6", + "signature": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6" + }, + "../../node_modules/graphql-request/dist/src/types.d.ts": { + "version": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4", + "signature": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4" + }, + "../../node_modules/graphql-request/dist/src/index.d.ts": { + "version": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786", + "signature": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786" + }, + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": { + "version": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a", + "signature": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a" + }, + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": { + "version": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc", + "signature": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc" + }, + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": { + "version": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644", + "signature": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644" + }, + "../../node_modules/graphql-config/lib/extensions/index.d.ts": { + "version": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41", + "signature": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41" + }, + "../../node_modules/graphql-config/lib/types.d.ts": { + "version": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6", + "signature": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6" + }, + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": { + "version": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca", + "signature": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca" + }, + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": { + "version": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf", + "signature": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf" + }, + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": { + "version": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca", + "signature": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca" + }, + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": { + "version": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411", + "signature": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411" + }, + "../../node_modules/graphql-config/lib/utils.d.ts": { + "version": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4", + "signature": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4" + }, + "../../node_modules/graphql-config/lib/errors.d.ts": { + "version": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9", + "signature": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9" + }, + "../../node_modules/graphql-config/lib/index.d.ts": { + "version": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4", + "signature": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4" + }, + "../graphql-language-service-types/src/index.ts": { + "version": "522a600e28a0b23ca8483484fce636240b7ec3fec62f48e6ff40567a74297d85" + }, + "./src/Range.ts": { + "version": "58926b36007f993a2e6adb291d57f992bccd60f9b934bcb4dda254e6937a3e36", + "signature": "b4ef21004c93a41723a6c9995be6313e19f86a1b81a4514997ef7e6288083d6f" + }, + "./src/getASTNodeAtPosition.ts": { + "version": "7495e8a9bd7eb6c386230570388eec0c6cf64779d2f52219a2c09a41e5db2e2a", + "signature": "70213b900fee15666c9e73d9addf752be6e6a1166232a92b468b38d34d149ab2" + }, + "./src/validateWithCustomRules.ts": { + "version": "59c17d228f43716a438348d3dfd2085ecc1393c481d9ed38d2ffed7867516a9b", + "signature": "1913549dc022aa8f541dddae6df0c233f6c7b1a7c5e22f1f19161a9a7462ddd6" + }, + "./src/index.ts": { + "version": "b40b3ad0dc655bbc0f033315f9b1ab4a543f148759f82f18675b9cc5001e6b20", + "signature": "063d84a46273ee23f748cc8bef46dbae383368663aea4321da843272eece35f1" + }, + "../../node_modules/@types/node/globals.d.ts": { + "version": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed", + "signature": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed" + }, + "../../node_modules/@types/node/assert.d.ts": { + "version": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f", + "signature": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f" + }, + "../../node_modules/@types/node/async_hooks.d.ts": { + "version": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561", + "signature": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561" + }, + "../../node_modules/@types/node/buffer.d.ts": { + "version": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878", + "signature": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878" + }, + "../../node_modules/@types/events/index.d.ts": { + "version": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935", + "signature": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935" + }, + "../../node_modules/@types/node/child_process.d.ts": { + "version": "123366127434e33eade36f3d06653dbc7457397fc93cfdd100776cfc12b6734c", + "signature": "123366127434e33eade36f3d06653dbc7457397fc93cfdd100776cfc12b6734c" + }, + "../../node_modules/@types/node/cluster.d.ts": { + "version": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a", + "signature": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a" + }, + "../../node_modules/@types/node/console.d.ts": { + "version": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d", + "signature": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d" + }, + "../../node_modules/@types/node/constants.d.ts": { + "version": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424", + "signature": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424" + }, + "../../node_modules/@types/node/crypto.d.ts": { + "version": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b", + "signature": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b" + }, + "../../node_modules/@types/node/dgram.d.ts": { + "version": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30", + "signature": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30" + }, + "../../node_modules/@types/node/dns.d.ts": { + "version": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c", + "signature": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c" + }, + "../../node_modules/@types/node/domain.d.ts": { + "version": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa", + "signature": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa" + }, + "../../node_modules/@types/node/events.d.ts": { + "version": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c", + "signature": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c" + }, + "../../node_modules/@types/node/fs.d.ts": { + "version": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882", + "signature": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882" + }, + "../../node_modules/@types/node/http.d.ts": { + "version": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36", + "signature": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36" + }, + "../../node_modules/@types/node/http2.d.ts": { + "version": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d", + "signature": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d" + }, + "../../node_modules/@types/node/https.d.ts": { + "version": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6", + "signature": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6" + }, + "../../node_modules/@types/node/inspector.d.ts": { + "version": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c", + "signature": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c" + }, + "../../node_modules/@types/node/module.d.ts": { + "version": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66", + "signature": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66" + }, + "../../node_modules/@types/node/net.d.ts": { + "version": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4", + "signature": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4" + }, + "../../node_modules/@types/node/os.d.ts": { + "version": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486", + "signature": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486" + }, + "../../node_modules/@types/node/path.d.ts": { + "version": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36", + "signature": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36" + }, + "../../node_modules/@types/node/perf_hooks.d.ts": { + "version": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f", + "signature": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f" + }, + "../../node_modules/@types/node/process.d.ts": { + "version": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389", + "signature": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389" + }, + "../../node_modules/@types/node/punycode.d.ts": { + "version": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1", + "signature": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1" + }, + "../../node_modules/@types/node/querystring.d.ts": { + "version": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e", + "signature": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e" + }, + "../../node_modules/@types/node/readline.d.ts": { + "version": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24", + "signature": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24" + }, + "../../node_modules/@types/node/repl.d.ts": { + "version": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157", + "signature": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157" + }, + "../../node_modules/@types/node/stream.d.ts": { + "version": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd", + "signature": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd" + }, + "../../node_modules/@types/node/string_decoder.d.ts": { + "version": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432", + "signature": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432" + }, + "../../node_modules/@types/node/timers.d.ts": { + "version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9", + "signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9" + }, + "../../node_modules/@types/node/tls.d.ts": { + "version": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a", + "signature": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a" + }, + "../../node_modules/@types/node/trace_events.d.ts": { + "version": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662", + "signature": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662" + }, + "../../node_modules/@types/node/tty.d.ts": { + "version": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007", + "signature": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007" + }, + "../../node_modules/@types/node/url.d.ts": { + "version": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7", + "signature": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7" + }, + "../../node_modules/@types/node/util.d.ts": { + "version": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12", + "signature": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12" + }, + "../../node_modules/@types/node/v8.d.ts": { + "version": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725", + "signature": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725" + }, + "../../node_modules/@types/node/vm.d.ts": { + "version": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562", + "signature": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562" + }, + "../../node_modules/@types/node/worker_threads.d.ts": { + "version": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb", + "signature": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb" + }, + "../../node_modules/@types/node/zlib.d.ts": { + "version": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b", + "signature": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b" + }, + "../../node_modules/@types/node/base.d.ts": { + "version": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce", + "signature": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce" + }, + "../../node_modules/@types/node/ts3.2/util.d.ts": { + "version": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c", + "signature": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c" + }, + "../../node_modules/@types/node/ts3.2/globals.d.ts": { + "version": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1", + "signature": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1" + }, + "../../node_modules/@types/node/ts3.2/index.d.ts": { + "version": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c", + "signature": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c" + }, + "../../node_modules/@types/jest-diff/index.d.ts": { + "version": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06", + "signature": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06" + }, + "../../node_modules/jest-diff/build/types.d.ts": { + "version": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7", + "signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7" + }, + "../../node_modules/jest-diff/build/index.d.ts": { + "version": "b2c5ded6320c45c5d3e1c481c5d2808adf24dd1a59ffc944b72a418e95da5b17", + "signature": "b2c5ded6320c45c5d3e1c481c5d2808adf24dd1a59ffc944b72a418e95da5b17" + }, + "../../node_modules/@types/jest/index.d.ts": { + "version": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b", + "signature": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b" + } + }, + "options": { + "composite": true, + "target": 99, + "module": 99, + "moduleResolution": 2, + "esModuleInterop": true, + "sourceMap": true, + "declaration": true, + "declarationMap": true, + "removeComments": true, + "strict": true, + "noImplicitAny": true, + "noImplicitReturns": false, + "noFallthroughCasesInSwitch": true, + "noUnusedParameters": true, + "noUnusedLocals": true, + "forceConsistentCasingInFileNames": true, + "lib": [ + "lib.dom.d.ts", + "lib.es2017.d.ts", + "lib.es2018.asynciterable.d.ts" + ], + "types": [ + "node", + "jest" + ], + "baseUrl": "../..", + "paths": { + "graphql-language-*": [ + "graphql-language-*" + ] + }, + "rootDir": "./src", + "outDir": "./dist", + "configFilePath": "./tsconfig.json" + }, + "referencedMap": { + "../../node_modules/typescript/lib/lib.es5.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.dom.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/source.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/location.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/tokenKind.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/ast.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printLocation.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/kinds.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/tsutils/Maybe.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/GraphQLError.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/syntaxError.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/locatedError.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/formatError.d.ts": [ + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/index.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/syntaxError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/error/formatError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/lexer.d.ts": [ + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/parser.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printer.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/Path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/definition.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/directiveLocation.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/directives.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/schema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/visitor.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/predicates.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/index.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/language/printLocation.d.ts", + "../../node_modules/graphql/language/kinds.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/printer.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/predicates.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/version.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/execute.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/graphql.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/scalars.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/introspection.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/scalars.d.ts", + "../../node_modules/graphql/type/introspection.d.ts", + "../../node_modules/graphql/type/validate.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/values.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/execution/values.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/subscribe.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/index.d.ts": [ + "../../node_modules/graphql/subscription/subscribe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/ValidationContext.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/specifiedRules.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/index.d.ts": [ + "../../node_modules/graphql/validation/validate.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/specifiedRules.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/blockString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/blockString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/extendSchema.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/astFromValue.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceValue.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/concatAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/separateOperations.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeComparators.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/assertValidName.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/index.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/utilities/getOperationAST.d.ts", + "../../node_modules/graphql/utilities/getOperationRootType.d.ts", + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", + "../../node_modules/graphql/utilities/buildClientSchema.d.ts", + "../../node_modules/graphql/utilities/buildASTSchema.d.ts", + "../../node_modules/graphql/utilities/extendSchema.d.ts", + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", + "../../node_modules/graphql/utilities/schemaPrinter.d.ts", + "../../node_modules/graphql/utilities/typeFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", + "../../node_modules/graphql/utilities/astFromValue.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/utilities/coerceInputValue.d.ts", + "../../node_modules/graphql/utilities/coerceValue.d.ts", + "../../node_modules/graphql/utilities/isValidJSValue.d.ts", + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", + "../../node_modules/graphql/utilities/concatAST.d.ts", + "../../node_modules/graphql/utilities/separateOperations.d.ts", + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", + "../../node_modules/graphql/utilities/typeComparators.d.ts", + "../../node_modules/graphql/utilities/assertValidName.d.ts", + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/index.d.ts": [ + "../../node_modules/graphql/version.d.ts", + "../../node_modules/graphql/graphql.d.ts", + "../../node_modules/graphql/type/index.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/execution/index.d.ts", + "../../node_modules/graphql/subscription/index.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/utilities/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/index.d.ts": [ + "../../node_modules/graphql-request/dist/src/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ + "../../node_modules/graphql-request/dist/src/index.d.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/types.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/utils.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/errors.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/index.d.ts": [ + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", + "../../node_modules/graphql-config/lib/utils.d.ts", + "../../node_modules/graphql-config/lib/errors.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-types/src/index.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql-config/lib/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/Range.ts": [ + "../../node_modules/graphql/language/index.d.ts", + "../graphql-language-service-types/src/index.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/getASTNodeAtPosition.ts": [ + "../../node_modules/graphql/language/index.d.ts", + "./src/Range.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/validateWithCustomRules.ts": [ + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/type/index.d.ts", + "../graphql-language-service-types/src/index.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/index.ts": [ + "./src/getASTNodeAtPosition.ts", + "./src/Range.ts", + "./src/validateWithCustomRules.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/globals.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/assert.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/async_hooks.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/buffer.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/events/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/child_process.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/cluster.d.ts": [ + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/console.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/constants.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/crypto.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dgram.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dns.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/domain.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/fs.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http2.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/https.d.ts": [ + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/inspector.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/module.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/net.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/os.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/perf_hooks.d.ts": [ + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/process.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/punycode.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/querystring.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/readline.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/repl.d.ts": [ + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/stream.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/string_decoder.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/timers.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tls.d.ts": [ + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/trace_events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tty.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/url.d.ts": [ + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/util.d.ts": [ + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/v8.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/vm.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/worker_threads.d.ts": [ + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/zlib.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/base.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/assert.d.ts", + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/buffer.d.ts", + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/cluster.d.ts", + "../../node_modules/@types/node/console.d.ts", + "../../node_modules/@types/node/constants.d.ts", + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dgram.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/domain.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/http2.d.ts", + "../../node_modules/@types/node/https.d.ts", + "../../node_modules/@types/node/inspector.d.ts", + "../../node_modules/@types/node/module.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/os.d.ts", + "../../node_modules/@types/node/path.d.ts", + "../../node_modules/@types/node/perf_hooks.d.ts", + "../../node_modules/@types/node/process.d.ts", + "../../node_modules/@types/node/punycode.d.ts", + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/repl.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/string_decoder.d.ts", + "../../node_modules/@types/node/timers.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/trace_events.d.ts", + "../../node_modules/@types/node/tty.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/v8.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/worker_threads.d.ts", + "../../node_modules/@types/node/zlib.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/util.d.ts": [ + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/globals.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/index.d.ts": [ + "../../node_modules/@types/node/base.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts", + "../../node_modules/@types/node/ts3.2/globals.d.ts", + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/jest-diff/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/index.d.ts": [ + "../../node_modules/jest-diff/build/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/jest/index.d.ts": [ + "../../node_modules/jest-diff/build/index.d.ts", + "../../node_modules/@types/jest-diff/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ] + }, + "exportedModulesMap": { + "../../node_modules/typescript/lib/lib.es5.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.dom.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/source.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/index.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/utilities/getOperationAST.d.ts", + "../../node_modules/graphql/utilities/getOperationRootType.d.ts", + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", + "../../node_modules/graphql/utilities/buildClientSchema.d.ts", + "../../node_modules/graphql/utilities/buildASTSchema.d.ts", + "../../node_modules/graphql/utilities/extendSchema.d.ts", + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", + "../../node_modules/graphql/utilities/schemaPrinter.d.ts", + "../../node_modules/graphql/utilities/typeFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", + "../../node_modules/graphql/utilities/astFromValue.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/utilities/coerceInputValue.d.ts", + "../../node_modules/graphql/utilities/coerceValue.d.ts", + "../../node_modules/graphql/utilities/isValidJSValue.d.ts", + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", + "../../node_modules/graphql/utilities/concatAST.d.ts", + "../../node_modules/graphql/utilities/separateOperations.d.ts", + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", + "../../node_modules/graphql/utilities/typeComparators.d.ts", + "../../node_modules/graphql/utilities/assertValidName.d.ts", + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/index.d.ts": [ + "../../node_modules/graphql/version.d.ts", + "../../node_modules/graphql/graphql.d.ts", + "../../node_modules/graphql/type/index.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/execution/index.d.ts", + "../../node_modules/graphql/subscription/index.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/utilities/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/validateWithCustomRules.ts": [ + "../../node_modules/graphql/type/index.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../graphql-language-service-types/src/index.ts", + "../../node_modules/graphql/error/index.d.ts" + ], + "./src/index.ts": [ + "./src/getASTNodeAtPosition.ts", + "./src/Range.ts", + "./src/validateWithCustomRules.ts" + ], + "./src/getASTNodeAtPosition.ts": [ + "../../node_modules/graphql/language/index.d.ts", + "./src/Range.ts" + ], + "./src/Range.ts": [ + "../graphql-language-service-types/src/index.ts", + "../../node_modules/graphql/language/index.d.ts" + ], + "../../node_modules/graphql-config/lib/utils.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/index.d.ts": [ + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", + "../../node_modules/graphql-config/lib/utils.d.ts", + "../../node_modules/graphql-config/lib/errors.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/types.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ + "../../node_modules/graphql-request/dist/src/index.d.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/blockString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/graphql.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/index.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/language/printLocation.d.ts", + "../../node_modules/graphql/language/kinds.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/printer.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/predicates.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/parser.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/lexer.d.ts": [ + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/syntaxError.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/index.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/syntaxError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/error/formatError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/GraphQLError.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/assertValidName.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceValue.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/index.d.ts": [ + "../../node_modules/graphql/validation/validate.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/specifiedRules.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/ValidationContext.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/specifiedRules.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/values.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/execution/values.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/scalars.d.ts", + "../../node_modules/graphql/type/introspection.d.ts", + "../../node_modules/graphql/type/validate.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/execute.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/subscribe.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/index.d.ts": [ + "../../node_modules/graphql/subscription/subscribe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/formatError.d.ts": [ + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/locatedError.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printLocation.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/ast.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/separateOperations.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/concatAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/astFromValue.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/extendSchema.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/predicates.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/visitor.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/schema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeComparators.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/definition.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/introspection.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/scalars.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/directives.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printer.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/location.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/tokenKind.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/kinds.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/tsutils/Maybe.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/Path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/directiveLocation.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/version.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/blockString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/index.d.ts": [ + "../../node_modules/graphql-request/dist/src/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/errors.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/globals.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/assert.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/base.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/assert.d.ts", + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/buffer.d.ts", + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/cluster.d.ts", + "../../node_modules/@types/node/console.d.ts", + "../../node_modules/@types/node/constants.d.ts", + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dgram.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/domain.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/http2.d.ts", + "../../node_modules/@types/node/https.d.ts", + "../../node_modules/@types/node/inspector.d.ts", + "../../node_modules/@types/node/module.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/os.d.ts", + "../../node_modules/@types/node/path.d.ts", + "../../node_modules/@types/node/perf_hooks.d.ts", + "../../node_modules/@types/node/process.d.ts", + "../../node_modules/@types/node/punycode.d.ts", + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/repl.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/string_decoder.d.ts", + "../../node_modules/@types/node/timers.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/trace_events.d.ts", + "../../node_modules/@types/node/tty.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/v8.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/worker_threads.d.ts", + "../../node_modules/@types/node/zlib.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/index.d.ts": [ + "../../node_modules/@types/node/base.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts", + "../../node_modules/@types/node/ts3.2/globals.d.ts", + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/node/async_hooks.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/perf_hooks.d.ts": [ + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/buffer.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/events/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/child_process.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/cluster.d.ts": [ + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/console.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/constants.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/crypto.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tls.d.ts": [ + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/https.d.ts": [ + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http2.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dgram.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dns.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/net.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tty.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/domain.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/worker_threads.d.ts": [ + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/stream.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/zlib.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/v8.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/readline.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/repl.d.ts": [ + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/fs.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/inspector.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/module.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/os.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/process.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/punycode.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/querystring.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/url.d.ts": [ + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/string_decoder.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/timers.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/trace_events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/util.d.ts": [ + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/jest/index.d.ts": [ + "../../node_modules/jest-diff/build/index.d.ts", + "../../node_modules/@types/jest-diff/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/index.d.ts": [ + "../../node_modules/jest-diff/build/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/jest-diff/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/globals.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/util.d.ts": [ + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/node/vm.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ] + }, + "semanticDiagnosticsPerFile": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/printLocation.d.ts", + "../../node_modules/graphql/language/kinds.d.ts", + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/syntaxError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/error/formatError.d.ts", + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/printer.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/predicates.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/version.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/graphql.d.ts", + "../../node_modules/graphql/type/scalars.d.ts", + "../../node_modules/graphql/type/introspection.d.ts", + "../../node_modules/graphql/type/validate.d.ts", + "../../node_modules/graphql/type/index.d.ts", + "../../node_modules/graphql/execution/values.d.ts", + "../../node_modules/graphql/execution/index.d.ts", + "../../node_modules/graphql/subscription/subscribe.d.ts", + "../../node_modules/graphql/subscription/index.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/validate.d.ts", + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", + "../../node_modules/graphql/validation/specifiedRules.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/utilities/getOperationAST.d.ts", + "../../node_modules/graphql/utilities/getOperationRootType.d.ts", + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", + "../../node_modules/graphql/utilities/buildClientSchema.d.ts", + "../../node_modules/graphql/language/blockString.d.ts", + "../../node_modules/graphql/utilities/buildASTSchema.d.ts", + "../../node_modules/graphql/utilities/extendSchema.d.ts", + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", + "../../node_modules/graphql/utilities/schemaPrinter.d.ts", + "../../node_modules/graphql/utilities/typeFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", + "../../node_modules/graphql/utilities/astFromValue.d.ts", + "../../node_modules/graphql/utilities/coerceInputValue.d.ts", + "../../node_modules/graphql/utilities/coerceValue.d.ts", + "../../node_modules/graphql/utilities/isValidJSValue.d.ts", + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", + "../../node_modules/graphql/utilities/concatAST.d.ts", + "../../node_modules/graphql/utilities/separateOperations.d.ts", + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", + "../../node_modules/graphql/utilities/typeComparators.d.ts", + "../../node_modules/graphql/utilities/assertValidName.d.ts", + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", + "../../node_modules/graphql/utilities/index.d.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-request/dist/src/types.d.ts", + "../../node_modules/graphql-request/dist/src/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", + "../../node_modules/graphql-config/lib/utils.d.ts", + "../../node_modules/graphql-config/lib/errors.d.ts", + "../../node_modules/graphql-config/lib/index.d.ts", + "../graphql-language-service-types/src/index.ts", + "./src/Range.ts", + "./src/getASTNodeAtPosition.ts", + "./src/validateWithCustomRules.ts", + "./src/index.ts", + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/assert.d.ts", + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/buffer.d.ts", + "../../node_modules/@types/events/index.d.ts", + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/cluster.d.ts", + "../../node_modules/@types/node/console.d.ts", + "../../node_modules/@types/node/constants.d.ts", + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dgram.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/domain.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/http2.d.ts", + "../../node_modules/@types/node/https.d.ts", + "../../node_modules/@types/node/inspector.d.ts", + "../../node_modules/@types/node/module.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/os.d.ts", + "../../node_modules/@types/node/path.d.ts", + "../../node_modules/@types/node/perf_hooks.d.ts", + "../../node_modules/@types/node/process.d.ts", + "../../node_modules/@types/node/punycode.d.ts", + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/repl.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/string_decoder.d.ts", + "../../node_modules/@types/node/timers.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/trace_events.d.ts", + "../../node_modules/@types/node/tty.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/v8.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/worker_threads.d.ts", + "../../node_modules/@types/node/zlib.d.ts", + "../../node_modules/@types/node/base.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts", + "../../node_modules/@types/node/ts3.2/globals.d.ts", + "../../node_modules/@types/node/ts3.2/index.d.ts", + "../../node_modules/@types/jest-diff/index.d.ts", + "../../node_modules/jest-diff/build/types.d.ts", + "../../node_modules/jest-diff/build/index.d.ts", + "../../node_modules/@types/jest/index.d.ts", + "../../node_modules/typescript/lib/lib.es2015.d.ts", + "../../node_modules/typescript/lib/lib.es2016.d.ts", + "../../node_modules/typescript/lib/lib.es2017.d.ts", + "../../node_modules/typescript/lib/lib.es2018.d.ts", + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts", + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts", + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts", + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts", + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts", + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts", + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts", + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts", + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts", + "../../node_modules/typescript/lib/lib.es2017.string.d.ts", + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts", + "../../node_modules/typescript/lib/lib.es2017.object.d.ts", + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts", + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts", + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts", + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts", + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts", + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts", + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts", + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts", + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts", + "../../node_modules/typescript/lib/lib.es2015.core.d.ts", + "../../node_modules/typescript/lib/lib.dom.d.ts", + "../../node_modules/typescript/lib/lib.es5.d.ts" + ] + }, + "version": "3.6.3" +} \ No newline at end of file diff --git a/tsconfig.base.json b/tsconfig.base.json new file mode 100644 index 00000000000..201826c5f69 --- /dev/null +++ b/tsconfig.base.json @@ -0,0 +1,32 @@ +{ + "compilerOptions": { + "composite": true, + "target": "esnext", + "module": "esnext", + "moduleResolution": "node", + "esModuleInterop": true, + "sourceMap": true, + "declaration": true, + "declarationMap": true, + "removeComments": true, + "strict": true, + "noImplicitAny": true, + "noImplicitReturns": false, + "noFallthroughCasesInSwitch": true, + "noUnusedParameters": true, + "noUnusedLocals": true, + "forceConsistentCasingInFileNames": true, + "lib": ["dom", "es2017", "esnext.asynciterable"], + "types": ["node", "jest"], + "baseUrl": ".", + "paths": { + "graphql-language-*" : ["graphql-language-*"] + }, + }, + "exclude": [ + "**/*.spec.ts", + "**/*.spec.js", + "**/*-test.ts", + "**/*-test.js" + ] +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000000..07c8010d929 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "composite": true + }, + "files": [], + "include": [], + "references": [ + { + "path": "packages/graphql-language-service-utils" + }, + { + "path": "packages/graphql-language-service-types" + }, + { + "path": "packages/graphql-language-service-parser" + }, + { + "path": "packages/graphql-language-service-interface" + } + ] +} diff --git a/yarn.lock b/yarn.lock index 9f0875980b5..47e3f78c129 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1967,6 +1967,18 @@ "@types/istanbul-lib-coverage" "*" "@types/istanbul-lib-report" "*" +"@types/jest-diff@*": + version "20.0.1" + resolved "https://registry.npmjs.org/@types/jest-diff/-/jest-diff-20.0.1.tgz#35cc15b9c4f30a18ef21852e255fdb02f6d59b89" + integrity sha512-yALhelO3i0hqZwhjtcr6dYyaLoCHbAMshwtj6cGxTvHZAKXHsYGdff6E8EPw3xLKY0ELUTQ69Q1rQiJENnccMA== + +"@types/jest@^24.0.18": + version "24.0.18" + resolved "https://registry.npmjs.org/@types/jest/-/jest-24.0.18.tgz#9c7858d450c59e2164a8a9df0905fc5091944498" + integrity sha512-jcDDXdjTcrQzdN06+TSVsPPqxvsZA/5QkYfIZlq1JMw7FdP5AZylbOc+6B/cuDurctRe+MziUMtQ3xQdrbjqyQ== + dependencies: + "@types/jest-diff" "*" + "@types/minimatch@*": version "3.0.3" resolved "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" @@ -5364,7 +5376,15 @@ graphql-request@^1.5.0: dependencies: cross-fetch "2.2.2" +<<<<<<< HEAD +graphql@14.4.2: +======= +<<<<<<< HEAD graphql@14.4.2: +======= +graphql@14.4.2, graphql@^14.0.2: +>>>>>>> chore: first leg of converting LSP packages to TS +>>>>>>> chore: Convert LSP tests to jest from mocha (#871) version "14.4.2" resolved "https://registry.npmjs.org/graphql/-/graphql-14.4.2.tgz#553a7d546d524663eda49ed6df77577be3203ae3" integrity sha512-6uQadiRgnpnSS56hdZUSvFrVcQ6OF9y6wkxJfKquFtHlnl7+KSuWwSJsdwiK1vybm1HgcdbpGkCpvhvsVQ0UZQ== @@ -5379,6 +5399,13 @@ graphql@^14.4.2: dependencies: iterall "^1.2.2" +graphql@^14.5.2: + version "14.5.5" + resolved "https://registry.npmjs.org/graphql/-/graphql-14.5.5.tgz#7ec9d4f79f4d3c95e64c7ff6727bfe7068049d43" + integrity sha512-Ly+hS+HY+gHN79ee7KTP25ZLUJJTMfpOMoDa3LSRZNFUh7w0CLAAgzuyOpOZQFAPWFwooEuakixh0EbVe+vqAA== + dependencies: + iterall "^1.2.2" + growl@1.10.5: version "1.10.5" resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" @@ -10490,6 +10517,11 @@ typedarray@^0.0.6, typedarray@~0.0.5: version "0.0.6" resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" +typescript@^3.6.3: + version "3.6.3" + resolved "https://registry.npmjs.org/typescript/-/typescript-3.6.3.tgz#fea942fabb20f7e1ca7164ff626f1a9f3f70b4da" + integrity sha512-N7bceJL1CtRQ2RiG0AQME13ksR7DiuQh/QehubYcghzv20tnh+MQnQIuJddTmsbqYj+dztchykemz0zFzlvdQw== + ua-parser-js@^0.7.18: version "0.7.19" resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.19.tgz#94151be4c0a7fb1d001af7022fdaca4642659e4b" From 1d42bfeb77b5727c774882cf676e79bfc27415aa Mon Sep 17 00:00:00 2001 From: Rikki Schulte Date: Mon, 16 Sep 2019 22:47:48 -0400 Subject: [PATCH 2/9] chore: more ts conversion --- jest.config.js | 19 +- package.json | 9 +- .../src/GraphQLLanguageService.ts | 35 +- .../__tests__/GraphQLLanguageService-test.ts | 5 +- .../getAutocompleteSuggestions-test.ts | 63 +- .../src/__tests__/getDefinition-test.ts | 23 +- .../src/__tests__/getDiagnostics-test.ts | 29 +- .../src/__tests__/getHoverInformation-test.ts | 72 +- .../src/autocompleteUtils.ts | 2 +- .../src/getAutocompleteSuggestions.ts | 67 +- .../src/getDefinition.ts | 1 + .../src/getDiagnostics.ts | 14 +- .../src/getHoverInformation.ts | 19 +- .../src/getOutline.ts | 59 +- .../tsconfig.tsbuildinfo | 3641 +++++++++++++++ .../package.json | 4 +- .../src/Rules.ts | 7 +- .../src/onlineParser.ts | 5 +- .../tsconfig.tsbuildinfo | 18 +- .../src/index.ts | 43 +- .../tsconfig.tsbuildinfo | 16 +- .../src/__tests__/Range-test.ts | 6 +- .../__tests__/validateWithCustomRules-test.ts | 4 +- .../src/getASTNodeAtPosition.ts | 10 +- .../tsconfig.tsbuildinfo | 14 +- tsconfig.base.json | 3 +- yarn.lock | 4125 +++++++++-------- 27 files changed, 6040 insertions(+), 2273 deletions(-) create mode 100644 packages/graphql-language-service-interface/tsconfig.tsbuildinfo diff --git a/jest.config.js b/jest.config.js index 26c6ef42618..e20591a6d39 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,23 +1,28 @@ const path = require('path'); +const { jsWithTs: tsjPreset } = require('ts-jest/presets'); +const { jsWithBabel: jsWithBabelPreset } = require('ts-jest/presets'); module.exports = { + globals: { + 'ts-jest': { + tsConfig: './tsconfig.base.json' + } + }, verbose: true, clearMocks: true, collectCoverage: true, setupFiles: [path.join(__dirname, '/resources/enzyme.config.js')], testMatch: [ - '/packages/*/src/**/*-test.js', - '/packages/*/src/**/*.spec.js', + '/packages/*/src/**/*-test.{js,ts}', + '/packages/*/src/**/*.spec.{js,ts}', ], transform: { '^.+\\.jsx?$': require.resolve('./resources/jestBabelTransform'), + ...tsjPreset.transform, + ...jsWithBabelPreset.transform }, testEnvironment: require.resolve('jest-environment-jsdom-global'), - testPathIgnorePatterns: [ - 'node_modules', - 'dist', - 'codemirror-graphql', - ], + testPathIgnorePatterns: ['node_modules', 'dist', 'codemirror-graphql'], collectCoverageFrom: [ '**/src/**/*.{js,jsx}', '!**/node_modules/**', diff --git a/package.json b/package.json index e885fc90557..8fd5fdac6fa 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "pretty": "node resources/pretty.js", "pretty-check": "node resources/pretty.js --check", "version:release": "lerna version", - "version:prerelease": "lerna versiton --conventional-prerelease", + "version:prerelease": "lerna version --conventional-prerelease", "version:graduate": "lerna version --conventional-graduate" }, "devDependencies": { @@ -51,8 +51,8 @@ "@types/jest": "^24.0.18", "babel-eslint": "^10.0.1", "chai": "4.2.0", - "conventional-changelog-conventionalcommits": "^4.1.0", "codecov": "^3.5.0", + "conventional-changelog-conventionalcommits": "^4.1.0", "eslint": "^5.16.0", "eslint-config-prettier": "4.3.0", "eslint-plugin-babel": "5.3.0", @@ -64,12 +64,13 @@ "flow-bin": "^0.101.0", "graphql": "^14.5.2", "husky": "^3.0.5", - "lerna": "^3.16.4", - "mocha": "6.1.4", "jest": "^24.8.0", "jest-environment-jsdom": "^24.8.0", "jest-environment-jsdom-global": "^1.2.0", + "lerna": "^3.16.4", + "mocha": "6.1.4", "prettier": "^1.18.2", + "ts-jest": "^24.1.0", "typescript": "^3.6.3" } } diff --git a/packages/graphql-language-service-interface/src/GraphQLLanguageService.ts b/packages/graphql-language-service-interface/src/GraphQLLanguageService.ts index 882295351b0..fdb9cd737c6 100644 --- a/packages/graphql-language-service-interface/src/GraphQLLanguageService.ts +++ b/packages/graphql-language-service-interface/src/GraphQLLanguageService.ts @@ -24,9 +24,10 @@ import { GraphQLConfig, GraphQLProjectConfig, Uri, + Position } from 'graphql-language-service-types'; -import { Position } from 'graphql-language-service-utils'; +// import { Position } from 'graphql-language-service-utils'; import { Hover } from 'vscode-languageserver-types'; import { Kind, parse, print } from 'graphql'; @@ -69,6 +70,14 @@ export class GraphQLLanguageService { this._graphQLConfig = cache.getGraphQLConfig(); } + getConfigForURI(uri: Uri) { + const config = this._graphQLConfig.getConfigForFile(uri); + if (config) { + return config; + } + throw Error(`No config found for uri: ${uri}`); + } + async getDiagnostics( query: string, uri: Uri, @@ -77,10 +86,9 @@ export class GraphQLLanguageService { // Perform syntax diagnostics first, as this doesn't require // schema/fragment definitions, even the project configuration. let queryHasExtensions = false; - const projectConfig = this._graphQLConfig.getConfigForFile( - uri, - ) as GraphQLProjectConfig; - const schemaPath = projectConfig.schemaPath; + const projectConfig = this.getConfigForURI(uri); + const { schemaPath, projectName, extensions } = projectConfig; + try { const queryAST = parse(query); if (!schemaPath || uri !== schemaPath) { @@ -148,8 +156,7 @@ export class GraphQLLanguageService { // Check if there are custom validation rules to be used let customRules; - const customRulesModulePath = - projectConfig.extensions.customValidationRules; + const customRulesModulePath = extensions.customValidationRules; if (customRulesModulePath) { /* eslint-disable no-implicit-coercion */ const rulesPath = require.resolve(`${customRulesModulePath}`); @@ -160,7 +167,7 @@ export class GraphQLLanguageService { } const schema = await this._graphQLCache - .getSchema(projectConfig.projectName, queryHasExtensions) + .getSchema(projectName, queryHasExtensions) .catch(() => null); if (!schema) { @@ -175,9 +182,7 @@ export class GraphQLLanguageService { position: Position, filePath: Uri, ): Promise> { - const projectConfig = this._graphQLConfig.getConfigForFile( - filePath, - ) as GraphQLProjectConfig; + const projectConfig = this.getConfigForURI(filePath); const schema = await this._graphQLCache .getSchema(projectConfig.projectName) .catch(() => null); @@ -193,9 +198,7 @@ export class GraphQLLanguageService { position: Position, filePath: Uri, ): Promise { - const projectConfig = this._graphQLConfig.getConfigForFile( - filePath, - ) as GraphQLProjectConfig; + const projectConfig = this.getConfigForURI(filePath); const schema = await this._graphQLCache .getSchema(projectConfig.projectName) .catch(() => null); @@ -211,9 +214,7 @@ export class GraphQLLanguageService { position: Position, filePath: Uri, ): Promise { - const projectConfig = this._graphQLConfig.getConfigForFile( - filePath, - ) as GraphQLProjectConfig; + const projectConfig = this.getConfigForURI(filePath); let ast; try { diff --git a/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.ts b/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.ts index 7e186ecfa5f..a8afd0f14f2 100644 --- a/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.ts +++ b/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.ts @@ -7,6 +7,7 @@ * */ + import { Position } from 'graphql-language-service-types' import { join } from 'path'; import * as fs from 'fs'; import { buildSchema } from 'graphql'; @@ -71,7 +72,7 @@ describe('GraphQLLanguageService', () => { }, }; - let languageService; + let languageService: GraphQLLanguageService; beforeEach(() => { languageService = new GraphQLLanguageService(mockCache); }); @@ -100,7 +101,7 @@ describe('GraphQLLanguageService', () => { it('runs hover service as expected', async () => { const hoverInformation = await languageService.getHoverInformation( 'type Query { hero(episode: String): String }', - { line: 0, character: 28 }, + { line: 0, character: 28 } as Position, './queries/definitionQuery.graphql', ); expect(hoverInformation).toEqual( diff --git a/packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.ts b/packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.ts index 953bd5172b1..f6831528aa7 100644 --- a/packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.ts +++ b/packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.ts @@ -5,22 +5,19 @@ * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * - * @flow */ import { CompletionItem } from 'graphql-language-service-types'; -import { expect } from 'chai'; -import { beforeEach, describe, it } from 'mocha'; import fs from 'fs'; -import { buildSchema } from 'graphql'; +import { buildSchema, GraphQLSchema } from 'graphql'; import { Position } from 'graphql-language-service-utils'; import path from 'path'; import { getAutocompleteSuggestions } from '../getAutocompleteSuggestions'; describe('getAutocompleteSuggestions', () => { - let schema; + let schema: GraphQLSchema; beforeEach(async () => { const schemaIDL = fs.readFileSync( path.join(__dirname, '__schema__/StarWarsSchema.graphql'), @@ -53,7 +50,7 @@ describe('getAutocompleteSuggestions', () => { it('provides correct sortText response', () => { const result = getAutocompleteSuggestions(schema, `{ h`, new Position(0, 3)). map(({ sortText, label, detail }) => ({ sortText, label, detail })); - expect(result).to.deep.equal([{ + expect(result).toEqual([{ sortText: '0hero', label: 'hero', detail: 'Character' }, @@ -71,7 +68,7 @@ describe('getAutocompleteSuggestions', () => { }); it('provides correct initial keywords', () => { - expect(testSuggestions('', new Position(0, 0))).to.deep.equal([ + expect(testSuggestions('', new Position(0, 0))).toEqual([ { label: '{' }, { label: 'fragment' }, { label: 'mutation' }, @@ -79,7 +76,7 @@ describe('getAutocompleteSuggestions', () => { { label: 'subscription' }]); - expect(testSuggestions('q', new Position(0, 1))).to.deep.equal([ + expect(testSuggestions('q', new Position(0, 1))).toEqual([ { label: '{' }, { label: 'query' }]); @@ -87,7 +84,7 @@ describe('getAutocompleteSuggestions', () => { it('provides correct suggestions at where the cursor is', () => { // Below should provide initial keywords - expect(testSuggestions(' {}', new Position(0, 0))).to.deep.equal([ + expect(testSuggestions(' {}', new Position(0, 0))).toEqual([ { label: '{' }, { label: 'fragment' }, { label: 'mutation' }, @@ -95,7 +92,7 @@ describe('getAutocompleteSuggestions', () => { { label: 'subscription' }]); // Below should provide root field names - expect(testSuggestions(' {}', new Position(0, 2))).to.deep.equal([ + expect(testSuggestions(' {}', new Position(0, 2))).toEqual([ { label: '__typename', detail: 'String!' }, { label: 'droid', detail: 'Droid' }, { label: 'hero', detail: 'Character' }, @@ -113,7 +110,7 @@ query name { `, new Position(2, 0))). - to.deep.equal([ + toEqual([ { label: '__typename', detail: 'String!' }, { label: 'droid', detail: 'Droid' }, { label: 'hero', detail: 'Character' }, @@ -124,7 +121,7 @@ query name { it('provides correct field name suggestions', () => { const result = testSuggestions('{ ', new Position(0, 2)); - expect(result).to.deep.equal([ + expect(result).toEqual([ { label: '__typename', detail: 'String!' }, { label: 'droid', detail: 'Droid' }, { label: 'hero', detail: 'Character' }, @@ -135,7 +132,7 @@ query name { it('provides correct field name suggestions after filtered', () => { const result = testSuggestions('{ h ', new Position(0, 3)); - expect(result).to.deep.equal([ + expect(result).toEqual([ { label: 'hero', detail: 'Character' }, { label: 'human', detail: 'Human' }]); @@ -147,7 +144,7 @@ query name { new Position(0, 26)); - expect(result).to.deep.equal([ + expect(result).toEqual([ { label: '__typename', detail: 'String!' }, { label: 'appearsIn', detail: '[Episode]' }, { label: 'friends', detail: '[Character]' }, @@ -162,7 +159,7 @@ query name { 'fragment test on Human { ', new Position(0, 25)); - expect(result).to.deep.equal([ + expect(result).toEqual([ { label: '__typename', detail: 'String!' }, { label: 'appearsIn', detail: '[Episode]' }, { label: 'friends', detail: '[Character]' }, @@ -174,25 +171,25 @@ query name { it('provides correct argument suggestions', () => { const result = testSuggestions('{ human (', new Position(0, 9)); - expect(result).to.deep.equal([{ label: 'id', detail: 'String!' }]); + expect(result).toEqual([{ label: 'id', detail: 'String!' }]); }); it('provides correct argument suggestions when using aliases', () => { const result = testSuggestions('{ aliasTest: human( ', new Position(0, 20)); - expect(result).to.deep.equal([{ label: 'id', detail: 'String!' }]); + expect(result).toEqual([{ label: 'id', detail: 'String!' }]); }); it('provides correct typeCondition suggestions', () => { const suggestionsOnQuery = testSuggestions('{ ... on ', new Position(0, 9)); expect( suggestionsOnQuery.filter(({ label }) => !label.startsWith('__'))). - to.deep.equal([{ label: 'Query' }]); + toEqual([{ label: 'Query' }]); const suggestionsOnCompositeType = testSuggestions( '{ hero(episode: JEDI) { ... on } }', new Position(0, 31)); - expect(suggestionsOnCompositeType).to.deep.equal([ + expect(suggestionsOnCompositeType).toEqual([ { label: 'Character' }, { label: 'Droid' }, { label: 'Human' }]); @@ -203,7 +200,7 @@ query name { 'fragment Foo on Character { ... on }', new Position(0, 35))). - to.deep.equal([ + toEqual([ { label: 'Character' }, { label: 'Droid' }, { label: 'Human' }]); @@ -212,7 +209,7 @@ query name { it('provides correct typeCondition suggestions on fragment', () => { const result = testSuggestions('fragment Foo on {}', new Position(0, 16)); - expect(result.filter(({ label }) => !label.startsWith('__'))).to.deep.equal( + expect(result.filter(({ label }) => !label.startsWith('__'))).toEqual( [ { label: 'Character' }, { label: 'Droid' }, @@ -225,7 +222,7 @@ query name { it('provides correct ENUM suggestions', () => { const result = testSuggestions('{ hero(episode: ', new Position(0, 16)); - expect(result).to.deep.equal([ + expect(result).toEqual([ { label: 'EMPIRE', detail: 'Episode' }, { label: 'JEDI', detail: 'Episode' }, { label: 'NEWHOPE', detail: 'Episode' }]); @@ -241,13 +238,13 @@ query name { `${fragmentDef} query { human(id: "1") { ...`, new Position(0, 57))). - to.deep.equal([{ label: 'Foo', detail: 'Human' }]); + toEqual([{ label: 'Foo', detail: 'Human' }]); expect( testSuggestions( `query { human(id: "1") { ... }} ${fragmentDef}`, new Position(0, 28))). - to.deep.equal([{ label: 'Foo', detail: 'Human' }]); + toEqual([{ label: 'Foo', detail: 'Human' }]); // Test on abstract type expect( @@ -255,29 +252,29 @@ query name { `${fragmentDef} query { hero(episode: JEDI) { ...`, new Position(0, 62))). - to.deep.equal([{ label: 'Foo', detail: 'Human' }]); + toEqual([{ label: 'Foo', detail: 'Human' }]); }); it('provides correct directive suggestions', () => { - expect(testSuggestions('{ test @', new Position(0, 8))).to.deep.equal([ + expect(testSuggestions('{ test @', new Position(0, 8))).toEqual([ { label: 'include' }, { label: 'skip' }, { label: 'test' }]); expect( testSuggestions('{ aliasTest: test @ }', new Position(0, 19))). - to.deep.equal([ + toEqual([ { label: 'include' }, { label: 'skip' }, { label: 'test' }]); - expect(testSuggestions('query @', new Position(0, 7))).to.deep.equal([]); + expect(testSuggestions('query @', new Position(0, 7))).toEqual([]); }); it('provides correct testInput suggestions', () => { expect( testSuggestions('{ inputTypeTest(args: {', new Position(0, 23))). - to.deep.equal([ + toEqual([ { label: 'key', detail: 'String!' }, { label: 'value', detail: 'Int' }]); @@ -289,7 +286,7 @@ query name { 'fragment Foo on Character { ... on Human { }}', new Position(0, 42))). - to.deep.equal([ + toEqual([ { label: '__typename', detail: 'String!' }, { label: 'appearsIn', detail: '[Episode]' }, { label: 'friends', detail: '[Character]' }, @@ -301,7 +298,7 @@ query name { // Typeless inline fragment assumes the type automatically expect( testSuggestions('fragment Foo on Droid { ... { ', new Position(0, 30))). - to.deep.equal([ + toEqual([ { label: '__typename', detail: 'String!' }, { label: 'appearsIn', detail: '[Episode]' }, { label: 'friends', detail: '[Character]' }, @@ -313,12 +310,12 @@ query name { }); it('provides correct directive suggestions on definitions', () => - expect(testSuggestions('type Type @', new Position(0, 11))).to.deep.equal([ + expect(testSuggestions('type Type @', new Position(0, 11))).toEqual([ { label: 'onAllDefs' }])); it('provides correct directive suggestions on args definitions', () => expect( testSuggestions('type Type { field(arg: String @', new Position(0, 31))). - to.deep.equal([{ label: 'onAllDefs' }, { label: 'onArg' }])); + toEqual([{ label: 'onAllDefs' }, { label: 'onArg' }])); }); diff --git a/packages/graphql-language-service-interface/src/__tests__/getDefinition-test.ts b/packages/graphql-language-service-interface/src/__tests__/getDefinition-test.ts index 8a97bedda7c..9b4c558c66c 100644 --- a/packages/graphql-language-service-interface/src/__tests__/getDefinition-test.ts +++ b/packages/graphql-language-service-interface/src/__tests__/getDefinition-test.ts @@ -8,7 +8,10 @@ */ import { parse } from 'graphql'; -import { getDefinitionQueryResultForFragmentSpread, getDefinitionQueryResultForNamedType } from '../getDefinition'; +import { + getDefinitionQueryResultForFragmentSpread, + getDefinitionQueryResultForNamedType, +} from '../getDefinition'; describe('getDefinition', () => { describe('getDefinitionQueryResultForNamedType', () => { @@ -40,10 +43,6 @@ describe('getDefinition', () => { }, ], ); -<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getDefinition-test.js -======= - ->>>>>>> chore: Convert LSP tests to jest from mocha (#871):packages/graphql-language-service-interface/src/__tests__/getDefinition-test.ts expect(result.definitions.length).toEqual(1); expect(result.definitions[0].position.line).toEqual(1); expect(result.definitions[0].position.character).toEqual(32); @@ -59,9 +58,9 @@ describe('getDefinition', () => { fragment Duck on Duck { cuack }`; - const fragmentSpread = parse(query).definitions[0].selectionSet.selections[0]; + const fragmentSpread = parse(query).definitions[0].selectionSet + .selections[0]; const fragmentDefinition = parse(fragment).definitions[0]; -<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getDefinition-test.js const result = await getDefinitionQueryResultForFragmentSpread( query, fragmentSpread, @@ -73,16 +72,6 @@ describe('getDefinition', () => { }, ], ); -======= - const result = await getDefinitionQueryResultForFragmentSpread(query, fragmentSpread, [ - { - file: 'someFile', - content: fragment, - definition: fragmentDefinition, - }, - ]); - ->>>>>>> chore: Convert LSP tests to jest from mocha (#871):packages/graphql-language-service-interface/src/__tests__/getDefinition-test.ts expect(result.definitions.length).toEqual(1); expect(result.definitions[0].position.line).toEqual(1); expect(result.definitions[0].position.character).toEqual(6); diff --git a/packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts b/packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts index cbba0ede361..38b18b79dc8 100644 --- a/packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts +++ b/packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts @@ -9,13 +9,13 @@ */ import fs from 'fs'; -import { buildSchema, parse } from 'graphql'; +import { buildSchema, parse, GraphQLSchema } from 'graphql'; import path from 'path'; import { getDiagnostics, validateQuery, SEVERITY } from '../getDiagnostics'; describe('getDiagnostics', () => { - let schema; + let schema: GraphQLSchema; beforeEach(async () => { const schemaIDL = fs.readFileSync( path.join(__dirname, '__schema__/StarWarsSchema.graphql'), @@ -27,34 +27,20 @@ describe('getDiagnostics', () => { it('catches field validation errors', () => { const error = validateQuery(parse('query queryName { title }'), schema)[0]; expect(error.message).toEqual( -<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.js 'Cannot query field "title" on type "Query".', ); -======= - 'Cannot query field "title" on type "Query".'); - ->>>>>>> chore: Convert LSP tests to jest from mocha (#871):packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts expect(error.severity).toEqual(SEVERITY.ERROR); expect(error.source).toEqual('GraphQL: Validation'); }); it('catches field deprecation errors', () => { const error = getDiagnostics( -<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.js '{ deprecatedField { testField } }', schema, )[0]; expect(error.message).toEqual( 'The field Query.deprecatedField is deprecated. Use test instead.', ); -======= - '{ deprecatedField { testField } }', - schema)[ - 0]; - expect(error.message).toEqual( - 'The field Query.deprecatedField is deprecated. Use test instead.'); - ->>>>>>> chore: Convert LSP tests to jest from mocha (#871):packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts expect(error.severity).toEqual(SEVERITY.WARNING); expect(error.source).toEqual('GraphQL: Deprecation'); }); @@ -66,15 +52,9 @@ describe('getDiagnostics', () => { it('returns no errors for valid query with aliases', () => { const errors = getDiagnostics( -<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.js 'query { superHero: hero { superName: name } superHero2: hero { superName2: name } }', schema, ); -======= - 'query { superHero: hero { superName: name } superHero2: hero { superName2: name } }', - schema); - ->>>>>>> chore: Convert LSP tests to jest from mocha (#871):packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts expect(errors.length).toEqual(0); }); @@ -86,13 +66,8 @@ describe('getDiagnostics', () => { id: String! } `, -<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.js schema, ); -======= - schema); - ->>>>>>> chore: Convert LSP tests to jest from mocha (#871):packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts expect(errors.length).toEqual(1); const error = errors[0]; expect(error.message).toEqual('Syntax Error: Expected :, found Name "id"'); diff --git a/packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts b/packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts index d1fee08ba90..85ea75ca804 100644 --- a/packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts +++ b/packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts @@ -11,14 +11,14 @@ import { Hover } from 'vscode-languageserver-types'; import fs from 'fs'; -import { buildSchema } from 'graphql'; +import { buildSchema, GraphQLSchema } from 'graphql'; import { Position } from 'graphql-language-service-utils'; import path from 'path'; import { getHoverInformation } from '../getHoverInformation'; describe('getHoverInformation', () => { - let schema; + let schema: GraphQLSchema; beforeEach(async () => { const schemaIDL = fs.readFileSync( path.join(__dirname, '__schema__/HoverTestSchema.graphql'), @@ -27,114 +27,64 @@ describe('getHoverInformation', () => { schema = buildSchema(schemaIDL); }); - function testHover(query: string, point: Position): Hover.contents { + function testHover(query: string, point: Position): Hover['contents'] { return getHoverInformation(schema, query, point); } it('provides leaf field information', () => { const actual = testHover( -<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js 'query { thing { testField } }', new Position(0, 20), ); expect(actual).toEqual( 'TestType.testField: String\n\n This is field documentation for TestType.testField', ); -======= - 'query { thing { testField } }', - new Position(0, 20)); - - expect(actual).to.deep.equal( - 'TestType.testField: String\n\n This is field documentation for TestType.testField'); - ->>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts }); it('provides aliased field information', () => { const actual = testHover( -<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js 'query { thing { other: testField } }', new Position(0, 25), ); expect(actual).toEqual( 'TestType.testField: String\n\n This is field documentation for TestType.testField', ); -======= - 'query { thing { other: testField } }', - new Position(0, 25)); - - expect(actual).to.deep.equal( - 'TestType.testField: String\n\n This is field documentation for TestType.testField'); - ->>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts }); it('provides intermediate field information', () => { const actual = testHover( -<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js 'query { thing { testField } }', new Position(0, 10), ); expect(actual).toEqual( 'Query.thing: TestType\n\n This is field documentation for Query.thing', ); -======= - 'query { thing { testField } }', - new Position(0, 10)); - - expect(actual).to.deep.equal( - 'Query.thing: TestType\n\n This is field documentation for Query.thing'); - ->>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts }); it('provides list field information', () => { const actual = testHover( -<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js 'query { listOfThing { testField } }', new Position(0, 10), ); expect(actual).toEqual('Query.listOfThing: [TestType!]'); -======= - 'query { listOfThing { testField } }', - new Position(0, 10)); - - expect(actual).to.deep.equal('Query.listOfThing: [TestType!]'); ->>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts }); it('provides deprecated field information', () => { const actual = testHover( -<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js 'query { thing { testDeprecatedField } }', new Position(0, 20), ); expect(actual).toEqual( 'TestType.testDeprecatedField: Float\n\nDeprecated: deprecation reason', ); -======= - 'query { thing { testDeprecatedField } }', - new Position(0, 20)); - - expect(actual).to.deep.equal( - 'TestType.testDeprecatedField: Float\n\nDeprecated: deprecation reason'); - ->>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts }); it('provides enum field information', () => { const actual = testHover( -<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js 'query { thing { testEnumField } }', new Position(0, 20), ); expect(actual).toEqual('TestType.testEnumField: Color'); -======= - 'query { thing { testEnumField } }', - new Position(0, 20)); - - expect(actual).to.deep.equal('TestType.testEnumField: Color'); ->>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts }); it('provides scalar field information', () => { @@ -144,36 +94,20 @@ describe('getHoverInformation', () => { it('provides parameter type information', () => { const actual = testHover( -<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js 'query { parameterizedField(id: "foo") { testField } }', new Position(0, 28), ); expect(actual).toEqual('Query.parameterizedField(id: String!)'); -======= - 'query { parameterizedField(id: "foo") { testField } }', - new Position(0, 28)); - - expect(actual).to.deep.equal('Query.parameterizedField(id: String!)'); ->>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts }); it('provides directive information', () => { const actual = testHover( -<<<<<<< HEAD:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.js 'query { thing { testField @skip(if:true) } }', new Position(0, 30), ); expect(actual).toEqual( '@skip\n\nDirects the executor to skip this field or fragment when the `if` argument is true.', ); -======= - 'query { thing { testField @skip(if:true) } }', - new Position(0, 30)); - - expect(actual).to.deep.equal( - '@skip\n\nDirects the executor to skip this field or fragment when the `if` argument is true.'); - ->>>>>>> chore: first leg of converting LSP packages to TS:packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts }); it('provides union information', () => { diff --git a/packages/graphql-language-service-interface/src/autocompleteUtils.ts b/packages/graphql-language-service-interface/src/autocompleteUtils.ts index 92450ca3935..198dce43b0b 100644 --- a/packages/graphql-language-service-interface/src/autocompleteUtils.ts +++ b/packages/graphql-language-service-interface/src/autocompleteUtils.ts @@ -70,7 +70,7 @@ export function getFieldDef( // Utility for iterating through a CodeMirror parse state stack bottom-up. export function forEachState( stack: State, - fn: (state: State) => AllTypeInfo | null | undefined, + fn: (state: State) => AllTypeInfo | null | void, ): void { const reverseStateStack = []; let state: State | null | undefined = stack; diff --git a/packages/graphql-language-service-interface/src/getAutocompleteSuggestions.ts b/packages/graphql-language-service-interface/src/getAutocompleteSuggestions.ts index 10918f10bea..e2ef7f98733 100644 --- a/packages/graphql-language-service-interface/src/getAutocompleteSuggestions.ts +++ b/packages/graphql-language-service-interface/src/getAutocompleteSuggestions.ts @@ -13,16 +13,17 @@ import { GraphQLDirective, GraphQLSchema, GraphQLType, - GraphQLObjectType, - ArgumentNode, + GraphQLCompositeType, + GraphQLEnumValue, } from 'graphql'; + import { CompletionItem, ContextToken, State, - AllTypeInfo + AllTypeInfo, + Position } from 'graphql-language-service-types'; -import { Position } from 'graphql-language-service-utils'; import { GraphQLBoolean, @@ -40,7 +41,9 @@ import { isCompositeType, isInputType, } from 'graphql'; + import { CharacterStream, onlineParser } from 'graphql-language-service-parser'; + import { forEachState, getDefinitionState, @@ -200,7 +203,7 @@ function getSuggestionsForInputValues( token: ContextToken, typeInfo: AllTypeInfo, ): Array { - const namedInputType = getNamedType(typeInfo.inputType); + const namedInputType = getNamedType(typeInfo.inputType as GraphQLType); if (namedInputType instanceof GraphQLEnumType) { const values = namedInputType.getValues(); return hintList( @@ -237,7 +240,7 @@ function getSuggestionsForFragmentTypeConditions( typeInfo: AllTypeInfo, schema: GraphQLSchema, ): Array { - let possibleTypes; + let possibleTypes: GraphQLType[]; if (typeInfo.parentType) { if (isAbstractType(typeInfo.parentType)) { const abstractType = assertAbstractType(typeInfo.parentType); @@ -262,7 +265,7 @@ function getSuggestionsForFragmentTypeConditions( } return hintList( token, - possibleTypes.map(type => { + possibleTypes.map((type: GraphQLType) => { const namedType = getNamedType(type); return { label: String(type), @@ -296,11 +299,9 @@ function getSuggestionsForFragmentSpread( // Only include fragments which could possibly be spread here. isCompositeType(typeInfo.parentType) && isCompositeType(typeMap[frag.typeCondition.name.value]) && - doTypesOverlap( - schema, - typeInfo.parentType, - typeMap[frag.typeCondition.name.value], - ), + doTypesOverlap(schema, typeInfo.parentType, typeMap[ + frag.typeCondition.name.value + ] as GraphQLCompositeType), ); return hintList( @@ -317,7 +318,7 @@ function getFragmentDefinitions( queryText: string, ): Array { const fragmentDefs: FragmentDefinitionNode[] = []; - runOnlineParser(queryText, (_, state) => { + runOnlineParser(queryText, (_, state: State) => { if (state.kind === 'FragmentDefinition' && state.name && state.type) { fragmentDefs.push({ kind: 'FragmentDefinition', @@ -353,7 +354,8 @@ function getSuggestionsForVariableDefinition( const inputTypes = objectValues(inputTypeMap).filter(isInputType); return hintList( token, - inputTypes.map(type => ({ + // TODO: couldn't get Exclude<> working here + inputTypes.map((type: any) => ({ label: type.name, documentation: type.description, })), @@ -421,7 +423,7 @@ type callbackFnType = ( state: State, style: string, index: number, -) => undefined | 'BREAK'; +) => void | 'BREAK'; function runOnlineParser( queryText: string, @@ -519,22 +521,22 @@ function canUseDirective( return false; } -type Maybe = T | null | undefined; + // Utility for collecting rich type information given any token's state // from the graphql-mode parser. export function getTypeInfo( schema: GraphQLSchema, tokenState: State, ): AllTypeInfo { - let argDef: ArgumentNode; - let argDefs: ArgumentNode[]; - let directiveDef; - let enumValue; - let fieldDef; - let inputType: GraphQLType | null; - let objectFieldDefs; - let parentType: GraphQLType; - let type: Maybe>; + let argDef: AllTypeInfo['argDef']; + let argDefs: AllTypeInfo['argDefs']; + let directiveDef: AllTypeInfo['directiveDef']; + let enumValue: AllTypeInfo['enumValue']; + let fieldDef: AllTypeInfo['fieldDef']; + let inputType: AllTypeInfo['inputType']; + let objectFieldDefs: AllTypeInfo['objectFieldDefs']; + let parentType: AllTypeInfo['parentType']; + let type: AllTypeInfo['type']; forEachState(tokenState, state => { switch (state.kind) { @@ -566,7 +568,7 @@ export function getTypeInfo( } break; case 'SelectionSet': - parentType = getNamedType(type); + parentType = getNamedType(type as GraphQLType); break; case 'Directive': directiveDef = state.name ? schema.getDirective(state.name) : null; @@ -615,19 +617,22 @@ export function getTypeInfo( inputType = argDef && argDef.type; break; case 'EnumValue': - const enumType = getNamedType(inputType); + const enumType = getNamedType(inputType as GraphQLType); enumValue = enumType instanceof GraphQLEnumType - ? find(enumType.getValues(), val => val.value === state.name) + ? find( + enumType.getValues(), + (val: GraphQLEnumValue) => val.value === state.name, + ) : null; break; case 'ListValue': - const nullableType = getNullableType(inputType); + const nullableType = getNullableType(inputType as GraphQLType); inputType = nullableType instanceof GraphQLList ? nullableType.ofType : null; break; case 'ObjectValue': - const objectType = getNamedType(inputType); + const objectType = getNamedType(inputType as GraphQLType); objectFieldDefs = objectType instanceof GraphQLInputObjectType ? objectType.getFields() @@ -660,7 +665,7 @@ export function getTypeInfo( } // Returns the first item in the array which causes predicate to return truthy. -function find(array, predicate) { +function find(array: any[], predicate: Function) { for (let i = 0; i < array.length; i++) { if (predicate(array[i])) { return array[i]; diff --git a/packages/graphql-language-service-interface/src/getDefinition.ts b/packages/graphql-language-service-interface/src/getDefinition.ts index 07707937750..32edfc0ed35 100644 --- a/packages/graphql-language-service-interface/src/getDefinition.ts +++ b/packages/graphql-language-service-interface/src/getDefinition.ts @@ -16,6 +16,7 @@ import { TypeDefinitionNode, Location, } from 'graphql'; + import { Definition, DefinitionQueryResult, diff --git a/packages/graphql-language-service-interface/src/getDiagnostics.ts b/packages/graphql-language-service-interface/src/getDiagnostics.ts index 3da6acfbb03..297f407678b 100644 --- a/packages/graphql-language-service-interface/src/getDiagnostics.ts +++ b/packages/graphql-language-service-interface/src/getDiagnostics.ts @@ -18,7 +18,7 @@ import { import { Diagnostic, - CustomValidationRule, + CustomValidationRule } from 'graphql-language-service-types'; import invariant from 'assert'; @@ -26,11 +26,7 @@ import { findDeprecatedUsages, parse } from 'graphql'; import { CharacterStream, onlineParser } from 'graphql-language-service-parser'; -import { - Position, - Range, - validateWithCustomRules, -} from 'graphql-language-service-utils'; +import { Range, validateWithCustomRules, Position } from 'graphql-language-service-utils'; export const SEVERITY = { ERROR: 1, @@ -155,11 +151,13 @@ export function getRange(location: SourceLocation, queryText: string): Range { } invariant(stream, 'Expected Parser stream to be available.'); - const line = location.line - 1; + // @ts-ignore + // https://github.com/microsoft/TypeScript/pull/32695 const start = stream.getStartOfToken(); + // @ts-ignore + // https://github.com/microsoft/TypeScript/pull/32695 const end = stream.getCurrentPosition(); - return new Range(new Position(line, start), new Position(line, end)); } diff --git a/packages/graphql-language-service-interface/src/getHoverInformation.ts b/packages/graphql-language-service-interface/src/getHoverInformation.ts index c7d311782ab..682be41fc14 100644 --- a/packages/graphql-language-service-interface/src/getHoverInformation.ts +++ b/packages/graphql-language-service-interface/src/getHoverInformation.ts @@ -20,13 +20,9 @@ import { GraphQLField, GraphQLFieldConfig, } from 'graphql'; -import { - ContextToken, - AllTypeInfo, -} from 'graphql-language-service-types'; +import { ContextToken, AllTypeInfo } from 'graphql-language-service-types'; -import { Hover } from 'vscode-languageserver-types'; -import { Position } from 'graphql-language-service-utils'; +import { Hover, Position } from 'vscode-languageserver-types'; import { getTokenAtPosition, getTypeInfo } from './getAutocompleteSuggestions'; export function getHoverInformation( @@ -34,11 +30,11 @@ export function getHoverInformation( queryText: string, cursor: Position, contextToken?: ContextToken, -): Hover['contents'] | void | undefined { +): Hover['contents'] { const token = contextToken || getTokenAtPosition(queryText, cursor); if (!schema || !token || !token.state) { - return []; + return ''; } const state = token.state; @@ -87,6 +83,7 @@ export function getHoverInformation( renderDescription(into, options, typeInfo.type); return into.join('').trim(); } + return '' } function renderField(into: string[], typeInfo: AllTypeInfo, options: any) { @@ -94,7 +91,7 @@ function renderField(into: string[], typeInfo: AllTypeInfo, options: any) { renderTypeAnnotation(into, typeInfo, options, typeInfo.type as GraphQLType); } -function renderQualifiedField(into: string[], typeInfo: AllTypeInfo, options) { +function renderQualifiedField(into: string[], typeInfo: AllTypeInfo, options: any) { if (!typeInfo.fieldDef) { return; } @@ -106,7 +103,7 @@ function renderQualifiedField(into: string[], typeInfo: AllTypeInfo, options) { text(into, fieldName); } -function renderDirective(into: string[], typeInfo: AllTypeInfo, options: any) { +function renderDirective(into: string[], typeInfo: AllTypeInfo, _options: any) { if (!typeInfo.directiveDef) { return; } @@ -198,7 +195,7 @@ function renderDescription( function renderDeprecation( into: string[], - options: any, + _options: any, def: GraphQLField | GraphQLFieldConfig, ) { if (!def) { diff --git a/packages/graphql-language-service-interface/src/getOutline.ts b/packages/graphql-language-service-interface/src/getOutline.ts index fb7ea4028ef..ebda3c7f021 100644 --- a/packages/graphql-language-service-interface/src/getOutline.ts +++ b/packages/graphql-language-service-interface/src/getOutline.ts @@ -9,8 +9,22 @@ import { Outline, TextToken, TokenKind } from 'graphql-language-service-types'; -import { Kind, parse, visit, DefinitionNode, FieldNode, InlineFragmentNode, DocumentNode, FragmentSpreadNode, OperationDefinitionNode, NameNode, FragmentDefinitionNode, SelectionSetNode } from 'graphql'; -import { offsetToPosition } from 'graphql-language-service-utils'; +import { + Kind, + parse, + visit, + FieldNode, + InlineFragmentNode, + DocumentNode, + FragmentSpreadNode, + OperationDefinitionNode, + NameNode, + FragmentDefinitionNode, + SelectionSetNode, + SelectionNode, + DefinitionNode, +} from 'graphql'; +import { offsetToPosition, Position } from 'graphql-language-service-utils'; const { INLINE_FRAGMENT } = Kind; @@ -25,7 +39,24 @@ const OUTLINEABLE_KINDS = { InlineFragment: true, }; -type OutlineTreeConverterType = { [name: string]: Function }; +type OutlineTreeResult = { + representativeName: string; + startPosition: Position; + endPosition: Position; + children: SelectionSetNode[] | []; + tokenizedText: TextToken[]; +}; + +type OutlineTreeConverterType = { + [name: string]: ( + node: any, + ) => + | OutlineTreeResult + | SelectionSetNode + | readonly DefinitionNode[] + | readonly SelectionNode[] + | string; +}; export function getOutline(queryText: string): Outline | null | undefined { let ast; @@ -52,8 +83,10 @@ export function getOutline(queryText: string): Outline | null | undefined { } function outlineTreeConverter(docText: string): OutlineTreeConverterType { - const meta = (node: DefinitionNode) => ({ - representativeName: node.name as string, + // TODO: couldn't find a type that would work for all cases here, + // however the inference is not broken by this at least + const meta = (node: any) => ({ + representativeName: node.name, startPosition: offsetToPosition(docText, node.loc.start), endPosition: offsetToPosition(docText, node.loc.end), children: node.selectionSet || [], @@ -61,9 +94,10 @@ function outlineTreeConverter(docText: string): OutlineTreeConverterType { return { Field: (node: FieldNode) => { - const tokenizedText = 'alias' in node - ? [buildToken('plain', node.alias.value), buildToken('plain', ': ')] - : []; + const tokenizedText = + node.alias && node.alias.value + ? [buildToken('plain', node.alias.value), buildToken('plain', ': ')] + : []; tokenizedText.push(buildToken('plain', node.name.value)); return { tokenizedText, ...meta(node) }; }, @@ -71,15 +105,14 @@ function outlineTreeConverter(docText: string): OutlineTreeConverterType { tokenizedText: [ buildToken('keyword', node.operation), buildToken('whitespace', ' '), - buildToken('class-name', node.name.value), + buildToken('class-name', node.name ? node.name.value : ''), ], - ...meta(node), }), Document: (node: DocumentNode) => node.definitions, SelectionSet: (node: SelectionSetNode) => - concatMap(node.selections, child => { + concatMap(node.selections, (child: SelectionNode) => { return child.kind === INLINE_FRAGMENT ? child.selectionSet : child; }), Name: (node: NameNode) => node.value, @@ -89,7 +122,6 @@ function outlineTreeConverter(docText: string): OutlineTreeConverterType { buildToken('whitespace', ' '), buildToken('class-name', node.name.value), ], - ...meta(node), }), @@ -98,7 +130,6 @@ function outlineTreeConverter(docText: string): OutlineTreeConverterType { buildToken('plain', '...'), buildToken('class-name', node.name.value), ], - ...meta(node), }), @@ -110,7 +141,7 @@ function buildToken(kind: TokenKind, value: string | undefined): TextToken { return { kind, value }; } -function concatMap(arr: Array, fn: Function): Array { +function concatMap(arr: Readonly, fn: Function): Readonly { const res = []; for (let i = 0; i < arr.length; i++) { const x = fn(arr[i], i); diff --git a/packages/graphql-language-service-interface/tsconfig.tsbuildinfo b/packages/graphql-language-service-interface/tsconfig.tsbuildinfo new file mode 100644 index 00000000000..80376425b8c --- /dev/null +++ b/packages/graphql-language-service-interface/tsconfig.tsbuildinfo @@ -0,0 +1,3641 @@ +{ + "program": { + "fileInfos": { + "../../node_modules/typescript/lib/lib.es5.d.ts": { + "version": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1", + "signature": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1" + }, + "../../node_modules/typescript/lib/lib.es2015.d.ts": { + "version": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96", + "signature": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96" + }, + "../../node_modules/typescript/lib/lib.es2016.d.ts": { + "version": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1", + "signature": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1" + }, + "../../node_modules/typescript/lib/lib.es2017.d.ts": { + "version": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743", + "signature": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743" + }, + "../../node_modules/typescript/lib/lib.es2018.d.ts": { + "version": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091", + "signature": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091" + }, + "../../node_modules/typescript/lib/lib.dom.d.ts": { + "version": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f", + "signature": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f" + }, + "../../node_modules/typescript/lib/lib.es2015.core.d.ts": { + "version": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f", + "signature": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f" + }, + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": { + "version": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0", + "signature": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0" + }, + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": { + "version": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122", + "signature": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122" + }, + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": { + "version": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210", + "signature": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210" + }, + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": { + "version": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2", + "signature": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2" + }, + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": { + "version": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe", + "signature": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe" + }, + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": { + "version": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976", + "signature": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976" + }, + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": { + "version": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230", + "signature": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230" + }, + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": { + "version": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303", + "signature": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303" + }, + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": { + "version": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0", + "signature": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0" + }, + "../../node_modules/typescript/lib/lib.es2017.object.d.ts": { + "version": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4", + "signature": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4" + }, + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": { + "version": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f", + "signature": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f" + }, + "../../node_modules/typescript/lib/lib.es2017.string.d.ts": { + "version": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c", + "signature": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c" + }, + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": { + "version": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6", + "signature": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6" + }, + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": { + "version": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46", + "signature": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46" + }, + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": { + "version": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0", + "signature": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0" + }, + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": { + "version": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10", + "signature": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10" + }, + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": { + "version": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0", + "signature": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0" + }, + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": { + "version": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62", + "signature": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62" + }, + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": { + "version": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8", + "signature": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8" + }, + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": { + "version": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8", + "signature": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8" + }, + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": { + "version": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8", + "signature": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8" + }, + "../../node_modules/graphql/version.d.ts": { + "version": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2", + "signature": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2" + }, + "../../node_modules/graphql/tsutils/Maybe.d.ts": { + "version": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392", + "signature": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392" + }, + "../../node_modules/graphql/language/source.d.ts": { + "version": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd", + "signature": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd" + }, + "../../node_modules/graphql/language/tokenKind.d.ts": { + "version": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78", + "signature": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78" + }, + "../../node_modules/graphql/language/ast.d.ts": { + "version": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937", + "signature": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937" + }, + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": { + "version": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717", + "signature": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717" + }, + "../../node_modules/graphql/jsutils/Path.d.ts": { + "version": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b", + "signature": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b" + }, + "../../node_modules/graphql/type/definition.d.ts": { + "version": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7", + "signature": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7" + }, + "../../node_modules/graphql/language/directiveLocation.d.ts": { + "version": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b", + "signature": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b" + }, + "../../node_modules/graphql/type/directives.d.ts": { + "version": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d", + "signature": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d" + }, + "../../node_modules/graphql/type/schema.d.ts": { + "version": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491", + "signature": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491" + }, + "../../node_modules/graphql/language/location.d.ts": { + "version": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160", + "signature": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160" + }, + "../../node_modules/graphql/error/GraphQLError.d.ts": { + "version": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b", + "signature": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b" + }, + "../../node_modules/graphql/error/locatedError.d.ts": { + "version": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb", + "signature": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb" + }, + "../../node_modules/graphql/execution/execute.d.ts": { + "version": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4", + "signature": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4" + }, + "../../node_modules/graphql/graphql.d.ts": { + "version": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca", + "signature": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca" + }, + "../../node_modules/graphql/type/scalars.d.ts": { + "version": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11", + "signature": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11" + }, + "../../node_modules/graphql/type/introspection.d.ts": { + "version": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870", + "signature": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870" + }, + "../../node_modules/graphql/type/validate.d.ts": { + "version": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30", + "signature": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30" + }, + "../../node_modules/graphql/type/index.d.ts": { + "version": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62", + "signature": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62" + }, + "../../node_modules/graphql/language/printLocation.d.ts": { + "version": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1", + "signature": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1" + }, + "../../node_modules/graphql/language/kinds.d.ts": { + "version": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293", + "signature": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293" + }, + "../../node_modules/graphql/error/syntaxError.d.ts": { + "version": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b", + "signature": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b" + }, + "../../node_modules/graphql/error/formatError.d.ts": { + "version": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23", + "signature": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23" + }, + "../../node_modules/graphql/error/index.d.ts": { + "version": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0", + "signature": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0" + }, + "../../node_modules/graphql/language/lexer.d.ts": { + "version": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023", + "signature": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023" + }, + "../../node_modules/graphql/language/parser.d.ts": { + "version": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e", + "signature": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e" + }, + "../../node_modules/graphql/language/printer.d.ts": { + "version": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41", + "signature": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41" + }, + "../../node_modules/graphql/utilities/TypeInfo.d.ts": { + "version": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4", + "signature": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4" + }, + "../../node_modules/graphql/language/visitor.d.ts": { + "version": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9", + "signature": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9" + }, + "../../node_modules/graphql/language/predicates.d.ts": { + "version": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271", + "signature": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271" + }, + "../../node_modules/graphql/language/index.d.ts": { + "version": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420", + "signature": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420" + }, + "../../node_modules/graphql/execution/values.d.ts": { + "version": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5", + "signature": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5" + }, + "../../node_modules/graphql/execution/index.d.ts": { + "version": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24", + "signature": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24" + }, + "../../node_modules/graphql/subscription/subscribe.d.ts": { + "version": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22", + "signature": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22" + }, + "../../node_modules/graphql/subscription/index.d.ts": { + "version": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3", + "signature": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3" + }, + "../../node_modules/graphql/validation/ValidationContext.d.ts": { + "version": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14", + "signature": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14" + }, + "../../node_modules/graphql/validation/validate.d.ts": { + "version": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95", + "signature": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95" + }, + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": { + "version": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163", + "signature": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163" + }, + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": { + "version": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152", + "signature": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152" + }, + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": { + "version": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb", + "signature": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb" + }, + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": { + "version": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e", + "signature": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e" + }, + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": { + "version": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6", + "signature": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6" + }, + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": { + "version": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9", + "signature": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9" + }, + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": { + "version": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9", + "signature": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9" + }, + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": { + "version": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5", + "signature": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5" + }, + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": { + "version": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae", + "signature": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae" + }, + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": { + "version": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a", + "signature": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a" + }, + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": { + "version": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f", + "signature": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f" + }, + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": { + "version": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222", + "signature": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222" + }, + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": { + "version": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce", + "signature": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce" + }, + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": { + "version": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294", + "signature": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294" + }, + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": { + "version": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc", + "signature": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc" + }, + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": { + "version": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f", + "signature": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f" + }, + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": { + "version": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014", + "signature": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014" + }, + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": { + "version": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae", + "signature": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae" + }, + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": { + "version": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5", + "signature": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5" + }, + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": { + "version": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73", + "signature": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73" + }, + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": { + "version": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c", + "signature": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c" + }, + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": { + "version": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b", + "signature": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b" + }, + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": { + "version": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1", + "signature": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1" + }, + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": { + "version": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2", + "signature": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2" + }, + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": { + "version": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8", + "signature": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8" + }, + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": { + "version": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c", + "signature": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c" + }, + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": { + "version": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e", + "signature": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e" + }, + "../../node_modules/graphql/validation/specifiedRules.d.ts": { + "version": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d", + "signature": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d" + }, + "../../node_modules/graphql/validation/index.d.ts": { + "version": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423", + "signature": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423" + }, + "../../node_modules/graphql/utilities/introspectionQuery.d.ts": { + "version": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597", + "signature": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597" + }, + "../../node_modules/graphql/utilities/getOperationAST.d.ts": { + "version": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8", + "signature": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8" + }, + "../../node_modules/graphql/utilities/getOperationRootType.d.ts": { + "version": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc", + "signature": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc" + }, + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": { + "version": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d", + "signature": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d" + }, + "../../node_modules/graphql/utilities/buildClientSchema.d.ts": { + "version": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820", + "signature": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820" + }, + "../../node_modules/graphql/language/blockString.d.ts": { + "version": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86", + "signature": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86" + }, + "../../node_modules/graphql/utilities/buildASTSchema.d.ts": { + "version": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7", + "signature": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7" + }, + "../../node_modules/graphql/utilities/extendSchema.d.ts": { + "version": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b", + "signature": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b" + }, + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": { + "version": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896", + "signature": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896" + }, + "../../node_modules/graphql/utilities/schemaPrinter.d.ts": { + "version": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff", + "signature": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff" + }, + "../../node_modules/graphql/utilities/typeFromAST.d.ts": { + "version": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922", + "signature": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922" + }, + "../../node_modules/graphql/utilities/valueFromAST.d.ts": { + "version": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b", + "signature": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b" + }, + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": { + "version": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf", + "signature": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf" + }, + "../../node_modules/graphql/utilities/astFromValue.d.ts": { + "version": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae", + "signature": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae" + }, + "../../node_modules/graphql/utilities/coerceInputValue.d.ts": { + "version": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5", + "signature": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5" + }, + "../../node_modules/graphql/utilities/coerceValue.d.ts": { + "version": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197", + "signature": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197" + }, + "../../node_modules/graphql/utilities/isValidJSValue.d.ts": { + "version": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f", + "signature": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f" + }, + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": { + "version": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8", + "signature": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8" + }, + "../../node_modules/graphql/utilities/concatAST.d.ts": { + "version": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9", + "signature": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9" + }, + "../../node_modules/graphql/utilities/separateOperations.d.ts": { + "version": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a", + "signature": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a" + }, + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": { + "version": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c", + "signature": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c" + }, + "../../node_modules/graphql/utilities/typeComparators.d.ts": { + "version": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454", + "signature": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454" + }, + "../../node_modules/graphql/utilities/assertValidName.d.ts": { + "version": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5", + "signature": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5" + }, + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": { + "version": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a", + "signature": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a" + }, + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": { + "version": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b", + "signature": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b" + }, + "../../node_modules/graphql/utilities/index.d.ts": { + "version": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e", + "signature": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e" + }, + "../../node_modules/graphql/index.d.ts": { + "version": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6", + "signature": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6" + }, + "../../node_modules/graphql-request/dist/src/types.d.ts": { + "version": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4", + "signature": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4" + }, + "../../node_modules/graphql-request/dist/src/index.d.ts": { + "version": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786", + "signature": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786" + }, + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": { + "version": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a", + "signature": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a" + }, + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": { + "version": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc", + "signature": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc" + }, + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": { + "version": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644", + "signature": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644" + }, + "../../node_modules/graphql-config/lib/extensions/index.d.ts": { + "version": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41", + "signature": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41" + }, + "../../node_modules/graphql-config/lib/types.d.ts": { + "version": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6", + "signature": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6" + }, + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": { + "version": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca", + "signature": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca" + }, + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": { + "version": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf", + "signature": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf" + }, + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": { + "version": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca", + "signature": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca" + }, + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": { + "version": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411", + "signature": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411" + }, + "../../node_modules/graphql-config/lib/utils.d.ts": { + "version": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4", + "signature": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4" + }, + "../../node_modules/graphql-config/lib/errors.d.ts": { + "version": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9", + "signature": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9" + }, + "../../node_modules/graphql-config/lib/index.d.ts": { + "version": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4", + "signature": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4" + }, + "../graphql-language-service-types/src/index.ts": { + "version": "0eccbb489f441658fcd2acfe7811403eed555060b86fcf4683ef1ee34245ccc6" + }, + "../graphql-language-service-utils/src/Range.ts": { + "version": "58926b36007f993a2e6adb291d57f992bccd60f9b934bcb4dda254e6937a3e36" + }, + "../graphql-language-service-utils/src/getASTNodeAtPosition.ts": { + "version": "7495e8a9bd7eb6c386230570388eec0c6cf64779d2f52219a2c09a41e5db2e2a" + }, + "../graphql-language-service-utils/src/validateWithCustomRules.ts": { + "version": "59c17d228f43716a438348d3dfd2085ecc1393c481d9ed38d2ffed7867516a9b" + }, + "../graphql-language-service-utils/src/index.ts": { + "version": "b40b3ad0dc655bbc0f033315f9b1ab4a543f148759f82f18675b9cc5001e6b20" + }, + "../../node_modules/vscode-languageserver-types/lib/main.d.ts": { + "version": "8f3891a98196fd9653045a665ec2844148bff0a4f82a7ae53a5db591ed3c2efe", + "signature": "8f3891a98196fd9653045a665ec2844148bff0a4f82a7ae53a5db591ed3c2efe" + }, + "../graphql-language-service-parser/dist/CharacterStream.d.ts": { + "version": "1c504c5689ed0400b6c48b94721fb023f5b94813f1a6d99cdfcd4df867e880fe", + "signature": "1c504c5689ed0400b6c48b94721fb023f5b94813f1a6d99cdfcd4df867e880fe" + }, + "../graphql-language-service-parser/dist/Rules.d.ts": { + "version": "3c44f8e6343510059f4c2d062ed8637e58444333301022877ac49c635b76cc2f", + "signature": "3c44f8e6343510059f4c2d062ed8637e58444333301022877ac49c635b76cc2f" + }, + "../graphql-language-service-parser/dist/RuleHelpers.d.ts": { + "version": "5a3c9d7eac0cfa3b5308c6360d274fd3c2fd5d97bde42ba627088f064c54d677", + "signature": "5a3c9d7eac0cfa3b5308c6360d274fd3c2fd5d97bde42ba627088f064c54d677" + }, + "../graphql-language-service-parser/dist/onlineParser.d.ts": { + "version": "fe4a9dab6a32ebb38be6c09919fa8f547ec045d4071c43eeac4c59d9b9b42921", + "signature": "fe4a9dab6a32ebb38be6c09919fa8f547ec045d4071c43eeac4c59d9b9b42921" + }, + "../graphql-language-service-parser/dist/index.d.ts": { + "version": "86f0afb0728c90e507a529bfa6a4653a01bfba0ed816633e2557e104fffb6f31", + "signature": "86f0afb0728c90e507a529bfa6a4653a01bfba0ed816633e2557e104fffb6f31" + }, + "./src/autocompleteUtils.ts": { + "version": "6b3414ec7b09ac5ad26f94eaa3f857e410f8ad19d909c6c3401c83ae0efd4b17", + "signature": "e3da19e7c243a172a65646bf752c0cf6d3aae7f60e072c3fc1f09d9782a13bd5" + }, + "./src/getAutocompleteSuggestions.ts": { + "version": "519221b49ea0ad062cf98e296c736ec651468c3470e1691028284d3a30667e91", + "signature": "af6f81d61b06aca0235c739de229190e6842db1a49e10e185c78e3732dcfc103" + }, + "./src/getHoverInformation.ts": { + "version": "9a397a39bf5209427db4720ad24fc12864ad78f8089c52791dbd3d3df6cb7553", + "signature": "7031b1faec37c49ceb9d8c0cc06af6daf4a63df71785b61817da884f9ffbe5cf" + }, + "./src/getDiagnostics.ts": { + "version": "18a3a400eaf538c24c4013e72c71a3a75cea0382e4aaad55b43ae5e1419d9fd8", + "signature": "5b9d612bbf622f401a50b7295b87aeb70a237d339723cd823d3fe5a31cd219f3" + }, + "./src/getDefinition.ts": { + "version": "0053a97cba5101c37c341ac0321d5dcd47b4d90634bb917ead7ddd69e2fd7d8a", + "signature": "e065485e923ed3a2ce70b3ac4492137332332a4d81487a1f414a81471baf0ea9" + }, + "./src/GraphQLLanguageService.ts": { + "version": "fcae8d5a52bce41436cc5ff53b9f993e8ca3f0d141572a807e9fb741ca573078", + "signature": "c67999641cc9cd334fccd42bf191d9b3f74daf6ca32fba3a976a9a11f7025a3f" + }, + "./src/getOutline.ts": { + "version": "bc3235e5303230fbd4f8bec73ba9db67c9cdb82f92fe89224306ade2bf06076a", + "signature": "58e3f86e77d7495cba9cdcb1f17a21ad2fa2a18226b57effd9c24ce7dc84955b" + }, + "./src/index.ts": { + "version": "4b529b65968befc3704ca2872e843591d5d5ec0a16a9a808be5f15f3bdb6eca7", + "signature": "ae569044b7a4c89ee68a89c8c35ae8dd1d1bd6548145570415364c2644a4a44b" + }, + "../../node_modules/@types/node/globals.d.ts": { + "version": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed", + "signature": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed" + }, + "../../node_modules/@types/node/assert.d.ts": { + "version": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f", + "signature": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f" + }, + "../../node_modules/@types/node/async_hooks.d.ts": { + "version": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561", + "signature": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561" + }, + "../../node_modules/@types/node/buffer.d.ts": { + "version": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878", + "signature": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878" + }, + "../../node_modules/@types/events/index.d.ts": { + "version": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935", + "signature": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935" + }, + "../../node_modules/@types/node/child_process.d.ts": { + "version": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003", + "signature": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003" + }, + "../../node_modules/@types/node/cluster.d.ts": { + "version": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a", + "signature": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a" + }, + "../../node_modules/@types/node/console.d.ts": { + "version": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d", + "signature": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d" + }, + "../../node_modules/@types/node/constants.d.ts": { + "version": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424", + "signature": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424" + }, + "../../node_modules/@types/node/crypto.d.ts": { + "version": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b", + "signature": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b" + }, + "../../node_modules/@types/node/dgram.d.ts": { + "version": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30", + "signature": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30" + }, + "../../node_modules/@types/node/dns.d.ts": { + "version": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c", + "signature": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c" + }, + "../../node_modules/@types/node/domain.d.ts": { + "version": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa", + "signature": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa" + }, + "../../node_modules/@types/node/events.d.ts": { + "version": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c", + "signature": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c" + }, + "../../node_modules/@types/node/fs.d.ts": { + "version": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882", + "signature": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882" + }, + "../../node_modules/@types/node/http.d.ts": { + "version": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36", + "signature": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36" + }, + "../../node_modules/@types/node/http2.d.ts": { + "version": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d", + "signature": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d" + }, + "../../node_modules/@types/node/https.d.ts": { + "version": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6", + "signature": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6" + }, + "../../node_modules/@types/node/inspector.d.ts": { + "version": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c", + "signature": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c" + }, + "../../node_modules/@types/node/module.d.ts": { + "version": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66", + "signature": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66" + }, + "../../node_modules/@types/node/net.d.ts": { + "version": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4", + "signature": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4" + }, + "../../node_modules/@types/node/os.d.ts": { + "version": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486", + "signature": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486" + }, + "../../node_modules/@types/node/path.d.ts": { + "version": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36", + "signature": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36" + }, + "../../node_modules/@types/node/perf_hooks.d.ts": { + "version": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f", + "signature": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f" + }, + "../../node_modules/@types/node/process.d.ts": { + "version": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389", + "signature": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389" + }, + "../../node_modules/@types/node/punycode.d.ts": { + "version": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1", + "signature": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1" + }, + "../../node_modules/@types/node/querystring.d.ts": { + "version": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e", + "signature": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e" + }, + "../../node_modules/@types/node/readline.d.ts": { + "version": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24", + "signature": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24" + }, + "../../node_modules/@types/node/repl.d.ts": { + "version": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157", + "signature": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157" + }, + "../../node_modules/@types/node/stream.d.ts": { + "version": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd", + "signature": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd" + }, + "../../node_modules/@types/node/string_decoder.d.ts": { + "version": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432", + "signature": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432" + }, + "../../node_modules/@types/node/timers.d.ts": { + "version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9", + "signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9" + }, + "../../node_modules/@types/node/tls.d.ts": { + "version": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a", + "signature": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a" + }, + "../../node_modules/@types/node/trace_events.d.ts": { + "version": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662", + "signature": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662" + }, + "../../node_modules/@types/node/tty.d.ts": { + "version": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007", + "signature": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007" + }, + "../../node_modules/@types/node/url.d.ts": { + "version": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7", + "signature": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7" + }, + "../../node_modules/@types/node/util.d.ts": { + "version": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12", + "signature": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12" + }, + "../../node_modules/@types/node/v8.d.ts": { + "version": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725", + "signature": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725" + }, + "../../node_modules/@types/node/vm.d.ts": { + "version": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562", + "signature": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562" + }, + "../../node_modules/@types/node/worker_threads.d.ts": { + "version": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb", + "signature": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb" + }, + "../../node_modules/@types/node/zlib.d.ts": { + "version": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b", + "signature": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b" + }, + "../../node_modules/@types/node/base.d.ts": { + "version": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce", + "signature": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce" + }, + "../../node_modules/@types/node/ts3.2/util.d.ts": { + "version": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c", + "signature": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c" + }, + "../../node_modules/@types/node/ts3.2/globals.d.ts": { + "version": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1", + "signature": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1" + }, + "../../node_modules/@types/node/ts3.2/index.d.ts": { + "version": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c", + "signature": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c" + }, + "../../node_modules/@types/jest-diff/index.d.ts": { + "version": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06", + "signature": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06" + }, + "../../node_modules/jest-diff/build/types.d.ts": { + "version": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7", + "signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7" + }, + "../../node_modules/jest-diff/build/index.d.ts": { + "version": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4", + "signature": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4" + }, + "../../node_modules/@types/jest/index.d.ts": { + "version": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b", + "signature": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b" + } + }, + "options": { + "composite": true, + "target": 99, + "module": 99, + "moduleResolution": 2, + "esModuleInterop": true, + "sourceMap": true, + "declaration": true, + "declarationMap": true, + "removeComments": true, + "strict": true, + "noImplicitAny": true, + "noImplicitReturns": false, + "noFallthroughCasesInSwitch": true, + "noUnusedParameters": true, + "noUnusedLocals": true, + "forceConsistentCasingInFileNames": true, + "lib": [ + "lib.dom.d.ts", + "lib.es2017.d.ts", + "lib.es2018.asynciterable.d.ts" + ], + "types": [ + "node", + "jest" + ], + "baseUrl": "../..", + "paths": { + "graphql-language-*": [ + "graphql-language-*" + ] + }, + "rootDir": "./src", + "outDir": "./dist", + "configFilePath": "./tsconfig.json" + }, + "referencedMap": { + "../../node_modules/typescript/lib/lib.es5.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.dom.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/version.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/tsutils/Maybe.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/source.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/tokenKind.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/ast.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/Path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/definition.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/directiveLocation.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/directives.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/schema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/location.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/GraphQLError.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/locatedError.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/execute.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/graphql.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/scalars.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/introspection.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/scalars.d.ts", + "../../node_modules/graphql/type/introspection.d.ts", + "../../node_modules/graphql/type/validate.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printLocation.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/kinds.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/syntaxError.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/formatError.d.ts": [ + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/index.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/syntaxError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/error/formatError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/lexer.d.ts": [ + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/parser.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printer.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/visitor.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/predicates.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/index.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/language/printLocation.d.ts", + "../../node_modules/graphql/language/kinds.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/printer.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/predicates.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/values.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/execution/values.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/subscribe.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/index.d.ts": [ + "../../node_modules/graphql/subscription/subscribe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/ValidationContext.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/specifiedRules.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/index.d.ts": [ + "../../node_modules/graphql/validation/validate.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/specifiedRules.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/blockString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/blockString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/extendSchema.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/astFromValue.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceValue.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/concatAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/separateOperations.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeComparators.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/assertValidName.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/index.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/utilities/getOperationAST.d.ts", + "../../node_modules/graphql/utilities/getOperationRootType.d.ts", + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", + "../../node_modules/graphql/utilities/buildClientSchema.d.ts", + "../../node_modules/graphql/utilities/buildASTSchema.d.ts", + "../../node_modules/graphql/utilities/extendSchema.d.ts", + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", + "../../node_modules/graphql/utilities/schemaPrinter.d.ts", + "../../node_modules/graphql/utilities/typeFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", + "../../node_modules/graphql/utilities/astFromValue.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/utilities/coerceInputValue.d.ts", + "../../node_modules/graphql/utilities/coerceValue.d.ts", + "../../node_modules/graphql/utilities/isValidJSValue.d.ts", + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", + "../../node_modules/graphql/utilities/concatAST.d.ts", + "../../node_modules/graphql/utilities/separateOperations.d.ts", + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", + "../../node_modules/graphql/utilities/typeComparators.d.ts", + "../../node_modules/graphql/utilities/assertValidName.d.ts", + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/index.d.ts": [ + "../../node_modules/graphql/version.d.ts", + "../../node_modules/graphql/graphql.d.ts", + "../../node_modules/graphql/type/index.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/execution/index.d.ts", + "../../node_modules/graphql/subscription/index.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/utilities/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/index.d.ts": [ + "../../node_modules/graphql-request/dist/src/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ + "../../node_modules/graphql-request/dist/src/index.d.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/types.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/utils.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/errors.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/index.d.ts": [ + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", + "../../node_modules/graphql-config/lib/utils.d.ts", + "../../node_modules/graphql-config/lib/errors.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-types/src/index.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql-config/lib/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-utils/src/Range.ts": [ + "../../node_modules/graphql/language/index.d.ts", + "../graphql-language-service-types/src/index.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-utils/src/getASTNodeAtPosition.ts": [ + "../../node_modules/graphql/language/index.d.ts", + "../graphql-language-service-utils/src/Range.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-utils/src/validateWithCustomRules.ts": [ + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/type/index.d.ts", + "../graphql-language-service-types/src/index.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-utils/src/index.ts": [ + "../graphql-language-service-utils/src/getASTNodeAtPosition.ts", + "../graphql-language-service-utils/src/Range.ts", + "../graphql-language-service-utils/src/validateWithCustomRules.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/vscode-languageserver-types/lib/main.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-parser/dist/CharacterStream.d.ts": [ + "../graphql-language-service-types/src/index.ts", + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-parser/dist/Rules.d.ts": [ + "../graphql-language-service-types/src/index.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-parser/dist/RuleHelpers.d.ts": [ + "../graphql-language-service-types/src/index.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-parser/dist/onlineParser.d.ts": [ + "../graphql-language-service-parser/dist/Rules.d.ts", + "../graphql-language-service-types/src/index.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-parser/dist/index.d.ts": [ + "../graphql-language-service-parser/dist/CharacterStream.d.ts", + "../graphql-language-service-parser/dist/Rules.d.ts", + "../graphql-language-service-parser/dist/RuleHelpers.d.ts", + "../graphql-language-service-parser/dist/onlineParser.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/autocompleteUtils.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql/type/introspection.d.ts", + "../graphql-language-service-types/src/index.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/getAutocompleteSuggestions.ts": [ + "../../node_modules/graphql/index.d.ts", + "../graphql-language-service-types/src/index.ts", + "../graphql-language-service-utils/src/index.ts", + "../graphql-language-service-parser/dist/index.d.ts", + "./src/autocompleteUtils.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/getHoverInformation.ts": [ + "../../node_modules/graphql/index.d.ts", + "../graphql-language-service-types/src/index.ts", + "../../node_modules/vscode-languageserver-types/lib/main.d.ts", + "../graphql-language-service-utils/src/index.ts", + "./src/getAutocompleteSuggestions.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/getDiagnostics.ts": [ + "../../node_modules/graphql/index.d.ts", + "../graphql-language-service-types/src/index.ts", + "../../node_modules/@types/node/assert.d.ts", + "../graphql-language-service-parser/dist/index.d.ts", + "../graphql-language-service-utils/src/index.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/getDefinition.ts": [ + "../../node_modules/graphql/index.d.ts", + "../graphql-language-service-types/src/index.ts", + "../graphql-language-service-utils/src/index.ts", + "../../node_modules/@types/node/assert.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/GraphQLLanguageService.ts": [ + "../../node_modules/graphql/index.d.ts", + "../graphql-language-service-types/src/index.ts", + "../graphql-language-service-utils/src/index.ts", + "../../node_modules/vscode-languageserver-types/lib/main.d.ts", + "./src/getAutocompleteSuggestions.ts", + "./src/getHoverInformation.ts", + "./src/getDiagnostics.ts", + "./src/getDefinition.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/getOutline.ts": [ + "../graphql-language-service-types/src/index.ts", + "../../node_modules/graphql/index.d.ts", + "../graphql-language-service-utils/src/index.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/index.ts": [ + "./src/autocompleteUtils.ts", + "./src/getAutocompleteSuggestions.ts", + "./src/getDefinition.ts", + "./src/getDiagnostics.ts", + "./src/getOutline.ts", + "./src/getHoverInformation.ts", + "./src/GraphQLLanguageService.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/globals.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/assert.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/async_hooks.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/buffer.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/events/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/child_process.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/cluster.d.ts": [ + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/console.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/constants.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/crypto.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dgram.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dns.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/domain.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/fs.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http2.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/https.d.ts": [ + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/inspector.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/module.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/net.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/os.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/perf_hooks.d.ts": [ + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/process.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/punycode.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/querystring.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/readline.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/repl.d.ts": [ + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/stream.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/string_decoder.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/timers.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tls.d.ts": [ + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/trace_events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tty.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/url.d.ts": [ + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/util.d.ts": [ + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/v8.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/vm.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/worker_threads.d.ts": [ + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/zlib.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/base.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/assert.d.ts", + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/buffer.d.ts", + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/cluster.d.ts", + "../../node_modules/@types/node/console.d.ts", + "../../node_modules/@types/node/constants.d.ts", + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dgram.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/domain.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/http2.d.ts", + "../../node_modules/@types/node/https.d.ts", + "../../node_modules/@types/node/inspector.d.ts", + "../../node_modules/@types/node/module.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/os.d.ts", + "../../node_modules/@types/node/path.d.ts", + "../../node_modules/@types/node/perf_hooks.d.ts", + "../../node_modules/@types/node/process.d.ts", + "../../node_modules/@types/node/punycode.d.ts", + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/repl.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/string_decoder.d.ts", + "../../node_modules/@types/node/timers.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/trace_events.d.ts", + "../../node_modules/@types/node/tty.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/v8.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/worker_threads.d.ts", + "../../node_modules/@types/node/zlib.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/util.d.ts": [ + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/globals.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/index.d.ts": [ + "../../node_modules/@types/node/base.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts", + "../../node_modules/@types/node/ts3.2/globals.d.ts", + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/jest-diff/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/index.d.ts": [ + "../../node_modules/jest-diff/build/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/jest/index.d.ts": [ + "../../node_modules/jest-diff/build/index.d.ts", + "../../node_modules/@types/jest-diff/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ] + }, + "exportedModulesMap": { + "../../node_modules/typescript/lib/lib.es5.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.dom.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/version.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/index.d.ts": [ + "../../node_modules/graphql/version.d.ts", + "../../node_modules/graphql/graphql.d.ts", + "../../node_modules/graphql/type/index.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/execution/index.d.ts", + "../../node_modules/graphql/subscription/index.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/utilities/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "./src/getOutline.ts": [ + "../graphql-language-service-types/src/index.ts" + ], + "./src/index.ts": [ + "./src/autocompleteUtils.ts", + "./src/getAutocompleteSuggestions.ts", + "./src/getDefinition.ts", + "./src/getDiagnostics.ts", + "./src/getOutline.ts", + "./src/getHoverInformation.ts", + "./src/GraphQLLanguageService.ts" + ], + "./src/GraphQLLanguageService.ts": [ + "../graphql-language-service-types/src/index.ts", + "../graphql-language-service-utils/src/index.ts", + "../../node_modules/vscode-languageserver-types/lib/main.d.ts", + "../../node_modules/graphql/index.d.ts" + ], + "./src/getDefinition.ts": [ + "../../node_modules/graphql/index.d.ts", + "../graphql-language-service-types/src/index.ts" + ], + "./src/getDiagnostics.ts": [ + "../../node_modules/graphql/index.d.ts", + "../graphql-language-service-types/src/index.ts", + "../graphql-language-service-utils/src/index.ts" + ], + "./src/getHoverInformation.ts": [ + "../../node_modules/graphql/index.d.ts", + "../graphql-language-service-utils/src/index.ts", + "../graphql-language-service-types/src/index.ts", + "../../node_modules/vscode-languageserver-types/lib/main.d.ts" + ], + "./src/getAutocompleteSuggestions.ts": [ + "../../node_modules/graphql/index.d.ts", + "../graphql-language-service-utils/src/index.ts", + "../graphql-language-service-types/src/index.ts" + ], + "./src/autocompleteUtils.ts": [ + "../graphql-language-service-types/src/index.ts", + "../../node_modules/graphql/index.d.ts" + ], + "../graphql-language-service-parser/dist/onlineParser.d.ts": [ + "../graphql-language-service-parser/dist/Rules.d.ts", + "../graphql-language-service-types/src/index.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-parser/dist/index.d.ts": [ + "../graphql-language-service-parser/dist/CharacterStream.d.ts", + "../graphql-language-service-parser/dist/Rules.d.ts", + "../graphql-language-service-parser/dist/RuleHelpers.d.ts", + "../graphql-language-service-parser/dist/onlineParser.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-parser/dist/RuleHelpers.d.ts": [ + "../graphql-language-service-types/src/index.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-parser/dist/Rules.d.ts": [ + "../graphql-language-service-types/src/index.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../graphql-language-service-parser/dist/CharacterStream.d.ts": [ + "../graphql-language-service-types/src/index.ts", + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/utils.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/index.d.ts": [ + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", + "../../node_modules/graphql-config/lib/utils.d.ts", + "../../node_modules/graphql-config/lib/errors.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/types.d.ts": [ + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ + "../../node_modules/graphql-request/dist/src/index.d.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/tsutils/Maybe.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/astFromValue.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/index.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/utilities/getOperationAST.d.ts", + "../../node_modules/graphql/utilities/getOperationRootType.d.ts", + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", + "../../node_modules/graphql/utilities/buildClientSchema.d.ts", + "../../node_modules/graphql/utilities/buildASTSchema.d.ts", + "../../node_modules/graphql/utilities/extendSchema.d.ts", + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", + "../../node_modules/graphql/utilities/schemaPrinter.d.ts", + "../../node_modules/graphql/utilities/typeFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", + "../../node_modules/graphql/utilities/astFromValue.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/utilities/coerceInputValue.d.ts", + "../../node_modules/graphql/utilities/coerceValue.d.ts", + "../../node_modules/graphql/utilities/isValidJSValue.d.ts", + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", + "../../node_modules/graphql/utilities/concatAST.d.ts", + "../../node_modules/graphql/utilities/separateOperations.d.ts", + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", + "../../node_modules/graphql/utilities/typeComparators.d.ts", + "../../node_modules/graphql/utilities/assertValidName.d.ts", + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/blockString.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/index.d.ts": [ + "../../node_modules/graphql/validation/validate.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/specifiedRules.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/specifiedRules.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/ValidationContext.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/subscribe.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/subscription/index.d.ts": [ + "../../node_modules/graphql/subscription/subscribe.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/values.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/execution/values.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/visitor.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/index.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/language/printLocation.d.ts", + "../../node_modules/graphql/language/kinds.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/printer.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/predicates.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/graphql.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/execution/execute.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/GraphQLError.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/assertValidName.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceValue.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/index.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/syntaxError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/error/formatError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/lexer.d.ts": [ + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/parser.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/formatError.d.ts": [ + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/syntaxError.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/validate.d.ts": [ + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/index.d.ts": [ + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/scalars.d.ts", + "../../node_modules/graphql/type/introspection.d.ts", + "../../node_modules/graphql/type/validate.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/error/locatedError.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/schema.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeComparators.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/extendSchema.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/definition.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/introspection.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/scalars.d.ts": [ + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/type/directives.d.ts": [ + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/source.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printLocation.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/location.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/ast.d.ts": [ + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/separateOperations.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/utilities/concatAST.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/predicates.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/printer.d.ts": [ + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/tokenKind.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/jsutils/Path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/directiveLocation.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/kinds.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql/language/blockString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-request/dist/src/index.d.ts": [ + "../../node_modules/graphql-request/dist/src/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/graphql-config/lib/errors.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/vscode-languageserver-types/lib/main.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/globals.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/assert.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/base.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/assert.d.ts", + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/buffer.d.ts", + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/cluster.d.ts", + "../../node_modules/@types/node/console.d.ts", + "../../node_modules/@types/node/constants.d.ts", + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dgram.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/domain.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/http2.d.ts", + "../../node_modules/@types/node/https.d.ts", + "../../node_modules/@types/node/inspector.d.ts", + "../../node_modules/@types/node/module.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/os.d.ts", + "../../node_modules/@types/node/path.d.ts", + "../../node_modules/@types/node/perf_hooks.d.ts", + "../../node_modules/@types/node/process.d.ts", + "../../node_modules/@types/node/punycode.d.ts", + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/repl.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/string_decoder.d.ts", + "../../node_modules/@types/node/timers.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/trace_events.d.ts", + "../../node_modules/@types/node/tty.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/v8.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/worker_threads.d.ts", + "../../node_modules/@types/node/zlib.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/index.d.ts": [ + "../../node_modules/@types/node/base.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts", + "../../node_modules/@types/node/ts3.2/globals.d.ts", + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/node/async_hooks.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/perf_hooks.d.ts": [ + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/buffer.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/events/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/child_process.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/cluster.d.ts": [ + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/console.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/constants.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/crypto.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tls.d.ts": [ + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/https.d.ts": [ + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http2.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dgram.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/dns.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/net.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/tty.d.ts": [ + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/http.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/domain.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/worker_threads.d.ts": [ + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/stream.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/zlib.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/v8.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/readline.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/repl.d.ts": [ + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/fs.d.ts": [ + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/inspector.d.ts": [ + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/module.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/os.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/path.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/process.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/punycode.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/querystring.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/url.d.ts": [ + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/string_decoder.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/timers.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/trace_events.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/util.d.ts": [ + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/jest/index.d.ts": [ + "../../node_modules/jest-diff/build/index.d.ts", + "../../node_modules/@types/jest-diff/index.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/index.d.ts": [ + "../../node_modules/jest-diff/build/types.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/jest-diff/build/types.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/jest-diff/index.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/globals.d.ts": [ + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ], + "../../node_modules/@types/node/ts3.2/util.d.ts": [ + "../../node_modules/@types/node/util.d.ts" + ], + "../../node_modules/@types/node/vm.d.ts": [ + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts" + ] + }, + "semanticDiagnosticsPerFile": [ + "../../node_modules/graphql/version.d.ts", + "../../node_modules/graphql/tsutils/Maybe.d.ts", + "../../node_modules/graphql/language/source.d.ts", + "../../node_modules/graphql/language/tokenKind.d.ts", + "../../node_modules/graphql/language/ast.d.ts", + "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", + "../../node_modules/graphql/jsutils/Path.d.ts", + "../../node_modules/graphql/type/definition.d.ts", + "../../node_modules/graphql/language/directiveLocation.d.ts", + "../../node_modules/graphql/type/directives.d.ts", + "../../node_modules/graphql/type/schema.d.ts", + "../../node_modules/graphql/language/location.d.ts", + "../../node_modules/graphql/error/GraphQLError.d.ts", + "../../node_modules/graphql/error/locatedError.d.ts", + "../../node_modules/graphql/execution/execute.d.ts", + "../../node_modules/graphql/graphql.d.ts", + "../../node_modules/graphql/type/scalars.d.ts", + "../../node_modules/graphql/type/introspection.d.ts", + "../../node_modules/graphql/type/validate.d.ts", + "../../node_modules/graphql/type/index.d.ts", + "../../node_modules/graphql/language/printLocation.d.ts", + "../../node_modules/graphql/language/kinds.d.ts", + "../../node_modules/graphql/error/syntaxError.d.ts", + "../../node_modules/graphql/error/formatError.d.ts", + "../../node_modules/graphql/error/index.d.ts", + "../../node_modules/graphql/language/lexer.d.ts", + "../../node_modules/graphql/language/parser.d.ts", + "../../node_modules/graphql/language/printer.d.ts", + "../../node_modules/graphql/utilities/TypeInfo.d.ts", + "../../node_modules/graphql/language/visitor.d.ts", + "../../node_modules/graphql/language/predicates.d.ts", + "../../node_modules/graphql/language/index.d.ts", + "../../node_modules/graphql/execution/values.d.ts", + "../../node_modules/graphql/execution/index.d.ts", + "../../node_modules/graphql/subscription/subscribe.d.ts", + "../../node_modules/graphql/subscription/index.d.ts", + "../../node_modules/graphql/validation/ValidationContext.d.ts", + "../../node_modules/graphql/validation/validate.d.ts", + "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", + "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", + "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", + "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", + "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", + "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", + "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", + "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", + "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", + "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", + "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", + "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", + "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", + "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", + "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", + "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", + "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", + "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", + "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", + "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", + "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", + "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", + "../../node_modules/graphql/validation/specifiedRules.d.ts", + "../../node_modules/graphql/validation/index.d.ts", + "../../node_modules/graphql/utilities/introspectionQuery.d.ts", + "../../node_modules/graphql/utilities/getOperationAST.d.ts", + "../../node_modules/graphql/utilities/getOperationRootType.d.ts", + "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", + "../../node_modules/graphql/utilities/buildClientSchema.d.ts", + "../../node_modules/graphql/language/blockString.d.ts", + "../../node_modules/graphql/utilities/buildASTSchema.d.ts", + "../../node_modules/graphql/utilities/extendSchema.d.ts", + "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", + "../../node_modules/graphql/utilities/schemaPrinter.d.ts", + "../../node_modules/graphql/utilities/typeFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromAST.d.ts", + "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", + "../../node_modules/graphql/utilities/astFromValue.d.ts", + "../../node_modules/graphql/utilities/coerceInputValue.d.ts", + "../../node_modules/graphql/utilities/coerceValue.d.ts", + "../../node_modules/graphql/utilities/isValidJSValue.d.ts", + "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", + "../../node_modules/graphql/utilities/concatAST.d.ts", + "../../node_modules/graphql/utilities/separateOperations.d.ts", + "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", + "../../node_modules/graphql/utilities/typeComparators.d.ts", + "../../node_modules/graphql/utilities/assertValidName.d.ts", + "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", + "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", + "../../node_modules/graphql/utilities/index.d.ts", + "../../node_modules/graphql/index.d.ts", + "../../node_modules/graphql-request/dist/src/types.d.ts", + "../../node_modules/graphql-request/dist/src/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", + "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", + "../../node_modules/graphql-config/lib/extensions/index.d.ts", + "../../node_modules/graphql-config/lib/types.d.ts", + "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", + "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", + "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", + "../../node_modules/graphql-config/lib/utils.d.ts", + "../../node_modules/graphql-config/lib/errors.d.ts", + "../../node_modules/graphql-config/lib/index.d.ts", + "../graphql-language-service-types/src/index.ts", + "../graphql-language-service-utils/src/Range.ts", + "../graphql-language-service-utils/src/getASTNodeAtPosition.ts", + "../graphql-language-service-utils/src/validateWithCustomRules.ts", + "../graphql-language-service-utils/src/index.ts", + "../../node_modules/vscode-languageserver-types/lib/main.d.ts", + "../graphql-language-service-parser/dist/CharacterStream.d.ts", + "../graphql-language-service-parser/dist/Rules.d.ts", + "../graphql-language-service-parser/dist/RuleHelpers.d.ts", + "../graphql-language-service-parser/dist/onlineParser.d.ts", + "../graphql-language-service-parser/dist/index.d.ts", + "./src/autocompleteUtils.ts", + "./src/getAutocompleteSuggestions.ts", + "./src/getHoverInformation.ts", + "./src/getDiagnostics.ts", + "./src/getDefinition.ts", + "./src/GraphQLLanguageService.ts", + "./src/getOutline.ts", + "./src/index.ts", + "../../node_modules/@types/node/globals.d.ts", + "../../node_modules/@types/node/assert.d.ts", + "../../node_modules/@types/node/async_hooks.d.ts", + "../../node_modules/@types/node/buffer.d.ts", + "../../node_modules/@types/events/index.d.ts", + "../../node_modules/@types/node/child_process.d.ts", + "../../node_modules/@types/node/cluster.d.ts", + "../../node_modules/@types/node/console.d.ts", + "../../node_modules/@types/node/constants.d.ts", + "../../node_modules/@types/node/crypto.d.ts", + "../../node_modules/@types/node/dgram.d.ts", + "../../node_modules/@types/node/dns.d.ts", + "../../node_modules/@types/node/domain.d.ts", + "../../node_modules/@types/node/events.d.ts", + "../../node_modules/@types/node/fs.d.ts", + "../../node_modules/@types/node/http.d.ts", + "../../node_modules/@types/node/http2.d.ts", + "../../node_modules/@types/node/https.d.ts", + "../../node_modules/@types/node/inspector.d.ts", + "../../node_modules/@types/node/module.d.ts", + "../../node_modules/@types/node/net.d.ts", + "../../node_modules/@types/node/os.d.ts", + "../../node_modules/@types/node/path.d.ts", + "../../node_modules/@types/node/perf_hooks.d.ts", + "../../node_modules/@types/node/process.d.ts", + "../../node_modules/@types/node/punycode.d.ts", + "../../node_modules/@types/node/querystring.d.ts", + "../../node_modules/@types/node/readline.d.ts", + "../../node_modules/@types/node/repl.d.ts", + "../../node_modules/@types/node/stream.d.ts", + "../../node_modules/@types/node/string_decoder.d.ts", + "../../node_modules/@types/node/timers.d.ts", + "../../node_modules/@types/node/tls.d.ts", + "../../node_modules/@types/node/trace_events.d.ts", + "../../node_modules/@types/node/tty.d.ts", + "../../node_modules/@types/node/url.d.ts", + "../../node_modules/@types/node/util.d.ts", + "../../node_modules/@types/node/v8.d.ts", + "../../node_modules/@types/node/vm.d.ts", + "../../node_modules/@types/node/worker_threads.d.ts", + "../../node_modules/@types/node/zlib.d.ts", + "../../node_modules/@types/node/base.d.ts", + "../../node_modules/@types/node/ts3.2/util.d.ts", + "../../node_modules/@types/node/ts3.2/globals.d.ts", + "../../node_modules/@types/node/ts3.2/index.d.ts", + "../../node_modules/@types/jest-diff/index.d.ts", + "../../node_modules/jest-diff/build/types.d.ts", + "../../node_modules/jest-diff/build/index.d.ts", + "../../node_modules/@types/jest/index.d.ts", + "../../node_modules/typescript/lib/lib.es2015.d.ts", + "../../node_modules/typescript/lib/lib.es2016.d.ts", + "../../node_modules/typescript/lib/lib.es2017.d.ts", + "../../node_modules/typescript/lib/lib.es2018.d.ts", + "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts", + "../../node_modules/typescript/lib/lib.esnext.intl.d.ts", + "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts", + "../../node_modules/typescript/lib/lib.es2018.promise.d.ts", + "../../node_modules/typescript/lib/lib.es2018.intl.d.ts", + "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts", + "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts", + "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts", + "../../node_modules/typescript/lib/lib.es2017.intl.d.ts", + "../../node_modules/typescript/lib/lib.es2017.string.d.ts", + "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts", + "../../node_modules/typescript/lib/lib.es2017.object.d.ts", + "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts", + "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts", + "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts", + "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts", + "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts", + "../../node_modules/typescript/lib/lib.es2015.promise.d.ts", + "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts", + "../../node_modules/typescript/lib/lib.es2015.generator.d.ts", + "../../node_modules/typescript/lib/lib.es2015.collection.d.ts", + "../../node_modules/typescript/lib/lib.es2015.core.d.ts", + "../../node_modules/typescript/lib/lib.dom.d.ts", + "../../node_modules/typescript/lib/lib.es5.d.ts" + ] + }, + "version": "3.6.3" +} \ No newline at end of file diff --git a/packages/graphql-language-service-parser/package.json b/packages/graphql-language-service-parser/package.json index fdb60423f3b..b263ab0b17c 100644 --- a/packages/graphql-language-service-parser/package.json +++ b/packages/graphql-language-service-parser/package.json @@ -19,8 +19,8 @@ "keywords": [ "graphql" ], - "main": "dist/index.js", - "types": "dist/index.d.ts", + "main": "./dist/index.js", + "typings": "./dist/index.d.ts", "scripts": { "build": "yarn run build-js && yarn run build-flow", "build-js": "node ../../resources/buildJs.js", diff --git a/packages/graphql-language-service-parser/src/Rules.ts b/packages/graphql-language-service-parser/src/Rules.ts index f3088949b9f..3fe9d6168e1 100644 --- a/packages/graphql-language-service-parser/src/Rules.ts +++ b/packages/graphql-language-service-parser/src/Rules.ts @@ -12,6 +12,7 @@ import { State, Token, Rule, + RuleKind, ParseRule, } from 'graphql-language-service-types'; import { opt, list, butNot, t, p } from './RuleHelpers'; @@ -47,6 +48,8 @@ export const LexRules = { Comment: /^#.*/, }; + + /** * The parser rules. These are very close to, but not exactly the same as the * spec. Minor deviations allow for a simpler implementation. The resulting @@ -54,7 +57,7 @@ export const LexRules = { */ export const ParseRules: { [name: string]: ParseRule } = { Document: [list('Definition')], - Definition(token: Token) { + Definition(token: Token): RuleKind | void { switch (token.value) { case '{': return 'ShortQuery'; @@ -85,6 +88,7 @@ export const ParseRules: { [name: string]: ParseRule } = { case 'directive': return 'DirectiveDef'; } + }, // Note: instead of "Operation", these rules have been separated out. ShortQuery: ['SelectionSet'], @@ -284,7 +288,6 @@ export const ParseRules: { [name: string]: ParseRule } = { list('InputValueDef'), p('}'), ], - ExtendDef: [word('extend'), 'ObjectTypeDef'], DirectiveDef: [ word('directive'), diff --git a/packages/graphql-language-service-parser/src/onlineParser.ts b/packages/graphql-language-service-parser/src/onlineParser.ts index d3ab5b8153d..4d0c5330850 100644 --- a/packages/graphql-language-service-parser/src/onlineParser.ts +++ b/packages/graphql-language-service-parser/src/onlineParser.ts @@ -36,6 +36,7 @@ import { State, Token, Rule, + RuleKind, } from 'graphql-language-service-types'; import { LexRules, ParseRules, isIgnored } from './Rules'; @@ -177,7 +178,7 @@ function getToken( // A string represents a Rule if (typeof expected === 'string') { - pushRule(parseRules, state, expected); + pushRule(parseRules, state, expected as RuleKind); continue; } @@ -229,7 +230,7 @@ const SpecialParseRules = { function pushRule( rules: typeof ParseRulesType, state: State, - ruleKind: string, + ruleKind: RuleKind, ): void { if (!rules[ruleKind]) { throw new TypeError('Unknown rule: ' + ruleKind); diff --git a/packages/graphql-language-service-parser/tsconfig.tsbuildinfo b/packages/graphql-language-service-parser/tsconfig.tsbuildinfo index c6a09ac11a9..70e6045c4e8 100644 --- a/packages/graphql-language-service-parser/tsconfig.tsbuildinfo +++ b/packages/graphql-language-service-parser/tsconfig.tsbuildinfo @@ -142,8 +142,8 @@ "signature": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b" }, "../../node_modules/graphql/type/definition.d.ts": { - "version": "7fab802d7b9d8067b0903ce65934e80325a621304831a2b9a60d7630134c12e4", - "signature": "7fab802d7b9d8067b0903ce65934e80325a621304831a2b9a60d7630134c12e4" + "version": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7", + "signature": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7" }, "../../node_modules/graphql/language/directiveLocation.d.ts": { "version": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b", @@ -546,7 +546,7 @@ "signature": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4" }, "../graphql-language-service-types/src/index.ts": { - "version": "522a600e28a0b23ca8483484fce636240b7ec3fec62f48e6ff40567a74297d85" + "version": "0eccbb489f441658fcd2acfe7811403eed555060b86fcf4683ef1ee34245ccc6" }, "./src/CharacterStream.ts": { "version": "a649cf8370c20f25b354c264ff1ac13721e46d51d249516110098e6816bd3a0f", @@ -557,11 +557,11 @@ "signature": "5a3c9d7eac0cfa3b5308c6360d274fd3c2fd5d97bde42ba627088f064c54d677" }, "./src/Rules.ts": { - "version": "484b1dd6c0248887f8c5b3134042725c1b421f99270acec5a7207acafd7e5f25", + "version": "3a346c6e96645425da14950dc31ce466b3f54b0197152c72534a267e351a9c03", "signature": "3c44f8e6343510059f4c2d062ed8637e58444333301022877ac49c635b76cc2f" }, "./src/onlineParser.ts": { - "version": "3e01b316ff50aebd6949b7614ba462fe81a176cc03837faa215f65dce3c66c31", + "version": "b5e145c94034418083b23022a31b193dcf2708e6c27260079f3186d42f28743f", "signature": "fe4a9dab6a32ebb38be6c09919fa8f547ec045d4071c43eeac4c59d9b9b42921" }, "./src/index.ts": { @@ -589,8 +589,8 @@ "signature": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935" }, "../../node_modules/@types/node/child_process.d.ts": { - "version": "123366127434e33eade36f3d06653dbc7457397fc93cfdd100776cfc12b6734c", - "signature": "123366127434e33eade36f3d06653dbc7457397fc93cfdd100776cfc12b6734c" + "version": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003", + "signature": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003" }, "../../node_modules/@types/node/cluster.d.ts": { "version": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a", @@ -757,8 +757,8 @@ "signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7" }, "../../node_modules/jest-diff/build/index.d.ts": { - "version": "b2c5ded6320c45c5d3e1c481c5d2808adf24dd1a59ffc944b72a418e95da5b17", - "signature": "b2c5ded6320c45c5d3e1c481c5d2808adf24dd1a59ffc944b72a418e95da5b17" + "version": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4", + "signature": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4" }, "../../node_modules/@types/jest/index.d.ts": { "version": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b", diff --git a/packages/graphql-language-service-types/src/index.ts b/packages/graphql-language-service-types/src/index.ts index cac041c38b9..90770ce68d8 100644 --- a/packages/graphql-language-service-types/src/index.ts +++ b/packages/graphql-language-service-types/src/index.ts @@ -7,7 +7,7 @@ * */ -import { GraphQLSchema } from 'graphql'; +import { GraphQLSchema, KindEnum } from 'graphql'; import { ASTNode, DocumentNode, @@ -20,7 +20,7 @@ import { GraphQLArgument, GraphQLEnumValue, GraphQLField, - GraphQLInputField, + GraphQLInputFieldMap, GraphQLType, } from 'graphql/type/definition'; import { GraphQLDirective } from 'graphql/type/directives'; @@ -164,9 +164,11 @@ export type CachedContent = { range: Range | null | undefined; }; -export type RuleOrString = Rule | string +export type RuleOrString = Rule | string; -export type ParseRule = RuleOrString[] | ((token: Token, stream: CharacterStream) => string | null | undefined) +export type ParseRule = + | RuleOrString[] + | ((token: Token, stream: CharacterStream) => string | null | void); export type Token = { kind: string; @@ -182,12 +184,36 @@ export type Rule = { ofRule?: Rule | string; }; +export type RuleKind = + | KindEnum + | 'AliasedField' + | 'Arguments' + | 'ShortQuery' + | 'Query' + | 'Mutation' + | 'Subscription' + | 'TypeCondition' + | 'Invalid' + | 'Comment' + | 'SchemaDef' + | 'ScalarDef' + | 'ObjectTypeDef' + | 'InterfaceDef' + | 'UnionDef' + | 'EnumDef' + | 'FieldDef' + | 'InputDef' + | 'InputValueDef' + | 'ArgumentsDef' + | 'ExtendDef' + | 'DirectiveDef'; + export type State = { level: number; levels?: Array; prevState: State | null | undefined; rule: ParseRule | null | undefined; - kind: string | null | undefined; + kind: RuleKind | null | undefined; name: string | null | undefined; type: string | null | undefined; step: number; @@ -230,7 +256,7 @@ export type AllTypeInfo = { enumValue: GraphQLEnumValue | null | undefined; argDef: GraphQLArgument | null | undefined; argDefs: Array | null | undefined; - objectFieldDefs: GraphQLInputField | null | undefined; + objectFieldDefs: GraphQLInputFieldMap | null | undefined; }; export type FragmentInfo = { @@ -251,7 +277,9 @@ export type ObjectTypeInfo = { definition: TypeDefinitionNode; }; -export type CustomValidationRule = (context: ValidationContext) => Object; +export type CustomValidationRule = ( + context: ValidationContext, +) => Record; export type Diagnostic = { range: Range; @@ -265,6 +293,7 @@ export type CompletionItem = { label: string; kind?: number; detail?: string; + sortText?: string; documentation?: string | null | undefined; // GraphQL Deprecation information isDeprecated?: boolean | null | undefined; diff --git a/packages/graphql-language-service-types/tsconfig.tsbuildinfo b/packages/graphql-language-service-types/tsconfig.tsbuildinfo index dd8eb09ccff..39f8748c21f 100644 --- a/packages/graphql-language-service-types/tsconfig.tsbuildinfo +++ b/packages/graphql-language-service-types/tsconfig.tsbuildinfo @@ -142,8 +142,8 @@ "signature": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b" }, "../../node_modules/graphql/type/definition.d.ts": { - "version": "7fab802d7b9d8067b0903ce65934e80325a621304831a2b9a60d7630134c12e4", - "signature": "7fab802d7b9d8067b0903ce65934e80325a621304831a2b9a60d7630134c12e4" + "version": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7", + "signature": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7" }, "../../node_modules/graphql/language/directiveLocation.d.ts": { "version": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b", @@ -546,8 +546,8 @@ "signature": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4" }, "./src/index.ts": { - "version": "522a600e28a0b23ca8483484fce636240b7ec3fec62f48e6ff40567a74297d85", - "signature": "d11c0f1cdac0931ac05bc373fd17debb769b98d240bf0ce0f8690c46cadcd78a" + "version": "0eccbb489f441658fcd2acfe7811403eed555060b86fcf4683ef1ee34245ccc6", + "signature": "6c53f93b9c40562253e73e4a0e85ce5145b5772810b6421bc99ba72f6fac46b4" }, "../../node_modules/@types/node/globals.d.ts": { "version": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed", @@ -570,8 +570,8 @@ "signature": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935" }, "../../node_modules/@types/node/child_process.d.ts": { - "version": "123366127434e33eade36f3d06653dbc7457397fc93cfdd100776cfc12b6734c", - "signature": "123366127434e33eade36f3d06653dbc7457397fc93cfdd100776cfc12b6734c" + "version": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003", + "signature": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003" }, "../../node_modules/@types/node/cluster.d.ts": { "version": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a", @@ -738,8 +738,8 @@ "signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7" }, "../../node_modules/jest-diff/build/index.d.ts": { - "version": "b2c5ded6320c45c5d3e1c481c5d2808adf24dd1a59ffc944b72a418e95da5b17", - "signature": "b2c5ded6320c45c5d3e1c481c5d2808adf24dd1a59ffc944b72a418e95da5b17" + "version": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4", + "signature": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4" }, "../../node_modules/@types/jest/index.d.ts": { "version": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b", diff --git a/packages/graphql-language-service-utils/src/__tests__/Range-test.ts b/packages/graphql-language-service-utils/src/__tests__/Range-test.ts index 6db22c75212..8a558859e30 100644 --- a/packages/graphql-language-service-utils/src/__tests__/Range-test.ts +++ b/packages/graphql-language-service-utils/src/__tests__/Range-test.ts @@ -44,9 +44,9 @@ describe('Position', () => { }); describe('Range', () => { - let start; - let end; - let range; + let start: Position; + let end: Position; + let range: Range; beforeAll(() => { start = new Position(2, 3); diff --git a/packages/graphql-language-service-utils/src/__tests__/validateWithCustomRules-test.ts b/packages/graphql-language-service-utils/src/__tests__/validateWithCustomRules-test.ts index ab87f53518e..88a5ad9351d 100644 --- a/packages/graphql-language-service-utils/src/__tests__/validateWithCustomRules-test.ts +++ b/packages/graphql-language-service-utils/src/__tests__/validateWithCustomRules-test.ts @@ -7,13 +7,13 @@ */ import { readFileSync } from 'fs'; -import { GraphQLError, buildSchema, parse } from 'graphql'; +import { GraphQLError, buildSchema, parse, GraphQLSchema } from 'graphql'; import { join } from 'path'; import { validateWithCustomRules } from '../validateWithCustomRules'; describe('validateWithCustomRules', () => { - let schema; + let schema: GraphQLSchema; beforeEach(() => { const schemaPath = join(__dirname, '__schema__', 'StarWarsSchema.graphql'); diff --git a/packages/graphql-language-service-utils/src/getASTNodeAtPosition.ts b/packages/graphql-language-service-utils/src/getASTNodeAtPosition.ts index 2f00a1d4de7..9f772f60264 100644 --- a/packages/graphql-language-service-utils/src/getASTNodeAtPosition.ts +++ b/packages/graphql-language-service-utils/src/getASTNodeAtPosition.ts @@ -9,16 +9,16 @@ import { ASTNode } from 'graphql/language'; -import { Position } from './Range'; +import { Position as TPosition } from 'graphql-language-service-types'; import { visit } from 'graphql'; export function getASTNodeAtPosition( query: string, ast: ASTNode, - point: Position, -): ASTNode | null | undefined { + point: TPosition, +): ASTNode | undefined { const offset = pointToOffset(query, point); - let nodeContainingPosition: ASTNode | null | undefined; + let nodeContainingPosition: ASTNode | undefined; visit(ast, { enter(node) { if ( @@ -42,7 +42,7 @@ export function getASTNodeAtPosition( return nodeContainingPosition; } -export function pointToOffset(text: string, point: Position): number { +export function pointToOffset(text: string, point: TPosition): number { const linesUntilPosition = text.split('\n').slice(0, point.line); return ( point.character + diff --git a/packages/graphql-language-service-utils/tsconfig.tsbuildinfo b/packages/graphql-language-service-utils/tsconfig.tsbuildinfo index a78147a0fb8..41ecebe7414 100644 --- a/packages/graphql-language-service-utils/tsconfig.tsbuildinfo +++ b/packages/graphql-language-service-utils/tsconfig.tsbuildinfo @@ -182,8 +182,8 @@ "signature": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b" }, "../../node_modules/graphql/type/definition.d.ts": { - "version": "7fab802d7b9d8067b0903ce65934e80325a621304831a2b9a60d7630134c12e4", - "signature": "7fab802d7b9d8067b0903ce65934e80325a621304831a2b9a60d7630134c12e4" + "version": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7", + "signature": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7" }, "../../node_modules/graphql/language/directiveLocation.d.ts": { "version": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b", @@ -546,7 +546,7 @@ "signature": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4" }, "../graphql-language-service-types/src/index.ts": { - "version": "522a600e28a0b23ca8483484fce636240b7ec3fec62f48e6ff40567a74297d85" + "version": "0eccbb489f441658fcd2acfe7811403eed555060b86fcf4683ef1ee34245ccc6" }, "./src/Range.ts": { "version": "58926b36007f993a2e6adb291d57f992bccd60f9b934bcb4dda254e6937a3e36", @@ -585,8 +585,8 @@ "signature": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935" }, "../../node_modules/@types/node/child_process.d.ts": { - "version": "123366127434e33eade36f3d06653dbc7457397fc93cfdd100776cfc12b6734c", - "signature": "123366127434e33eade36f3d06653dbc7457397fc93cfdd100776cfc12b6734c" + "version": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003", + "signature": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003" }, "../../node_modules/@types/node/cluster.d.ts": { "version": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a", @@ -753,8 +753,8 @@ "signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7" }, "../../node_modules/jest-diff/build/index.d.ts": { - "version": "b2c5ded6320c45c5d3e1c481c5d2808adf24dd1a59ffc944b72a418e95da5b17", - "signature": "b2c5ded6320c45c5d3e1c481c5d2808adf24dd1a59ffc944b72a418e95da5b17" + "version": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4", + "signature": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4" }, "../../node_modules/@types/jest/index.d.ts": { "version": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b", diff --git a/tsconfig.base.json b/tsconfig.base.json index 201826c5f69..89f78cce203 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -21,9 +21,10 @@ "baseUrl": ".", "paths": { "graphql-language-*" : ["graphql-language-*"] - }, + } }, "exclude": [ + "**/dist/**.*", "**/*.spec.ts", "**/*.spec.js", "**/*-test.ts", diff --git a/yarn.lock b/yarn.lock index 47e3f78c129..1047dc7aea2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4,7 +4,7 @@ "@babel/cli@7.4.4": version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.4.4.tgz#5454bb7112f29026a4069d8e6f0e1794e651966c" + resolved "https://registry.npmjs.org/@babel/cli/-/cli-7.4.4.tgz#5454bb7112f29026a4069d8e6f0e1794e651966c" integrity sha512-XGr5YjQSjgTa6OzQZY57FAJsdeVSAKR/u/KA5exWIz66IKtv/zXtHy+fIZcMry/EgYegwuHE7vzGnrFhjdIAsQ== dependencies: commander "^2.8.1" @@ -19,16 +19,16 @@ optionalDependencies: chokidar "^2.0.4" -"@babel/code-frame@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" - integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": + version "7.5.5" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" + integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== dependencies: "@babel/highlight" "^7.0.0" -"@babel/core@7.4.5", "@babel/core@^7.1.0": +"@babel/core@7.4.5": version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.4.5.tgz#081f97e8ffca65a9b4b0fdc7e274e703f000c06a" + resolved "https://registry.npmjs.org/@babel/core/-/core-7.4.5.tgz#081f97e8ffca65a9b4b0fdc7e274e703f000c06a" integrity sha512-OvjIh6aqXtlsA8ujtGKfC7LYWksYSX8yQcM8Ay3LuvVeQ63lcOKgoZWVqcpFwkd29aYU9rVx7jxhfhiEDV9MZA== dependencies: "@babel/code-frame" "^7.0.0" @@ -46,27 +46,47 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.4.0", "@babel/generator@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.4.4.tgz#174a215eb843fc392c7edcaabeaa873de6e8f041" - integrity sha512-53UOLK6TVNqKxf7RUh8NE851EHRxOOeVXKbK2bivdb+iziMyk03Sr4eaE9OELCbyZAAafAKPDwF2TPUES5QbxQ== +"@babel/core@^7.1.0": + version "7.6.0" + resolved "https://registry.npmjs.org/@babel/core/-/core-7.6.0.tgz#9b00f73554edd67bebc86df8303ef678be3d7b48" + integrity sha512-FuRhDRtsd6IptKpHXAa+4WPZYY2ZzgowkbLBecEDDSje1X/apG7jQM33or3NdOmjXBKWGOg4JmSiRfUfuTtHXw== + dependencies: + "@babel/code-frame" "^7.5.5" + "@babel/generator" "^7.6.0" + "@babel/helpers" "^7.6.0" + "@babel/parser" "^7.6.0" + "@babel/template" "^7.6.0" + "@babel/traverse" "^7.6.0" + "@babel/types" "^7.6.0" + convert-source-map "^1.1.0" + debug "^4.1.0" + json5 "^2.1.0" + lodash "^4.17.13" + resolve "^1.3.2" + semver "^5.4.1" + source-map "^0.5.0" + +"@babel/generator@^7.4.0", "@babel/generator@^7.4.4", "@babel/generator@^7.6.0": + version "7.6.0" + resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.6.0.tgz#e2c21efbfd3293ad819a2359b448f002bfdfda56" + integrity sha512-Ms8Mo7YBdMMn1BYuNtKuP/z0TgEIhbcyB8HVR6PPNYp4P61lMsABiS4A3VG1qznjXVCf3r+fVHhm4efTYVsySA== dependencies: - "@babel/types" "^7.4.4" + "@babel/types" "^7.6.0" jsesc "^2.5.1" - lodash "^4.17.11" + lodash "^4.17.13" source-map "^0.5.0" trim-right "^1.0.1" "@babel/helper-annotate-as-pure@^7.0.0": version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" + resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" integrity sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q== dependencies: "@babel/types" "^7.0.0" "@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" + resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" integrity sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w== dependencies: "@babel/helper-explode-assignable-expression" "^7.1.0" @@ -74,7 +94,7 @@ "@babel/helper-builder-react-jsx@^7.3.0": version "7.3.0" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.3.0.tgz#a1ac95a5d2b3e88ae5e54846bf462eeb81b318a4" + resolved "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.3.0.tgz#a1ac95a5d2b3e88ae5e54846bf462eeb81b318a4" integrity sha512-MjA9KgwCuPEkQd9ncSXvSyJ5y+j2sICHyrI0M3L+6fnS4wMSNDc1ARXsbTfbb2cXHn17VisSnU/sHFTCxVxSMw== dependencies: "@babel/types" "^7.3.0" @@ -82,7 +102,7 @@ "@babel/helper-call-delegate@^7.4.4": version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz#87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43" + resolved "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz#87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43" integrity sha512-l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ== dependencies: "@babel/helper-hoist-variables" "^7.4.4" @@ -90,29 +110,29 @@ "@babel/types" "^7.4.4" "@babel/helper-create-class-features-plugin@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.4.4.tgz#fc3d690af6554cc9efc607364a82d48f58736dba" - integrity sha512-UbBHIa2qeAGgyiNR9RszVF7bUHEdgS4JAUNT8SiqrAN6YJVxlOxeLr5pBzb5kan302dejJ9nla4RyKcR1XT6XA== + version "7.6.0" + resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.6.0.tgz#769711acca889be371e9bc2eb68641d55218021f" + integrity sha512-O1QWBko4fzGju6VoVvrZg0RROCVifcLxiApnGP3OWfWzvxRZFCoBD81K5ur5e3bVY2Vf/5rIJm8cqPKn8HUJng== dependencies: "@babel/helper-function-name" "^7.1.0" - "@babel/helper-member-expression-to-functions" "^7.0.0" + "@babel/helper-member-expression-to-functions" "^7.5.5" "@babel/helper-optimise-call-expression" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.4.4" + "@babel/helper-replace-supers" "^7.5.5" "@babel/helper-split-export-declaration" "^7.4.4" -"@babel/helper-define-map@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.4.4.tgz#6969d1f570b46bdc900d1eba8e5d59c48ba2c12a" - integrity sha512-IX3Ln8gLhZpSuqHJSnTNBWGDE9kdkTEWl21A/K7PQ00tseBwbqCHTvNLHSBd9M0R5rER4h5Rsvj9vw0R5SieBg== +"@babel/helper-define-map@^7.5.5": + version "7.5.5" + resolved "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.5.5.tgz#3dec32c2046f37e09b28c93eb0b103fd2a25d369" + integrity sha512-fTfxx7i0B5NJqvUOBBGREnrqbTxRh7zinBANpZXAVDlsZxYdclDp467G1sQ8VZYMnAURY3RpBUAgOYT9GfzHBg== dependencies: "@babel/helper-function-name" "^7.1.0" - "@babel/types" "^7.4.4" - lodash "^4.17.11" + "@babel/types" "^7.5.5" + lodash "^4.17.13" "@babel/helper-explode-assignable-expression@^7.1.0": version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" + resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" integrity sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA== dependencies: "@babel/traverse" "^7.1.0" @@ -120,7 +140,7 @@ "@babel/helper-function-name@^7.1.0": version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" + resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== dependencies: "@babel/helper-get-function-arity" "^7.0.0" @@ -129,66 +149,66 @@ "@babel/helper-get-function-arity@^7.0.0": version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" + resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== dependencies: "@babel/types" "^7.0.0" "@babel/helper-hoist-variables@^7.4.4": version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a" + resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a" integrity sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w== dependencies: "@babel/types" "^7.4.4" -"@babel/helper-member-expression-to-functions@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f" - integrity sha512-avo+lm/QmZlv27Zsi0xEor2fKcqWG56D5ae9dzklpIaY7cQMK5N8VSpaNVPPagiqmy7LrEjK1IWdGMOqPu5csg== +"@babel/helper-member-expression-to-functions@^7.5.5": + version "7.5.5" + resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz#1fb5b8ec4453a93c439ee9fe3aeea4a84b76b590" + integrity sha512-5qZ3D1uMclSNqYcXqiHoA0meVdv+xUEex9em2fqMnrk/scphGlGgg66zjMrPJESPwrFJ6sbfFQYUSa0Mz7FabA== dependencies: - "@babel/types" "^7.0.0" + "@babel/types" "^7.5.5" "@babel/helper-module-imports@^7.0.0": version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" + resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" integrity sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A== dependencies: "@babel/types" "^7.0.0" "@babel/helper-module-transforms@^7.1.0", "@babel/helper-module-transforms@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.4.4.tgz#96115ea42a2f139e619e98ed46df6019b94414b8" - integrity sha512-3Z1yp8TVQf+B4ynN7WoHPKS8EkdTbgAEy0nU0rs/1Kw4pDgmvYH3rz3aI11KgxKCba2cn7N+tqzV1mY2HMN96w== + version "7.5.5" + resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.5.5.tgz#f84ff8a09038dcbca1fd4355661a500937165b4a" + integrity sha512-jBeCvETKuJqeiaCdyaheF40aXnnU1+wkSiUs/IQg3tB85up1LyL8x77ClY8qJpuRJUcXQo+ZtdNESmZl4j56Pw== dependencies: "@babel/helper-module-imports" "^7.0.0" "@babel/helper-simple-access" "^7.1.0" "@babel/helper-split-export-declaration" "^7.4.4" "@babel/template" "^7.4.4" - "@babel/types" "^7.4.4" - lodash "^4.17.11" + "@babel/types" "^7.5.5" + lodash "^4.17.13" "@babel/helper-optimise-call-expression@^7.0.0": version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" + resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" integrity sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g== dependencies: "@babel/types" "^7.0.0" "@babel/helper-plugin-utils@^7.0.0": version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" + resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== "@babel/helper-regex@^7.0.0", "@babel/helper-regex@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.4.4.tgz#a47e02bc91fb259d2e6727c2a30013e3ac13c4a2" - integrity sha512-Y5nuB/kESmR3tKjU8Nkn1wMGEx1tjJX076HBMeL3XLQCu6vA/YRzuTW0bbb+qRnXvQGn+d6Rx953yffl8vEy7Q== + version "7.5.5" + resolved "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.5.5.tgz#0aa6824f7100a2e0e89c1527c23936c152cab351" + integrity sha512-CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw== dependencies: - lodash "^4.17.11" + lodash "^4.17.13" "@babel/helper-remap-async-to-generator@^7.1.0": version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" + resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" integrity sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg== dependencies: "@babel/helper-annotate-as-pure" "^7.0.0" @@ -197,19 +217,19 @@ "@babel/traverse" "^7.1.0" "@babel/types" "^7.0.0" -"@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.4.4.tgz#aee41783ebe4f2d3ab3ae775e1cc6f1a90cefa27" - integrity sha512-04xGEnd+s01nY1l15EuMS1rfKktNF+1CkKmHoErDppjAAZL+IUBZpzT748x262HF7fibaQPhbvWUl5HeSt1EXg== +"@babel/helper-replace-supers@^7.5.5": + version "7.5.5" + resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz#f84ce43df031222d2bad068d2626cb5799c34bc2" + integrity sha512-XvRFWrNnlsow2u7jXDuH4jDDctkxbS7gXssrP4q2nUD606ukXHRvydj346wmNg+zAgpFx4MWf4+usfC93bElJg== dependencies: - "@babel/helper-member-expression-to-functions" "^7.0.0" + "@babel/helper-member-expression-to-functions" "^7.5.5" "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/traverse" "^7.4.4" - "@babel/types" "^7.4.4" + "@babel/traverse" "^7.5.5" + "@babel/types" "^7.5.5" "@babel/helper-simple-access@^7.1.0": version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" + resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" integrity sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w== dependencies: "@babel/template" "^7.1.0" @@ -217,14 +237,14 @@ "@babel/helper-split-export-declaration@^7.4.4": version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" + resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q== dependencies: "@babel/types" "^7.4.4" "@babel/helper-wrap-function@^7.1.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" + resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" integrity sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ== dependencies: "@babel/helper-function-name" "^7.1.0" @@ -232,19 +252,19 @@ "@babel/traverse" "^7.1.0" "@babel/types" "^7.2.0" -"@babel/helpers@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.4.4.tgz#868b0ef59c1dd4e78744562d5ce1b59c89f2f2a5" - integrity sha512-igczbR/0SeuPR8RFfC7tGrbdTbFL3QTvH6D+Z6zNxnTe//GyqmtHmDkzrqDmyZ3eSwPqB/LhyKoU5DXsp+Vp2A== +"@babel/helpers@^7.4.4", "@babel/helpers@^7.6.0": + version "7.6.0" + resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.6.0.tgz#21961d16c6a3c3ab597325c34c465c0887d31c6e" + integrity sha512-W9kao7OBleOjfXtFGgArGRX6eCP0UEcA2ZWEWNkJdRZnHhW4eEbeswbG3EwaRsnQUAEGWYgMq1HsIXuNNNy2eQ== dependencies: - "@babel/template" "^7.4.4" - "@babel/traverse" "^7.4.4" - "@babel/types" "^7.4.4" + "@babel/template" "^7.6.0" + "@babel/traverse" "^7.6.0" + "@babel/types" "^7.6.0" "@babel/highlight@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" - integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw== + version "7.5.0" + resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540" + integrity sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ== dependencies: chalk "^2.0.0" esutils "^2.0.2" @@ -252,7 +272,7 @@ "@babel/node@7.4.5": version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/node/-/node-7.4.5.tgz#bce71bb44d902bfdd4da0b9c839a8a90fc084056" + resolved "https://registry.npmjs.org/@babel/node/-/node-7.4.5.tgz#bce71bb44d902bfdd4da0b9c839a8a90fc084056" integrity sha512-nDXPT0KwYMycDHhFG9wKlkipCR+iXzzoX9bD2aF2UABLhQ13AKhNi5Y61W8ASGPPll/7p9GrHesmlOgTUJVcfw== dependencies: "@babel/polyfill" "^7.0.0" @@ -262,14 +282,14 @@ node-environment-flags "^1.0.5" v8flags "^3.1.1" -"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.4.4", "@babel/parser@^7.4.5": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.4.5.tgz#04af8d5d5a2b044a2a1bffacc1e5e6673544e872" - integrity sha512-9mUqkL1FF5T7f0WDFfAoDdiMVPWsdD1gZYzSnaXsxUCUqzuch/8of9G3VUSNiZmMBoRxT3neyVsqeiL/ZPcjew== +"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.4.5", "@babel/parser@^7.6.0": + version "7.6.0" + resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.6.0.tgz#3e05d0647432a8326cb28d0de03895ae5a57f39b" + integrity sha512-+o2q111WEx4srBs7L9eJmcwi655eD8sXniLqMB93TBK9GrNzGrxDWSjiqz2hLU0Ha8MTXFIP0yd9fNdP+m43ZQ== "@babel/plugin-proposal-async-generator-functions@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" integrity sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -278,7 +298,7 @@ "@babel/plugin-proposal-class-properties@7.4.4": version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.4.4.tgz#93a6486eed86d53452ab9bab35e368e9461198ce" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.4.4.tgz#93a6486eed86d53452ab9bab35e368e9461198ce" integrity sha512-WjKTI8g8d5w1Bc9zgwSz2nfrsNQsXcCf9J9cdCvrJV6RF56yztwm4TmJC0MgJ9tvwO9gUA/mcYe89bLdGfiXFg== dependencies: "@babel/helper-create-class-features-plugin" "^7.4.4" @@ -286,23 +306,23 @@ "@babel/plugin-proposal-json-strings@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" integrity sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-json-strings" "^7.2.0" "@babel/plugin-proposal-object-rest-spread@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.4.tgz#1ef173fcf24b3e2df92a678f027673b55e7e3005" - integrity sha512-dMBG6cSPBbHeEBdFXeQ2QLc5gUpg4Vkaz8octD4aoW/ISO+jBOcsuxYL7bsb5WSu8RLP6boxrBIALEHgoHtO9g== + version "7.5.5" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.5.5.tgz#61939744f71ba76a3ae46b5eea18a54c16d22e58" + integrity sha512-F2DxJJSQ7f64FyTVl5cw/9MWn6naXGdk3Q3UhDbFEEHv+EilCPoeRD3Zh/Utx1CJz4uyKlQ4uH+bJPbEhMV7Zw== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-object-rest-spread" "^7.2.0" "@babel/plugin-proposal-optional-catch-binding@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" integrity sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -310,7 +330,7 @@ "@babel/plugin-proposal-unicode-property-regex@^7.4.4": version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz#501ffd9826c0b91da22690720722ac7cb1ca9c78" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz#501ffd9826c0b91da22690720722ac7cb1ca9c78" integrity sha512-j1NwnOqMG9mFUOH58JTFsA/+ZYzQLUZ/drqWUqxCYLGeu2JFZL8YrNC9hBxKmWtAuOCHPcRpgv7fhap09Fb4kA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -319,57 +339,57 @@ "@babel/plugin-syntax-async-generators@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" integrity sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-flow@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.2.0.tgz#a765f061f803bc48f240c26f8747faf97c26bf7c" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.2.0.tgz#a765f061f803bc48f240c26f8747faf97c26bf7c" integrity sha512-r6YMuZDWLtLlu0kqIim5o/3TNRAlWb073HwT3e2nKf9I8IIvOggPrnILYPsrrKilmn/mYEMCf/Z07w3yQJF6dg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-json-strings@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" integrity sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-jsx@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz#0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz#0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7" integrity sha512-VyN4QANJkRW6lDBmENzRszvZf3/4AXaj9YR7GwrWeeN9tEBPuXbmDYVU9bYBN0D70zCWVwUy0HWq2553VCb6Hw== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-optional-catch-binding@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" integrity sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-arrow-functions@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" + resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" integrity sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-async-to-generator@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.4.4.tgz#a3f1d01f2f21cadab20b33a82133116f14fb5894" - integrity sha512-YiqW2Li8TXmzgbXw+STsSqPBPFnGviiaSp6CYOq55X8GQ2SGVLrXB6pNid8HkqkZAzOH6knbai3snhP7v0fNwA== + version "7.5.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.5.0.tgz#89a3848a0166623b5bc481164b5936ab947e887e" + integrity sha512-mqvkzwIGkq0bEF1zLRRiTdjfomZJDV33AH3oQzHVGkI2VzEmXLpKKOBvEVaFZBJdN0XTyH38s9j/Kiqr68dggg== dependencies: "@babel/helper-module-imports" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0" @@ -377,50 +397,50 @@ "@babel/plugin-transform-block-scoped-functions@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" integrity sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-block-scoping@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.4.tgz#c13279fabf6b916661531841a23c4b7dae29646d" - integrity sha512-jkTUyWZcTrwxu5DD4rWz6rDB5Cjdmgz6z7M7RLXOJyCUkFBawssDGcGh8M/0FTSB87avyJI1HsTwUXp9nKA1PA== + version "7.6.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.0.tgz#c49e21228c4bbd4068a35667e6d951c75439b1dc" + integrity sha512-tIt4E23+kw6TgL/edACZwP1OUKrjOTyMrFMLoT5IOFrfMRabCgekjqFd5o6PaAMildBu46oFkekIdMuGkkPEpA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" - lodash "^4.17.11" + lodash "^4.17.13" "@babel/plugin-transform-classes@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.4.tgz#0ce4094cdafd709721076d3b9c38ad31ca715eb6" - integrity sha512-/e44eFLImEGIpL9qPxSRat13I5QNRgBLu2hOQJCF7VLy/otSM/sypV1+XaIw5+502RX/+6YaSAPmldk+nhHDPw== + version "7.5.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz#d094299d9bd680a14a2a0edae38305ad60fb4de9" + integrity sha512-U2htCNK/6e9K7jGyJ++1p5XRU+LJjrwtoiVn9SzRlDT2KubcZ11OOwy3s24TjHxPgxNwonCYP7U2K51uVYCMDg== dependencies: "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-define-map" "^7.4.4" + "@babel/helper-define-map" "^7.5.5" "@babel/helper-function-name" "^7.1.0" "@babel/helper-optimise-call-expression" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.4.4" + "@babel/helper-replace-supers" "^7.5.5" "@babel/helper-split-export-declaration" "^7.4.4" globals "^11.1.0" "@babel/plugin-transform-computed-properties@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" + resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" integrity sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-destructuring@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.4.tgz#9d964717829cc9e4b601fc82a26a71a4d8faf20f" - integrity sha512-/aOx+nW0w8eHiEHm+BTERB2oJn5D127iye/SUQl7NjHy0lf+j7h4MKMMSOwdazGq9OxgiNADncE+SRJkCxjZpQ== + version "7.6.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.6.0.tgz#44bbe08b57f4480094d57d9ffbcd96d309075ba6" + integrity sha512-2bGIS5P1v4+sWTCnKNDZDxbGvEqi0ijeqM/YqHtVGrvG2y0ySgnEEhXErvE9dA0bnIzY9bIzdFK0jFA46ASIIQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-dotall-regex@^7.4.4": version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz#361a148bc951444312c69446d76ed1ea8e4450c3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz#361a148bc951444312c69446d76ed1ea8e4450c3" integrity sha512-P05YEhRc2h53lZDjRPk/OektxCVevFzZs2Gfjd545Wde3k+yFDbXORgl2e0xpbq8mLcKJ7Idss4fAg0zORN/zg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -428,15 +448,15 @@ regexpu-core "^4.5.4" "@babel/plugin-transform-duplicate-keys@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz#d952c4930f312a4dbfff18f0b2914e60c35530b3" - integrity sha512-q+yuxW4DsTjNceUiTzK0L+AfQ0zD9rWaTLiUqHA8p0gxx7lu1EylenfzjeIWNkPy6e/0VG/Wjw9uf9LueQwLOw== + version "7.5.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.5.0.tgz#c5dbf5106bf84cdf691222c0974c12b1df931853" + integrity sha512-igcziksHizyQPlX9gfSjHkE2wmoCH3evvD2qR5w29/Dk0SMKE/eOI7f1HhBdNhR/zxJDqrgpoDTq5YSLH/XMsQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-exponentiation-operator@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" + resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" integrity sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A== dependencies: "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" @@ -444,7 +464,7 @@ "@babel/plugin-transform-flow-strip-types@^7.0.0": version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.4.4.tgz#d267a081f49a8705fc9146de0768c6b58dccd8f7" + resolved "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.4.4.tgz#d267a081f49a8705fc9146de0768c6b58dccd8f7" integrity sha512-WyVedfeEIILYEaWGAUWzVNyqG4sfsNooMhXWsu/YzOvVGcsnPb5PguysjJqI3t3qiaYj0BR8T2f5njdjTGe44Q== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -452,14 +472,14 @@ "@babel/plugin-transform-for-of@^7.4.4": version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556" + resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556" integrity sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-function-name@^7.4.4": version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad" + resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad" integrity sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA== dependencies: "@babel/helper-function-name" "^7.1.0" @@ -467,76 +487,79 @@ "@babel/plugin-transform-literals@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" integrity sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-member-expression-literals@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d" + resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d" integrity sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-modules-amd@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz#82a9bce45b95441f617a24011dc89d12da7f4ee6" - integrity sha512-mK2A8ucqz1qhrdqjS9VMIDfIvvT2thrEsIQzbaTdc5QFzhDjQv2CkJJ5f6BXIkgbmaoax3zBr2RyvV/8zeoUZw== + version "7.5.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.5.0.tgz#ef00435d46da0a5961aa728a1d2ecff063e4fb91" + integrity sha512-n20UsQMKnWrltocZZm24cRURxQnWIvsABPJlw/fvoy9c6AgHZzoelAIzajDHAQrDpuKFFPPcFGd7ChsYuIUMpg== dependencies: "@babel/helper-module-transforms" "^7.1.0" "@babel/helper-plugin-utils" "^7.0.0" + babel-plugin-dynamic-import-node "^2.3.0" "@babel/plugin-transform-modules-commonjs@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.4.4.tgz#0bef4713d30f1d78c2e59b3d6db40e60192cac1e" - integrity sha512-4sfBOJt58sEo9a2BQXnZq+Q3ZTSAUXyK3E30o36BOGnJ+tvJ6YSxF0PG6kERvbeISgProodWuI9UVG3/FMY6iw== + version "7.6.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.6.0.tgz#39dfe957de4420445f1fcf88b68a2e4aa4515486" + integrity sha512-Ma93Ix95PNSEngqomy5LSBMAQvYKVe3dy+JlVJSHEXZR5ASL9lQBedMiCyVtmTLraIDVRE3ZjTZvmXXD2Ozw3g== dependencies: "@babel/helper-module-transforms" "^7.4.4" "@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-simple-access" "^7.1.0" + babel-plugin-dynamic-import-node "^2.3.0" "@babel/plugin-transform-modules-systemjs@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.4.4.tgz#dc83c5665b07d6c2a7b224c00ac63659ea36a405" - integrity sha512-MSiModfILQc3/oqnG7NrP1jHaSPryO6tA2kOMmAQApz5dayPxWiHqmq4sWH2xF5LcQK56LlbKByCd8Aah/OIkQ== + version "7.5.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.5.0.tgz#e75266a13ef94202db2a0620977756f51d52d249" + integrity sha512-Q2m56tyoQWmuNGxEtUyeEkm6qJYFqs4c+XyXH5RAuYxObRNz9Zgj/1g2GMnjYp2EUyEy7YTrxliGCXzecl/vJg== dependencies: "@babel/helper-hoist-variables" "^7.4.4" "@babel/helper-plugin-utils" "^7.0.0" + babel-plugin-dynamic-import-node "^2.3.0" "@babel/plugin-transform-modules-umd@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" integrity sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw== dependencies: "@babel/helper-module-transforms" "^7.1.0" "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-named-capturing-groups-regex@^7.4.5": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz#9d269fd28a370258199b4294736813a60bbdd106" - integrity sha512-z7+2IsWafTBbjNsOxU/Iv5CvTJlr5w4+HGu1HovKYTtgJ362f7kBcQglkfmlspKKZ3bgrbSGvLfNx++ZJgCWsg== + version "7.6.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.0.tgz#1e6e663097813bb4f53d42df0750cf28ad3bb3f1" + integrity sha512-jem7uytlmrRl3iCAuQyw8BpB4c4LWvSpvIeXKpMb+7j84lkx4m4mYr5ErAcmN5KM7B6BqrAvRGjBIbbzqCczew== dependencies: - regexp-tree "^0.1.6" + regexp-tree "^0.1.13" "@babel/plugin-transform-new-target@^7.4.4": version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5" integrity sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-object-super@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz#b35d4c10f56bab5d650047dad0f1d8e8814b6598" - integrity sha512-VMyhPYZISFZAqAPVkiYb7dUe2AsVi2/wCT5+wZdsNO31FojQJa9ns40hzZ6U9f50Jlq4w6qwzdBB2uwqZ00ebg== + version "7.5.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.5.5.tgz#c70021df834073c65eb613b8679cc4a381d1a9f9" + integrity sha512-un1zJQAhSosGFBduPgN/YFNvWVpRuHKU7IHBglLoLZsGmruJPOo6pbInneflUdmq7YvSVqhpPs5zdBvLnteltQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.1.0" + "@babel/helper-replace-supers" "^7.5.5" "@babel/plugin-transform-parameters@^7.4.4": version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16" + resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16" integrity sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw== dependencies: "@babel/helper-call-delegate" "^7.4.4" @@ -545,37 +568,37 @@ "@babel/plugin-transform-property-literals@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905" + resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905" integrity sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-react-display-name@^7.0.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.2.0.tgz#ebfaed87834ce8dc4279609a4f0c324c156e3eb0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.2.0.tgz#ebfaed87834ce8dc4279609a4f0c324c156e3eb0" integrity sha512-Htf/tPa5haZvRMiNSQSFifK12gtr/8vwfr+A9y69uF0QcU77AVu4K7MiHEkTxF7lQoHOL0F9ErqgfNEAKgXj7A== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-react-jsx-self@^7.0.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.2.0.tgz#461e21ad9478f1031dd5e276108d027f1b5240ba" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.2.0.tgz#461e21ad9478f1031dd5e276108d027f1b5240ba" integrity sha512-v6S5L/myicZEy+jr6ielB0OR8h+EH/1QFx/YJ7c7Ua+7lqsjj/vW6fD5FR9hB/6y7mGbfT4vAURn3xqBxsUcdg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-jsx" "^7.2.0" "@babel/plugin-transform-react-jsx-source@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.2.0.tgz#20c8c60f0140f5dd3cd63418d452801cf3f7180f" - integrity sha512-A32OkKTp4i5U6aE88GwwcuV4HAprUgHcTq0sSafLxjr6AW0QahrCRCjxogkbbcdtpbXkuTOlgpjophCxb6sh5g== + version "7.5.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.5.0.tgz#583b10c49cf057e237085bcbd8cc960bd83bd96b" + integrity sha512-58Q+Jsy4IDCZx7kqEZuSDdam/1oW8OdDX8f+Loo6xyxdfg1yF0GE2XNJQSTZCaMol93+FBzpWiPEwtbMloAcPg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-jsx" "^7.2.0" "@babel/plugin-transform-react-jsx@^7.0.0": version "7.3.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.3.0.tgz#f2cab99026631c767e2745a5368b331cfe8f5290" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.3.0.tgz#f2cab99026631c767e2745a5368b331cfe8f5290" integrity sha512-a/+aRb7R06WcKvQLOu4/TpjKOdvVEKRLWFpKcNuHhiREPgGRB4TQJxq07+EZLS8LFVYpfq1a5lDUnuMdcCpBKg== dependencies: "@babel/helper-builder-react-jsx" "^7.3.0" @@ -584,22 +607,22 @@ "@babel/plugin-transform-regenerator@^7.4.5": version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f" + resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f" integrity sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA== dependencies: regenerator-transform "^0.14.0" "@babel/plugin-transform-reserved-words@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz#4792af87c998a49367597d07fedf02636d2e1634" + resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz#4792af87c998a49367597d07fedf02636d2e1634" integrity sha512-fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-runtime@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.4.4.tgz#a50f5d16e9c3a4ac18a1a9f9803c107c380bce08" - integrity sha512-aMVojEjPszvau3NRg+TIH14ynZLvPewH4xhlCW1w6A3rkxTS1m4uwzRclYR9oS+rl/dr+kT+pzbfHuAWP/lc7Q== + version "7.6.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.6.0.tgz#85a3cce402b28586138e368fce20ab3019b9713e" + integrity sha512-Da8tMf7uClzwUm/pnJ1S93m/aRXmoYNDD7TkHua8xBDdaAs54uZpTWvEt6NGwmoVMb9mZbntfTqmG2oSzN/7Vg== dependencies: "@babel/helper-module-imports" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0" @@ -608,21 +631,21 @@ "@babel/plugin-transform-shorthand-properties@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" integrity sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-spread@^7.2.0": version "7.2.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406" + resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406" integrity sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-sticky-regex@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" integrity sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -630,7 +653,7 @@ "@babel/plugin-transform-template-literals@^7.4.4": version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0" integrity sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g== dependencies: "@babel/helper-annotate-as-pure" "^7.0.0" @@ -638,31 +661,39 @@ "@babel/plugin-transform-typeof-symbol@^7.2.0": version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" + resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" integrity sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-unicode-regex@^7.4.4": version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz#ab4634bb4f14d36728bf5978322b35587787970f" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz#ab4634bb4f14d36728bf5978322b35587787970f" integrity sha512-il+/XdNw01i93+M9J9u4T7/e/Ue/vWfNZE4IRUQjplu2Mqb/AFTDimkw2tdEdSH50wuQXZAbXSql0UphQke+vA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-regex" "^7.4.4" regexpu-core "^4.5.4" -"@babel/polyfill@7.4.4", "@babel/polyfill@^7.0.0", "@babel/polyfill@^7.4.4": +"@babel/polyfill@7.4.4": version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.4.4.tgz#78801cf3dbe657844eeabf31c1cae3828051e893" + resolved "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.4.4.tgz#78801cf3dbe657844eeabf31c1cae3828051e893" integrity sha512-WlthFLfhQQhh+A2Gn5NSFl0Huxz36x86Jn+E9OW7ibK8edKPq+KLy4apM1yDpQ8kJOVi1OVjpP4vSDLdrI04dg== dependencies: core-js "^2.6.5" regenerator-runtime "^0.13.2" +"@babel/polyfill@^7.0.0", "@babel/polyfill@^7.4.4": + version "7.6.0" + resolved "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.6.0.tgz#6d89203f8b6cd323e8d946e47774ea35dc0619cc" + integrity sha512-q5BZJI0n/B10VaQQvln1IlDK3BTBJFbADx7tv+oXDPIDZuTo37H5Adb9jhlXm/fEN4Y7/64qD9mnrJJG7rmaTw== + dependencies: + core-js "^2.6.5" + regenerator-runtime "^0.13.2" + "@babel/preset-env@7.4.5": version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.4.5.tgz#2fad7f62983d5af563b5f3139242755884998a58" + resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.4.5.tgz#2fad7f62983d5af563b5f3139242755884998a58" integrity sha512-f2yNVXM+FsR5V8UwcFeIHzHWgnhXg3NpRmy0ADvALpnhB0SLbCvrCRr4BLOUYbQNLS+Z0Yer46x9dJXpXewI7w== dependencies: "@babel/helper-module-imports" "^7.0.0" @@ -716,7 +747,7 @@ "@babel/preset-flow@7.0.0": version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.0.0.tgz#afd764835d9535ec63d8c7d4caf1c06457263da2" + resolved "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.0.0.tgz#afd764835d9535ec63d8c7d4caf1c06457263da2" integrity sha512-bJOHrYOPqJZCkPVbG1Lot2r5OSsB+iUOaxiHdlOeB1yPWS6evswVHwvkDLZ54WTaTRIk89ds0iHmGZSnxlPejQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -724,7 +755,7 @@ "@babel/preset-react@7.0.0": version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.0.0.tgz#e86b4b3d99433c7b3e9e91747e2653958bc6b3c0" + resolved "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.0.0.tgz#e86b4b3d99433c7b3e9e91747e2653958bc6b3c0" integrity sha512-oayxyPS4Zj+hF6Et11BwuBkmpgT/zMxyuZgFrMeZID6Hdh3dGlk4sHCAhdBCpuCKW2ppBfl2uCCetlrUIJRY3w== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -734,69 +765,68 @@ "@babel/plugin-transform-react-jsx-source" "^7.0.0" "@babel/register@^7.0.0", "@babel/register@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.4.4.tgz#370a68ba36f08f015a8b35d4864176c6b65d7a23" - integrity sha512-sn51H88GRa00+ZoMqCVgOphmswG4b7mhf9VOB0LUBAieykq2GnRFerlN+JQkO/ntT7wz4jaHNSRPg9IdMPEUkA== + version "7.6.0" + resolved "https://registry.npmjs.org/@babel/register/-/register-7.6.0.tgz#76b6f466714680f4becafd45beeb2a7b87431abf" + integrity sha512-78BomdN8el+x/nkup9KwtjJXuptW5oXMFmP11WoM2VJBjxrKv4grC3qjpLL8RGGUYUGsm57xnjYFM2uom+jWUQ== dependencies: - core-js "^3.0.0" find-cache-dir "^2.0.0" - lodash "^4.17.11" + lodash "^4.17.13" mkdirp "^0.5.1" pirates "^4.0.0" source-map-support "^0.5.9" -"@babel/template@^7.1.0", "@babel/template@^7.4.0", "@babel/template@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237" - integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw== +"@babel/template@^7.1.0", "@babel/template@^7.4.0", "@babel/template@^7.4.4", "@babel/template@^7.6.0": + version "7.6.0" + resolved "https://registry.npmjs.org/@babel/template/-/template-7.6.0.tgz#7f0159c7f5012230dad64cca42ec9bdb5c9536e6" + integrity sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ== dependencies: "@babel/code-frame" "^7.0.0" - "@babel/parser" "^7.4.4" - "@babel/types" "^7.4.4" + "@babel/parser" "^7.6.0" + "@babel/types" "^7.6.0" -"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.4.4", "@babel/traverse@^7.4.5": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.5.tgz#4e92d1728fd2f1897dafdd321efbff92156c3216" - integrity sha512-Vc+qjynwkjRmIFGxy0KYoPj4FdVDxLej89kMHFsWScq999uX+pwcX4v9mWRjW0KcAYTPAuVQl2LKP1wEVLsp+A== +"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.4.4", "@babel/traverse@^7.4.5", "@babel/traverse@^7.5.5", "@babel/traverse@^7.6.0": + version "7.6.0" + resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.0.tgz#389391d510f79be7ce2ddd6717be66d3fed4b516" + integrity sha512-93t52SaOBgml/xY74lsmt7xOR4ufYvhb5c5qiM6lu4J/dWGMAfAh6eKw4PjLes6DI6nQgearoxnFJk60YchpvQ== dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/generator" "^7.4.4" + "@babel/code-frame" "^7.5.5" + "@babel/generator" "^7.6.0" "@babel/helper-function-name" "^7.1.0" "@babel/helper-split-export-declaration" "^7.4.4" - "@babel/parser" "^7.4.5" - "@babel/types" "^7.4.4" + "@babel/parser" "^7.6.0" + "@babel/types" "^7.6.0" debug "^4.1.0" globals "^11.1.0" - lodash "^4.17.11" + lodash "^4.17.13" -"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.4.4.tgz#8db9e9a629bb7c29370009b4b779ed93fe57d5f0" - integrity sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ== +"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5", "@babel/types@^7.6.0": + version "7.6.1" + resolved "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz#53abf3308add3ac2a2884d539151c57c4b3ac648" + integrity sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g== dependencies: esutils "^2.0.2" - lodash "^4.17.11" + lodash "^4.17.13" to-fast-properties "^2.0.0" "@cnakazawa/watch@^1.0.3": version "1.0.3" - resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef" + resolved "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef" integrity sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA== dependencies: exec-sh "^0.3.2" minimist "^1.2.0" "@commitlint/cli@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/cli/-/cli-8.1.0.tgz#a3d4236c0ac961d7026a53d728b179c696d6a045" - integrity sha512-83K5C2nIAgoZlzMegf0/MEBjX+ampUyc/u79RxgX9ZYjzos+RQtNyO7I43dztVxPXSwAnX9XRgoOfkGWA4nbig== - dependencies: - "@commitlint/format" "^8.1.0" - "@commitlint/lint" "^8.1.0" - "@commitlint/load" "^8.1.0" - "@commitlint/read" "^8.1.0" + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/cli/-/cli-8.2.0.tgz#fbf9969e04e2162d985eaa644fdad6ce807aadb6" + integrity sha512-8fJ5pmytc38yw2QWbTTJmXLfSiWPwMkHH4govo9zJ/+ERPBF2jvlxD/dQvk24ezcizjKc6LFka2edYC4OQ+Dgw== + dependencies: + "@commitlint/format" "^8.2.0" + "@commitlint/lint" "^8.2.0" + "@commitlint/load" "^8.2.0" + "@commitlint/read" "^8.2.0" babel-polyfill "6.26.0" - chalk "2.3.1" + chalk "2.4.2" get-stdin "7.0.0" lodash "4.17.14" meow "5.0.0" @@ -804,98 +834,98 @@ resolve-global "1.0.0" "@commitlint/config-conventional@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-8.1.0.tgz#ba61fbf0ad4df52da2b5ee3034470371a2cbf039" - integrity sha512-/JY+FNBnrT91qzDVIoV1Buiigvj7Le7ezFw+oRqu0nYREX03k7xnaG/7t7rUSvm7hM6dnLSOlaUsevjgMI9AEw== + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-8.2.0.tgz#886a5538e3708e017ec2871e0cbce00f635d3102" + integrity sha512-HuwlHQ3DyVhpK9GHgTMhJXD8Zp8PGIQVpQGYh/iTrEU6TVxdRC61BxIDZvfWatCaiG617Z/U8maRAFrqFM4TqA== "@commitlint/config-lerna-scopes@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/config-lerna-scopes/-/config-lerna-scopes-8.1.0.tgz#6c76efd6b04348adf6c2710c5b075bcf92a23d5b" - integrity sha512-BHM9h349fP21VJM7cMYMikrUwwQE9EzQURDf/48ncblTYGIPLdf8ba32Aj9jZhBVZxBAVft4oACC85pEuLAbYw== + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/config-lerna-scopes/-/config-lerna-scopes-8.2.0.tgz#19809fec506a5356018a483af5754196bcb22129" + integrity sha512-V8Y4wq0UfZhKZGWLn0F3J11OANOp5wGPS6OdNf67PDbV0Xs39zc9j6HoH1PCEnVcaRHlSCr09B1kkxZvsABUEw== dependencies: import-from "3.0.0" resolve-pkg "2.0.0" - semver "6.1.1" + semver "6.2.0" -"@commitlint/ensure@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/ensure/-/ensure-8.1.0.tgz#6c669f85c3005ed15c8141d83cf5312c43001613" - integrity sha512-dBU4CcjN0vJSDNOeSpaHNgQ1ra444u4USvI6PTaHVAS4aeDpZ5Cds1rxkZNsocu48WNycUu0jP84+zjcw2pPLQ== +"@commitlint/ensure@^8.2.0": + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/ensure/-/ensure-8.2.0.tgz#fad0c81c3d3bd09aa5fbcbcc483ae1f39bc8af8f" + integrity sha512-XZZih/kcRrqK7lEORbSYCfqQw6byfsFbLygRGVdJMlCPGu9E2MjpwCtoj5z7y/lKfUB3MJaBhzn2muJqS1gC6A== dependencies: lodash "4.17.14" -"@commitlint/execute-rule@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-8.1.0.tgz#e8386bd0836b3dcdd41ebb9d5904bbeb447e4715" - integrity sha512-+vpH3RFuO6ypuCqhP2rSqTjFTQ7ClzXtUvXphpROv9v9+7zH4L+Ex+wZLVkL8Xj2cxefSLn/5Kcqa9XyJTn3kg== +"@commitlint/execute-rule@^8.2.0": + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-8.2.0.tgz#aefb3744e22613660adefb7ebcccaa60bd24e78d" + integrity sha512-9MBRthHaulbWTa8ReG2Oii2qc117NuvzhZdnkuKuYLhker7sUXGFcVhLanuWUKGyfyI2o9zVr/NHsNbCCsTzAA== -"@commitlint/format@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/format/-/format-8.1.0.tgz#c3f3ca78bb74cbc1cce1368c0974b0cb8f31b98e" - integrity sha512-D0cmabUTQIKdABgt08d9JAvO9+lMRAmkcsZx8TMScY502R67HCw77JhzRDcw1RmqX5rN8JO6ZjDHO92Pbwlt+Q== +"@commitlint/format@^8.2.0": + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/format/-/format-8.2.0.tgz#0a2447fadac7c0421ce8a8d7e27dfa2172c737d4" + integrity sha512-sA77agkDEMsEMrlGhrLtAg8vRexkOofEEv/CZX+4xlANyAz2kNwJvMg33lcL65CBhqKEnRRJRxfZ1ZqcujdKcQ== dependencies: chalk "^2.0.1" -"@commitlint/is-ignored@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-8.1.0.tgz#c0583fa3c641b2d4898be1443e70e9c467429de2" - integrity sha512-HUSxx6kuLbqrQ8jb5QRzo+yR+CIXgA9HNcIcZ1qWrb+O9GOixt3mlW8li1IcfIgfODlaWoxIz0jYCxR08IoQLg== +"@commitlint/is-ignored@^8.2.0": + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-8.2.0.tgz#b6409ab28bf5a80f25e14da17da3916adb230a89" + integrity sha512-ADaGnKfbfV6KD1pETp0Qf7XAyc75xTy3WJlbvPbwZ4oPdBMsXF0oXEEGMis6qABfU2IXan5/KAJgAFX3vdd0jA== dependencies: "@types/semver" "^6.0.1" - semver "6.1.1" + semver "6.2.0" -"@commitlint/lint@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/lint/-/lint-8.1.0.tgz#ad10f4885c06f14c71de11dcd6bf2ca54a395141" - integrity sha512-WYjbUgtqvnlVH3S3XPZMAa+N7KO0yQ+GuUG20Qra+EtER6SRYawykmEs4wAyrmY8VcFXUnKgSlIQUsqmGKwNZQ== +"@commitlint/lint@^8.2.0": + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/lint/-/lint-8.2.0.tgz#aadc606379f3550eb877f16d4f5b103639cbf92a" + integrity sha512-ch9JN8aR37ufdjoWv50jLfvFz9rWMgLW5HEkMGLsM/51gjekmQYS5NJg8S2+6F5+jmralAO7VkUMI6FukXKX0A== dependencies: - "@commitlint/is-ignored" "^8.1.0" - "@commitlint/parse" "^8.1.0" - "@commitlint/rules" "^8.1.0" + "@commitlint/is-ignored" "^8.2.0" + "@commitlint/parse" "^8.2.0" + "@commitlint/rules" "^8.2.0" babel-runtime "^6.23.0" lodash "4.17.14" -"@commitlint/load@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/load/-/load-8.1.0.tgz#63b72ae5bb9152b8fa5b17c5428053032a9a49c8" - integrity sha512-ra02Dvmd7Gp1+uFLzTY3yGOpHjPzl5T9wYg/xrtPJNiOWXvQ0Mw7THw+ucd1M5iLUWjvdavv2N87YDRc428wHg== +"@commitlint/load@^8.2.0": + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/load/-/load-8.2.0.tgz#9ca53a0c795e4f63d796b4d42279e856549add1a" + integrity sha512-EV6PfAY/p83QynNd1llHxJiNxKmp43g8+7dZbyfHFbsGOdokrCnoelAVZ+WGgktXwLN/uXyfkcIAxwac015UYw== dependencies: - "@commitlint/execute-rule" "^8.1.0" - "@commitlint/resolve-extends" "^8.1.0" + "@commitlint/execute-rule" "^8.2.0" + "@commitlint/resolve-extends" "^8.2.0" babel-runtime "^6.23.0" chalk "2.4.2" cosmiconfig "^5.2.0" lodash "4.17.14" resolve-from "^5.0.0" -"@commitlint/message@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/message/-/message-8.1.0.tgz#8fb8046ddaa7e5c846a79da7cdbd15cf1a7770ae" - integrity sha512-AjHq022G8jQQ/3YrBOjwVBD4xF75hvC3vcvFoBIb7cC8vad1QWq+1w+aks0KlEK5IW+/+7ORZXIH+oyW7h3+8A== +"@commitlint/message@^8.2.0": + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/message/-/message-8.2.0.tgz#bdc0388183f6bc6006c7e7e197a721683011907a" + integrity sha512-LNsSwDLIFgE3nb/Sb1PIluYNy4Q8igdf4tpJCdv5JJDf7CZCZt3ZTglj0YutZZorpRRuHJsVIB2+dI4bVH3bFw== -"@commitlint/parse@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/parse/-/parse-8.1.0.tgz#833243c6d848e7a7e775a283b38697166ed2fd22" - integrity sha512-n4fEbZ5kdK5HChvne7Mj8rGGkKMfA4H11IuWiWmmMzgmZTNb/B04LPrzdUm4lm3f10XzM2JMM7PLXqofQJOGvA== +"@commitlint/parse@^8.2.0": + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/parse/-/parse-8.2.0.tgz#de80137e89ee5a2d3029656c9b33e90c88c6f56c" + integrity sha512-vzouqroTXG6QXApkrps0gbeSYW6w5drpUk7QAeZIcaCSPsQXDM8eqqt98ZzlzLJHo5oPNXPX1AAVSTrssvHemA== dependencies: conventional-changelog-angular "^1.3.3" conventional-commits-parser "^2.1.0" lodash "^4.17.11" -"@commitlint/read@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/read/-/read-8.1.0.tgz#effe07c965ba1735a5f7f8b7b19ac4d98c887507" - integrity sha512-PKsGMQFEr2sX/+orI71b82iyi8xFqb7F4cTvsLxzB5x6/QutxPVM3rg+tEVdi6rBKIDuqRIp2puDZQuREZs3vg== +"@commitlint/read@^8.2.0": + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/read/-/read-8.2.0.tgz#54c6549723d532c74434ee0d74e0459032dc9159" + integrity sha512-1tBai1VuSQmsOTsvJr3Fi/GZqX3zdxRqYe/yN4i3cLA5S2Y4QGJ5I3l6nGZlKgm/sSelTCVKHltrfWU8s5H7SA== dependencies: - "@commitlint/top-level" "^8.1.0" + "@commitlint/top-level" "^8.2.0" "@marionebl/sander" "^0.6.0" babel-runtime "^6.23.0" git-raw-commits "^1.3.0" -"@commitlint/resolve-extends@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-8.1.0.tgz#ed67f2ee484160ac8e0078bae52f172625157472" - integrity sha512-r/y+CeKW72Oa9BUctS1+I/MFCDiI3lfhwfQ65Tpfn6eZ4CuBYKzrCRi++GTHeAFKE3y8q1epJq5Rl/1GBejtBw== +"@commitlint/resolve-extends@^8.2.0": + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-8.2.0.tgz#b7f2f0c71c10f24b98a199ed11d2c14cfd7a318f" + integrity sha512-cwi0HUsDcD502HBP8huXfTkVuWmeo1Fiz3GKxNwMBBsJV4+bKa7QrtxbNpXhVuarX7QjWfNTvmW6KmFS7YK9uw== dependencies: "@types/node" "^12.0.2" import-fresh "^3.0.0" @@ -903,25 +933,25 @@ resolve-from "^5.0.0" resolve-global "^1.0.0" -"@commitlint/rules@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/rules/-/rules-8.1.0.tgz#009c64a8a23feb4647e5a25057997be62a272c8a" - integrity sha512-hlM8VfNjsOkbvMteFyqn0c3akiUjqG09Iid28MBLrXl/d+8BR3eTzwJ4wMta4oz/iqGyrIywvg1FpHrV977MPA== +"@commitlint/rules@^8.2.0": + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/rules/-/rules-8.2.0.tgz#4cd6a323ca1a3f3d33ae6dc723f8c88f3dcde347" + integrity sha512-FlqSBBP2Gxt5Ibw+bxdYpzqYR6HI8NIBpaTBhAjSEAduQtdWFMOhF0zsgkwH7lHN7opaLcnY2fXxAhbzTmJQQA== dependencies: - "@commitlint/ensure" "^8.1.0" - "@commitlint/message" "^8.1.0" - "@commitlint/to-lines" "^8.1.0" + "@commitlint/ensure" "^8.2.0" + "@commitlint/message" "^8.2.0" + "@commitlint/to-lines" "^8.2.0" babel-runtime "^6.23.0" -"@commitlint/to-lines@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-8.1.0.tgz#5bf2597f46acacec4b1b3dba832ac8934798b22a" - integrity sha512-Lh4OH1bInI8GME/7FggS0/XkIMEJdTObMbXRyPRGaPcWH5S7zpB6y+b4qjzBHXAbEv2O46QAAMjZ+ywPQCpmYQ== +"@commitlint/to-lines@^8.2.0": + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-8.2.0.tgz#dddb5916a457e1a79e437115a9b8eac7bf9ad52a" + integrity sha512-LXTYG3sMenlN5qwyTZ6czOULVcx46uMy+MEVqpvCgptqr/MZcV/C2J+S2o1DGwj1gOEFMpqrZaE3/1R2Q+N8ng== -"@commitlint/top-level@^8.1.0": - version "8.1.0" - resolved "https://registry.npmjs.org/@commitlint/top-level/-/top-level-8.1.0.tgz#f1950de73a1f76ef5c9e753a6b77402e0755d677" - integrity sha512-EvQuofuA/+0l1w9pkG/PRyIwACmZdIh9qxyax7w7mR8qqmSHscqf2jARIylh1TOx0uI9egO8MuPLiwC1RwyREA== +"@commitlint/top-level@^8.2.0": + version "8.2.0" + resolved "https://registry.npmjs.org/@commitlint/top-level/-/top-level-8.2.0.tgz#206e7cbc54dbe9494190677f887dd60943fed5b0" + integrity sha512-Yaw4KmYNy31/HhRUuZ+fupFcDalnfpdu4JGBgGAqS9aBHdMSSWdWqtAaDaxdtWjTZeN3O0sA2gOhXwvKwiDwvw== dependencies: find-up "^4.0.0" @@ -999,76 +1029,77 @@ unique-filename "^1.1.1" which "^1.3.1" -"@jest/console@^24.7.1": - version "24.7.1" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.7.1.tgz#32a9e42535a97aedfe037e725bd67e954b459545" - integrity sha512-iNhtIy2M8bXlAOULWVTUxmnelTLFneTNEkHCgPmgd+zNwy9zVddJ6oS5rZ9iwoscNdT5mMwUd0C51v/fSlzItg== +"@jest/console@^24.7.1", "@jest/console@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/console/-/console-24.9.0.tgz#79b1bc06fb74a8cfb01cbdedf945584b1b9707f0" + integrity sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ== dependencies: - "@jest/source-map" "^24.3.0" + "@jest/source-map" "^24.9.0" chalk "^2.0.1" slash "^2.0.0" -"@jest/core@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.8.0.tgz#fbbdcd42a41d0d39cddbc9f520c8bab0c33eed5b" - integrity sha512-R9rhAJwCBQzaRnrRgAdVfnglUuATXdwTRsYqs6NMdVcAl5euG8LtWDe+fVkN27YfKVBW61IojVsXKaOmSnqd/A== +"@jest/core@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/core/-/core-24.9.0.tgz#2ceccd0b93181f9c4850e74f2a9ad43d351369c4" + integrity sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A== dependencies: "@jest/console" "^24.7.1" - "@jest/reporters" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/reporters" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" ansi-escapes "^3.0.0" chalk "^2.0.1" exit "^0.1.2" graceful-fs "^4.1.15" - jest-changed-files "^24.8.0" - jest-config "^24.8.0" - jest-haste-map "^24.8.0" - jest-message-util "^24.8.0" + jest-changed-files "^24.9.0" + jest-config "^24.9.0" + jest-haste-map "^24.9.0" + jest-message-util "^24.9.0" jest-regex-util "^24.3.0" - jest-resolve-dependencies "^24.8.0" - jest-runner "^24.8.0" - jest-runtime "^24.8.0" - jest-snapshot "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" - jest-watcher "^24.8.0" + jest-resolve "^24.9.0" + jest-resolve-dependencies "^24.9.0" + jest-runner "^24.9.0" + jest-runtime "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" + jest-watcher "^24.9.0" micromatch "^3.1.10" p-each-series "^1.0.0" - pirates "^4.0.1" realpath-native "^1.1.0" rimraf "^2.5.4" + slash "^2.0.0" strip-ansi "^5.0.0" -"@jest/environment@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.8.0.tgz#0342261383c776bdd652168f68065ef144af0eac" - integrity sha512-vlGt2HLg7qM+vtBrSkjDxk9K0YtRBi7HfRFaDxoRtyi+DyVChzhF20duvpdAnKVBV6W5tym8jm0U9EfXbDk1tw== - dependencies: - "@jest/fake-timers" "^24.8.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" - jest-mock "^24.8.0" - -"@jest/fake-timers@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.8.0.tgz#2e5b80a4f78f284bcb4bd5714b8e10dd36a8d3d1" - integrity sha512-2M4d5MufVXwi6VzZhJ9f5S/wU4ud2ck0kxPof1Iz3zWx6Y+V2eJrES9jEktB6O3o/oEyk+il/uNu9PvASjWXQw== - dependencies: - "@jest/types" "^24.8.0" - jest-message-util "^24.8.0" - jest-mock "^24.8.0" - -"@jest/reporters@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.8.0.tgz#075169cd029bddec54b8f2c0fc489fd0b9e05729" - integrity sha512-eZ9TyUYpyIIXfYCrw0UHUWUvE35vx5I92HGMgS93Pv7du+GHIzl+/vh8Qj9MCWFK/4TqyttVBPakWMOfZRIfxw== - dependencies: - "@jest/environment" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" +"@jest/environment@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/environment/-/environment-24.9.0.tgz#21e3afa2d65c0586cbd6cbefe208bafade44ab18" + integrity sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ== + dependencies: + "@jest/fake-timers" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + +"@jest/fake-timers@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.9.0.tgz#ba3e6bf0eecd09a636049896434d306636540c93" + integrity sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A== + dependencies: + "@jest/types" "^24.9.0" + jest-message-util "^24.9.0" + jest-mock "^24.9.0" + +"@jest/reporters@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-24.9.0.tgz#86660eff8e2b9661d042a8e98a028b8d631a5b43" + integrity sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw== + dependencies: + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" chalk "^2.0.1" exit "^0.1.2" glob "^7.1.2" @@ -1076,74 +1107,75 @@ istanbul-lib-instrument "^3.0.1" istanbul-lib-report "^2.0.4" istanbul-lib-source-maps "^3.0.1" - istanbul-reports "^2.1.1" - jest-haste-map "^24.8.0" - jest-resolve "^24.8.0" - jest-runtime "^24.8.0" - jest-util "^24.8.0" + istanbul-reports "^2.2.6" + jest-haste-map "^24.9.0" + jest-resolve "^24.9.0" + jest-runtime "^24.9.0" + jest-util "^24.9.0" jest-worker "^24.6.0" - node-notifier "^5.2.1" + node-notifier "^5.4.2" slash "^2.0.0" source-map "^0.6.0" string-length "^2.0.0" -"@jest/source-map@^24.3.0": - version "24.3.0" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.3.0.tgz#563be3aa4d224caf65ff77edc95cd1ca4da67f28" - integrity sha512-zALZt1t2ou8le/crCeeiRYzvdnTzaIlpOWaet45lNSqNJUnXbppUUFR4ZUAlzgDmKee4Q5P/tKXypI1RiHwgag== +"@jest/source-map@^24.3.0", "@jest/source-map@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-24.9.0.tgz#0e263a94430be4b41da683ccc1e6bffe2a191714" + integrity sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg== dependencies: callsites "^3.0.0" graceful-fs "^4.1.15" source-map "^0.6.0" -"@jest/test-result@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.8.0.tgz#7675d0aaf9d2484caa65e048d9b467d160f8e9d3" - integrity sha512-+YdLlxwizlfqkFDh7Mc7ONPQAhA4YylU1s529vVM1rsf67vGZH/2GGm5uO8QzPeVyaVMobCQ7FTxl38QrKRlng== +"@jest/test-result@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-24.9.0.tgz#11796e8aa9dbf88ea025757b3152595ad06ba0ca" + integrity sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA== dependencies: - "@jest/console" "^24.7.1" - "@jest/types" "^24.8.0" + "@jest/console" "^24.9.0" + "@jest/types" "^24.9.0" "@types/istanbul-lib-coverage" "^2.0.0" -"@jest/test-sequencer@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.8.0.tgz#2f993bcf6ef5eb4e65e8233a95a3320248cf994b" - integrity sha512-OzL/2yHyPdCHXEzhoBuq37CE99nkme15eHkAzXRVqthreWZamEMA0WoetwstsQBCXABhczpK03JNbc4L01vvLg== +"@jest/test-sequencer@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz#f8f334f35b625a4f2f355f2fe7e6036dad2e6b31" + integrity sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A== dependencies: - "@jest/test-result" "^24.8.0" - jest-haste-map "^24.8.0" - jest-runner "^24.8.0" - jest-runtime "^24.8.0" + "@jest/test-result" "^24.9.0" + jest-haste-map "^24.9.0" + jest-runner "^24.9.0" + jest-runtime "^24.9.0" -"@jest/transform@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.8.0.tgz#628fb99dce4f9d254c6fd9341e3eea262e06fef5" - integrity sha512-xBMfFUP7TortCs0O+Xtez2W7Zu1PLH9bvJgtraN1CDST6LBM/eTOZ9SfwS/lvV8yOfcDpFmwf9bq5cYbXvqsvA== +"@jest/transform@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz#4ae2768b296553fadab09e9ec119543c90b16c56" + integrity sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ== dependencies: "@babel/core" "^7.1.0" - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" babel-plugin-istanbul "^5.1.0" chalk "^2.0.1" convert-source-map "^1.4.0" fast-json-stable-stringify "^2.0.0" graceful-fs "^4.1.15" - jest-haste-map "^24.8.0" - jest-regex-util "^24.3.0" - jest-util "^24.8.0" + jest-haste-map "^24.9.0" + jest-regex-util "^24.9.0" + jest-util "^24.9.0" micromatch "^3.1.10" + pirates "^4.0.1" realpath-native "^1.1.0" slash "^2.0.0" source-map "^0.6.1" write-file-atomic "2.4.1" -"@jest/types@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.8.0.tgz#f31e25948c58f0abd8c845ae26fcea1491dea7ad" - integrity sha512-g17UxVr2YfBtaMUxn9u/4+siG1ptg9IGYAYwvpwn61nBg779RXnjE/m7CxYcIzEt0AbHZZAHSEZNhkE2WxURVg== +"@jest/types@^24.9.0": + version "24.9.0" + resolved "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59" + integrity sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw== dependencies: "@types/istanbul-lib-coverage" "^2.0.0" "@types/istanbul-reports" "^1.1.1" - "@types/yargs" "^12.0.9" + "@types/yargs" "^13.0.0" "@lerna/add@3.16.2": version "3.16.2" @@ -1846,14 +1878,12 @@ integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== "@octokit/endpoint@^5.1.0": - version "5.3.2" - resolved "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.3.2.tgz#2deda2d869cac9ba7f370287d55667be2a808d4b" - integrity sha512-gRjteEM9I6f4D8vtwU2iGUTn9RX/AJ0SVXiqBUEuYEWVGGAVjSXdT0oNmghH5lvQNWs8mwt6ZaultuG6yXivNw== + version "5.3.5" + resolved "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.3.5.tgz#2822c3b01107806dbdce3863b6205e3eff4289ed" + integrity sha512-f8KqzIrnzPLiezDsZZPB+K8v8YSv6aKFl7eOu59O46lmlW4HagWl1U6NWl6LmT8d1w7NsKBI3paVtzcnRGO1gw== dependencies: - deepmerge "4.0.0" is-plain-object "^3.0.0" - universal-user-agent "^3.0.0" - url-template "^2.0.8" + universal-user-agent "^4.0.0" "@octokit/plugin-enterprise-rest@^3.6.1": version "3.6.2" @@ -1869,9 +1899,9 @@ once "^1.4.0" "@octokit/request@^5.0.0": - version "5.0.2" - resolved "https://registry.npmjs.org/@octokit/request/-/request-5.0.2.tgz#59a920451f24811c016ddc507adcc41aafb2dca5" - integrity sha512-z1BQr43g4kOL4ZrIVBMHwi68Yg9VbkRUyuAgqCp1rU3vbYa69+2gIld/+gHclw15bJWQnhqqyEb7h5a5EqgZ0A== + version "5.1.0" + resolved "https://registry.npmjs.org/@octokit/request/-/request-5.1.0.tgz#5609dcc7b5323e529f29d535214383d9eaf0c05c" + integrity sha512-I15T9PwjFs4tbWyhtFU2Kq7WDPidYMvRB7spmxoQRZfxSmiqullG+Nz+KbSmpkfnlvHwTr1e31R5WReFRKMXjg== dependencies: "@octokit/endpoint" "^5.1.0" "@octokit/request-error" "^1.0.1" @@ -1879,12 +1909,12 @@ is-plain-object "^3.0.0" node-fetch "^2.3.0" once "^1.4.0" - universal-user-agent "^3.0.0" + universal-user-agent "^4.0.0" "@octokit/rest@^16.28.4": - version "16.28.7" - resolved "https://registry.npmjs.org/@octokit/rest/-/rest-16.28.7.tgz#a2c2db5b318da84144beba82d19c1a9dbdb1a1fa" - integrity sha512-cznFSLEhh22XD3XeqJw51OLSfyL2fcFKUO+v2Ep9MTAFfFLS1cK1Zwd1yEgQJmJoDnj4/vv3+fGGZweG+xsbIA== + version "16.28.9" + resolved "https://registry.npmjs.org/@octokit/rest/-/rest-16.28.9.tgz#ac8c5f3ff305e9e0a0989a5245e4286f057a95d7" + integrity sha512-IKGnX+Tvzt7XHhs8f4ajqxyJvYAMNX5nWfoJm4CQj8LZToMiaJgutf5KxxpxoC3y5w7JTJpW5rnWnF4TsIvCLA== dependencies: "@octokit/request" "^5.0.0" "@octokit/request-error" "^1.0.2" @@ -1897,13 +1927,12 @@ lodash.uniq "^4.5.0" octokit-pagination-methods "^1.1.0" once "^1.4.0" - universal-user-agent "^3.0.0" - url-template "^2.0.8" + universal-user-agent "^4.0.0" "@types/babel__core@^7.1.0": - version "7.1.2" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.2.tgz#608c74f55928033fce18b99b213c16be4b3d114f" - integrity sha512-cfCCrFmiGY/yq0NuKNxIQvZFy9kY/1immpSpTngOnyIbD4+eJOG5mxphhHDv3CHL9GltO4GcKr54kGBg3RNdbg== + version "7.1.3" + resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.3.tgz#e441ea7df63cd080dfcd02ab199e6d16a735fc30" + integrity sha512-8fBo0UR2CcwWxeX7WIIgJ7lXjasFxoYgRnFHUj+hRvKkpiBJbxhdAPTCY6/ZKM0uxANFVzt4yObSLuTiTnazDA== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" @@ -1913,14 +1942,14 @@ "@types/babel__generator@*": version "7.0.2" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.0.2.tgz#d2112a6b21fad600d7674274293c85dce0cb47fc" + resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.0.2.tgz#d2112a6b21fad600d7674274293c85dce0cb47fc" integrity sha512-NHcOfab3Zw4q5sEE2COkpfXjoE7o+PmqD9DQW4koUT3roNxwziUdXGnRndMat/LJNUtePwn1TlP4do3uoe3KZQ== dependencies: "@babel/types" "^7.0.0" "@types/babel__template@*": version "7.0.2" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307" + resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307" integrity sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg== dependencies: "@babel/parser" "^7.1.0" @@ -1928,7 +1957,7 @@ "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": version "7.0.7" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.7.tgz#2496e9ff56196cc1429c72034e07eab6121b6f3f" + resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.7.tgz#2496e9ff56196cc1429c72034e07eab6121b6f3f" integrity sha512-CeBpmX1J8kWLcDEnI3Cl2Eo6RfbGvzUctA+CjZUhOKDFbLfcr7fc4usEqLNWetrlJd7RhAkyYe2czXop4fICpw== dependencies: "@babel/types" "^7.3.0" @@ -1949,19 +1978,19 @@ "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": version "2.0.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff" + resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff" integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg== "@types/istanbul-lib-report@*": version "1.1.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#e5471e7fa33c61358dd38426189c037a58433b8c" + resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#e5471e7fa33c61358dd38426189c037a58433b8c" integrity sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg== dependencies: "@types/istanbul-lib-coverage" "*" "@types/istanbul-reports@^1.1.1": version "1.1.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a" + resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a" integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA== dependencies: "@types/istanbul-lib-coverage" "*" @@ -1985,9 +2014,9 @@ integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== "@types/node@*", "@types/node@^12.0.2": - version "12.7.3" - resolved "https://registry.npmjs.org/@types/node/-/node-12.7.3.tgz#27b3f40addaf2f580459fdb405222685542f907a" - integrity sha512-3SiLAIBkDWDg6vFo0+5YJyHPWU9uwu40Qe+v+0MH8wRKYBimHvvAOyk3EzMrD/TrIlLYfXrqDqrg913PynrMJQ== + version "12.7.5" + resolved "https://registry.npmjs.org/@types/node/-/node-12.7.5.tgz#e19436e7f8e9b4601005d73673b6dc4784ffcc2f" + integrity sha512-9fq4jZVhPNW8r+UYKnxF1e2HkDWOWKM5bC2/7c9wPV835I0aOrVbS/Hw/pWPk2uKrNXQqg9Z959Kz+IYDd5p3w== "@types/normalize-package-data@^2.4.0": version "2.4.0" @@ -1995,19 +2024,26 @@ integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== "@types/semver@^6.0.1": - version "6.0.1" - resolved "https://registry.npmjs.org/@types/semver/-/semver-6.0.1.tgz#a984b405c702fa5a7ec6abc56b37f2ba35ef5af6" - integrity sha512-ffCdcrEE5h8DqVxinQjo+2d1q+FV5z7iNtPofw3JsrltSoSVlOGaW0rY8XxtO9XukdTn8TaCGWmk2VFGhI70mg== + version "6.0.2" + resolved "https://registry.npmjs.org/@types/semver/-/semver-6.0.2.tgz#5e8b09f0e4af53034b1d0fb9977a277847836205" + integrity sha512-G1Ggy7/9Nsa1Jt2yiBR2riEuyK2DFNnqow6R7cromXPMNynackRY1vqFTLz/gwnef1LHokbXThcPhqMRjUbkpQ== "@types/stack-utils@^1.0.1": version "1.0.1" - resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" + resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== -"@types/yargs@^12.0.2", "@types/yargs@^12.0.9": - version "12.0.12" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-12.0.12.tgz#45dd1d0638e8c8f153e87d296907659296873916" - integrity sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw== +"@types/yargs-parser@*": + version "13.1.0" + resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-13.1.0.tgz#c563aa192f39350a1d18da36c5a8da382bbd8228" + integrity sha512-gCubfBUZ6KxzoibJ+SCUc/57Ms1jz5NjHe4+dI2krNmU5zCPAphyLJYyTOg06ueIyfj+SaCUqmzun7ImlxDcKg== + +"@types/yargs@^13.0.0": + version "13.0.2" + resolved "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.2.tgz#a64674fc0149574ecd90ba746e932b5a5f7b3653" + integrity sha512-lwwgizwk/bIIU+3ELORkyuOgDjCh7zuWDFqRtPPhhVgq9N1F7CvLNKg1TX4f2duwtKQ0p044Au9r1PLIXHrIzQ== + dependencies: + "@types/yargs-parser" "*" "@zkochan/cmd-shim@^3.1.0": version "3.1.0" @@ -2027,24 +2063,16 @@ JSONStream@^1.0.3, JSONStream@^1.0.4, JSONStream@^1.3.4: through ">=2.2.7 <3" abab@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" - integrity sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w== + version "2.0.1" + resolved "https://registry.npmjs.org/abab/-/abab-2.0.1.tgz#3fa17797032b71410ec372e11668f4b4ffc86a82" + integrity sha512-1zSbbCuoIjafKZ3mblY5ikvAb0ODUbqBnFuUb7f6uLeQhhGJ0vEV4ntmtxKLT2WgXCO94E07BjunsIw1jOMPZw== abbrev@1: version "1.1.1" resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== -accepts@^1.3.0, accepts@~1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" - integrity sha1-w8p0NJOGSMPg2cHjKN1otiLChMo= - dependencies: - mime-types "~2.1.11" - negotiator "0.6.1" - -accepts@^1.3.7, accepts@~1.3.7: +accepts@^1.3.0, accepts@^1.3.7, accepts@~1.3.3, accepts@~1.3.7: version "1.3.7" resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== @@ -2054,60 +2082,59 @@ accepts@^1.3.7, accepts@~1.3.7: accessory@~1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/accessory/-/accessory-1.1.0.tgz#7833e9839a32ded76d26021f36a41707a520f593" + resolved "https://registry.npmjs.org/accessory/-/accessory-1.1.0.tgz#7833e9839a32ded76d26021f36a41707a520f593" integrity sha1-eDPpg5oy3tdtJgIfNqQXB6Ug9ZM= dependencies: ap "~0.2.0" balanced-match "~0.2.0" dot-parts "~1.0.0" -acorn-dynamic-import@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz#482210140582a36b83c3e342e1cfebcaa9240948" - integrity sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw== - acorn-globals@^4.1.0, acorn-globals@^4.3.0: - version "4.3.2" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.2.tgz#4e2c2313a597fd589720395f6354b41cd5ec8006" - integrity sha512-BbzvZhVtZP+Bs1J1HcwrQe8ycfO0wStkSGxuul3He3GkHOIZ6eTqOkPuw9IP1X3+IkOo4wiJmwkobzXYz4wewQ== + version "4.3.4" + resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7" + integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A== dependencies: acorn "^6.0.1" acorn-walk "^6.0.1" acorn-jsx@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e" - integrity sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg== + version "5.0.2" + resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.2.tgz#84b68ea44b373c4f8686023a551f61a21b7c4a4f" + integrity sha512-tiNTrP1MP0QrChmD2DdupCr6HWSFeKVw5d/dHTu4Y7rkAkRhU/Dt7dphAfIUyxtHpl/eBVip5uTNSpQJHylpAw== -acorn-node@^1.6.1: - version "1.6.2" - resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.6.2.tgz#b7d7ceca6f22e6417af933a62cad4de01048d5d2" - integrity sha512-rIhNEZuNI8ibQcL7ANm/mGyPukIaZsRNX9psFNQURyJW0nu6k8wjSDld20z6v2mDBWqX13pIEnk9gGZJHIlEXg== +acorn-node@^1.2.0, acorn-node@^1.3.0, acorn-node@^1.5.2, acorn-node@^1.6.1: + version "1.8.2" + resolved "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" + integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== dependencies: - acorn "^6.0.2" - acorn-dynamic-import "^4.0.0" - acorn-walk "^6.1.0" - xtend "^4.0.1" + acorn "^7.0.0" + acorn-walk "^7.0.0" + xtend "^4.0.2" -acorn-walk@^6.0.1, acorn-walk@^6.1.0: - version "6.1.1" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.1.tgz#d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913" - integrity sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw== +acorn-walk@^6.0.1: + version "6.2.0" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c" + integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== -acorn@^4.0.3: - version "4.0.13" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" - integrity sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c= +acorn-walk@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.0.0.tgz#c8ba6f0f1aac4b0a9e32d1f0af12be769528f36b" + integrity sha512-7Bv1We7ZGuU79zZbb6rRqcpxo3OY+zrdtloZWoyD8fmGX+FeXRjE+iuGkZjSXLVovLzrsvMGMy0EkwA0E0umxg== -acorn@^5.5.3: +acorn@^5.2.1, acorn@^5.5.3: version "5.7.3" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" + resolved "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== -acorn@^6.0.1, acorn@^6.0.2, acorn@^6.0.4, acorn@^6.0.7: - version "6.1.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f" - integrity sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA== +acorn@^6.0.1, acorn@^6.0.4, acorn@^6.0.7: + version "6.3.0" + resolved "https://registry.npmjs.org/acorn/-/acorn-6.3.0.tgz#0087509119ffa4fc0a0041d1e93a417e68cb856e" + integrity sha512-/czfa8BwS88b9gWQVhc8eknunSA2DoJpJyTQkhheIf5E48u1N0R4q/YxxsAeqRrmK9TQ/uYfgLDfZo91UlANIA== + +acorn@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/acorn/-/acorn-7.0.0.tgz#26b8d1cd9a9b700350b71c0905546f64d1284e7a" + integrity sha512-PaF/MduxijYYt7unVGRuds1vBC9bFxbNf+VWqhOClfdgy7RlVkQqt610ig1/yxTgsDIfW1cWDel5EBbOy3jdtQ== agent-base@4, agent-base@^4.3.0: version "4.3.0" @@ -2131,12 +2158,12 @@ agentkeepalive@^3.4.1: humanize-ms "^1.2.1" airbnb-prop-types@^2.13.2: - version "2.13.2" - resolved "https://registry.yarnpkg.com/airbnb-prop-types/-/airbnb-prop-types-2.13.2.tgz#43147a5062dd2a4a5600e748a47b64004cc5f7fc" - integrity sha512-2FN6DlHr6JCSxPPi25EnqGaXC4OC3/B3k1lCd6MMYrZ51/Gf/1qDfaR+JElzWa+Tl7cY2aYOlsYJGFeQyVHIeQ== + version "2.15.0" + resolved "https://registry.npmjs.org/airbnb-prop-types/-/airbnb-prop-types-2.15.0.tgz#5287820043af1eb469f5b0af0d6f70da6c52aaef" + integrity sha512-jUh2/hfKsRjNFC4XONQrxo/n/3GG4Tn6Hl0WlFQN5PY9OMC9loSCoAYKnZsWaP8wEfd5xcrPloK0Zg6iS1xwVA== dependencies: - array.prototype.find "^2.0.4" - function.prototype.name "^1.1.0" + array.prototype.find "^2.1.0" + function.prototype.name "^1.1.1" has "^1.0.3" is-regex "^1.0.4" object-is "^1.0.1" @@ -2144,9 +2171,9 @@ airbnb-prop-types@^2.13.2: object.entries "^1.1.0" prop-types "^15.7.2" prop-types-exact "^1.2.0" - react-is "^16.8.6" + react-is "^16.9.0" -ajv@^6.5.5: +ajv@^6.10.2, ajv@^6.5.5, ajv@^6.9.1: version "6.10.2" resolved "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw== @@ -2156,19 +2183,15 @@ ajv@^6.5.5: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ajv@^6.9.1: - version "6.10.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1" - integrity sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg== - dependencies: - fast-deep-equal "^2.0.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - amdefine@>=0.0.4: version "1.0.1" - resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" + resolved "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" + integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU= + +ansi-colors@3.2.3: + version "3.2.3" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz#57d35b8686e851e2cc04c403f1c00203976a1813" + integrity sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw== ansi-escapes@^3.0.0, ansi-escapes@^3.2.0: version "3.2.0" @@ -2203,16 +2226,16 @@ any-promise@^1.0.0: integrity sha1-q8av7tzqUugJzcA3au0845Y10X8= anymatch@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" - integrity sha1-o+Uvo5FoyCX/V7AkgSbOWo/5VQc= + version "1.3.2" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" + integrity sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA== dependencies: - arrify "^1.0.0" micromatch "^2.1.5" + normalize-path "^2.0.0" anymatch@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== dependencies: micromatch "^3.1.4" @@ -2220,7 +2243,7 @@ anymatch@^2.0.0: ap@~0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/ap/-/ap-0.2.0.tgz#ae0942600b29912f0d2b14ec60c45e8f330b6110" + resolved "https://registry.npmjs.org/ap/-/ap-0.2.0.tgz#ae0942600b29912f0d2b14ec60c45e8f330b6110" integrity sha1-rglCYAspkS8NKxTsYMRejzMLYRA= aproba@^1.0.3, aproba@^1.1.1: @@ -2250,12 +2273,12 @@ argparse@^1.0.7: argv@^0.0.2: version "0.0.2" - resolved "https://registry.yarnpkg.com/argv/-/argv-0.0.2.tgz#ecbd16f8949b157183711b1bda334f37840185ab" + resolved "https://registry.npmjs.org/argv/-/argv-0.0.2.tgz#ecbd16f8949b157183711b1bda334f37840185ab" integrity sha1-7L0W+JSbFXGDcRsb2jNPN4QBhas= arr-diff@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" + resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" integrity sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8= dependencies: arr-flatten "^1.0.1" @@ -2282,19 +2305,14 @@ array-differ@^2.0.3: array-equal@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" + resolved "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= array-filter@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-1.0.0.tgz#baf79e62e6ef4c2a4c0b831232daffec251f9d83" + resolved "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz#baf79e62e6ef4c2a4c0b831232daffec251f9d83" integrity sha1-uveeYubvTCpMC4MSMtr/7CUfnYM= -array-filter@~0.0.0: - version "0.0.1" - resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" - integrity sha1-fajPLiZijtcygDWB/SH2fKzS7uw= - array-find-index@^1.0.1: version "1.0.2" resolved "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" @@ -2307,7 +2325,7 @@ array-flatten@1.1.1: array-flatten@2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.1.tgz#426bb9da84090c1838d812c8150af20a8331e296" + resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.1.tgz#426bb9da84090c1838d812c8150af20a8331e296" integrity sha1-Qmu52oQJDBg42BLIFQryCoMx4pY= array-ify@^1.0.0: @@ -2317,22 +2335,12 @@ array-ify@^1.0.0: array-includes@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" + resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" integrity sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0= dependencies: define-properties "^1.1.2" es-abstract "^1.7.0" -array-map@~0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" - integrity sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI= - -array-reduce@~0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" - integrity sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys= - array-union@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" @@ -2347,7 +2355,7 @@ array-uniq@^1.0.1: array-unique@^0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" + resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" integrity sha1-odl8yvy8JiXMcPrc6zalDFiwGlM= array-unique@^0.3.2: @@ -2355,37 +2363,37 @@ array-unique@^0.3.2: resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= -array.prototype.find@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.4.tgz#556a5c5362c08648323ddaeb9de9d14bc1864c90" - integrity sha1-VWpcU2LAhkgyPdrrnenRS8GGTJA= +array.prototype.find@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.1.0.tgz#630f2eaf70a39e608ac3573e45cf8ccd0ede9ad7" + integrity sha512-Wn41+K1yuO5p7wRZDl7890c3xvv5UBrfVXTVIe28rSQb6LS0fZMDrQB6PAcxQFRFy6vJTLDc3A2+3CjQdzVKRg== dependencies: - define-properties "^1.1.2" - es-abstract "^1.7.0" + define-properties "^1.1.3" + es-abstract "^1.13.0" array.prototype.flat@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.1.tgz#812db8f02cad24d3fab65dd67eabe3b8903494a4" + resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.1.tgz#812db8f02cad24d3fab65dd67eabe3b8903494a4" integrity sha512-rVqIs330nLJvfC7JqYvEWwqVr5QjYF1ib02i3YJtR/fICO6527Tjpc/e4Mvmxh3GIePPreRXMdaGyC99YphWEw== dependencies: define-properties "^1.1.2" es-abstract "^1.10.0" function-bind "^1.1.1" -arrify@^1.0.0, arrify@^1.0.1: +arrify@^1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= asap@^2.0.0, asap@~2.0.3: version "2.0.6" - resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= asn1.js@^4.0.0: - version "4.9.1" - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" - integrity sha1-SLokC0WpKA6UdImQull9IWYX/UA= + version "4.10.1" + resolved "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" + integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== dependencies: bn.js "^4.0.0" inherits "^2.0.1" @@ -2404,15 +2412,16 @@ assert-plus@1.0.0, assert-plus@^1.0.0: integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= assert@^1.4.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" - integrity sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE= + version "1.5.0" + resolved "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" + integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== dependencies: + object-assign "^4.1.1" util "0.10.3" -assertion-error@^1.0.1: +assertion-error@^1.0.1, assertion-error@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" + resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== assign-symbols@^1.0.0: @@ -2422,25 +2431,18 @@ assign-symbols@^1.0.0: astral-regex@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== -astw@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/astw/-/astw-2.2.0.tgz#7bd41784d32493987aeb239b6b4e1c57a873b917" - integrity sha1-e9QXhNMkk5h66yOba04cV6hzuRc= - dependencies: - acorn "^4.0.3" - async-each@^1.0.1: version "1.0.3" - resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" + resolved "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== async-limiter@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" - integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg== + version "1.0.1" + resolved "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== asynckit@^0.4.0: version "0.4.0" @@ -2459,7 +2461,7 @@ atob@^2.1.1: autoprefixer@9.6.0: version "9.6.0" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.6.0.tgz#0111c6bde2ad20c6f17995a33fad7cf6854b4c87" + resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.6.0.tgz#0111c6bde2ad20c6f17995a33fad7cf6854b4c87" integrity sha512-kuip9YilBqhirhHEGHaBTZKXL//xxGnzvsD0FtBQa6z+A69qZD6s/BAX9VzDF1i9VKDquTJDQaPLSEhOnL6FvQ== dependencies: browserslist "^4.6.1" @@ -2481,47 +2483,55 @@ aws4@^1.8.0: integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== babel-eslint@^10.0.1: - version "10.0.1" - resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.1.tgz#919681dc099614cd7d31d45c8908695092a1faed" - integrity sha512-z7OT1iNV+TjOwHNLLyJk+HN+YVWX+CLE6fPD2SymJZOZQBs+QIexFjhm4keGTm8MW9xr4EC9Q0PbaLB24V5GoQ== + version "10.0.3" + resolved "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.0.3.tgz#81a2c669be0f205e19462fed2482d33e4687a88a" + integrity sha512-z3U7eMY6r/3f3/JB9mTsLjyxrv0Yb1zb8PCWCLpguxfCzBIZUwy23R1t/XKewP+8mEN2Ck8Dtr4q20z6ce6SoA== dependencies: "@babel/code-frame" "^7.0.0" "@babel/parser" "^7.0.0" "@babel/traverse" "^7.0.0" "@babel/types" "^7.0.0" - eslint-scope "3.7.1" eslint-visitor-keys "^1.0.0" + resolve "^1.12.0" -babel-jest@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.8.0.tgz#5c15ff2b28e20b0f45df43fe6b7f2aae93dba589" - integrity sha512-+5/kaZt4I9efoXzPlZASyK/lN9qdRKmmUav9smVc0ruPQD7IsfucQ87gpOE8mn2jbDuS6M/YOW6n3v9ZoIfgnw== +babel-jest@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-24.9.0.tgz#3fc327cb8467b89d14d7bc70e315104a783ccd54" + integrity sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw== dependencies: - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" "@types/babel__core" "^7.1.0" babel-plugin-istanbul "^5.1.0" - babel-preset-jest "^24.6.0" + babel-preset-jest "^24.9.0" chalk "^2.4.2" slash "^2.0.0" +babel-plugin-dynamic-import-node@^2.3.0: + version "2.3.0" + resolved "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" + integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ== + dependencies: + object.assign "^4.1.0" + babel-plugin-istanbul@^5.1.0: - version "5.1.4" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.4.tgz#841d16b9a58eeb407a0ddce622ba02fe87a752ba" - integrity sha512-dySz4VJMH+dpndj0wjJ8JPs/7i1TdSPb1nRrn56/92pKOF9VKC1FMFJmMXjzlGGusnCAqujP6PBCiKq0sVA+YQ== + version "5.2.0" + resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz#df4ade83d897a92df069c4d9a25cf2671293c854" + integrity sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw== dependencies: + "@babel/helper-plugin-utils" "^7.0.0" find-up "^3.0.0" istanbul-lib-instrument "^3.3.0" test-exclude "^5.2.3" -babel-plugin-jest-hoist@^24.6.0: - version "24.6.0" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.6.0.tgz#f7f7f7ad150ee96d7a5e8e2c5da8319579e78019" - integrity sha512-3pKNH6hMt9SbOv0F3WVmy5CWQ4uogS3k0GY5XLyQHJ9EGpAT9XWkFd2ZiXXtkwFHdAHa5j7w7kfxSP5lAIwu7w== +babel-plugin-jest-hoist@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz#4f837091eb407e01447c8843cbec546d0002d756" + integrity sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw== dependencies: "@types/babel__traverse" "^7.0.6" -babel-polyfill@6.26.0: +babel-polyfill@6.26.0, babel-polyfill@^6.26.0: version "6.26.0" resolved "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" integrity sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM= @@ -2530,13 +2540,13 @@ babel-polyfill@6.26.0: core-js "^2.5.0" regenerator-runtime "^0.10.5" -babel-preset-jest@^24.6.0: - version "24.6.0" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.6.0.tgz#66f06136eefce87797539c0d63f1769cc3915984" - integrity sha512-pdZqLEdmy1ZK5kyRUfvBb2IfTPb2BUvIJczlPspS8fWmBQslNNDBqVfh7BW5leOVJMDZKzjD8XEyABTk6gQ5yw== +babel-preset-jest@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz#192b521e2217fb1d1f67cf73f70c336650ad3cdc" + integrity sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg== dependencies: "@babel/plugin-syntax-object-rest-spread" "^7.0.0" - babel-plugin-jest-hoist "^24.6.0" + babel-plugin-jest-hoist "^24.9.0" babel-runtime@^6.23.0, babel-runtime@^6.26.0: version "6.26.0" @@ -2548,7 +2558,7 @@ babel-runtime@^6.23.0, babel-runtime@^6.26.0: babelify@10.0.0: version "10.0.0" - resolved "https://registry.yarnpkg.com/babelify/-/babelify-10.0.0.tgz#fe73b1a22583f06680d8d072e25a1e0d1d1d7fb5" + resolved "https://registry.npmjs.org/babelify/-/babelify-10.0.0.tgz#fe73b1a22583f06680d8d072e25a1e0d1d1d7fb5" integrity sha512-X40FaxyH7t3X+JFAKvb1H9wooWKLRCi8pg3m8poqtdZaIng+bjzp9RvKQCvRjF9isHiPkXspbbXT/zwXLtwgwg== balanced-match@^1.0.0: @@ -2558,13 +2568,13 @@ balanced-match@^1.0.0: balanced-match@~0.2.0: version "0.2.1" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.2.1.tgz#7bc658b4bed61eee424ad74f75f5c3e2c4df3cc7" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.1.tgz#7bc658b4bed61eee424ad74f75f5c3e2c4df3cc7" integrity sha1-e8ZYtL7WHu5CStdPdfXD4sTfPMc= base64-js@^1.0.2: - version "1.2.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" - integrity sha512-dwVUVIXsBZXwTuwnXI9RK8sBmgq09NDHzyR9SAph9eqk76gKK2JSQmZARC2zRC81JC2QTtxD0ARU5qTS25gIGw== + version "1.3.1" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" + integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== base@^0.11.1: version "0.11.2" @@ -2592,8 +2602,9 @@ before-after-hook@^2.0.0: integrity sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A== binary-extensions@^1.0.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" + version "1.13.1" + resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" + integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== bluebird@^3.5.1, bluebird@^3.5.3, bluebird@^3.5.5: version "3.5.5" @@ -2601,9 +2612,9 @@ bluebird@^3.5.1, bluebird@^3.5.3, bluebird@^3.5.5: integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w== bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: - version "4.11.7" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.7.tgz#ddb048e50d9482790094c13eb3fcfc833ce7ab46" - integrity sha512-LxFiV5mefv0ley0SzqkOPR1bC4EbpPx8LkOz5vMe/Yi15t5hzwgO/G+tc7wOtL4PZTYjwHu8JnEiSLumuSjSfA== + version "4.11.8" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" + integrity sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA== body-parser@1.19.0: version "1.19.0" @@ -2623,7 +2634,7 @@ body-parser@1.19.0: boolbase@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= brace-expansion@^1.1.7: @@ -2636,7 +2647,7 @@ brace-expansion@^1.1.7: braces@^1.8.2: version "1.8.5" - resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" + resolved "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" integrity sha1-uneWLhLf+WnWt2cR6RS3N4V79qc= dependencies: expand-range "^1.8.1" @@ -2645,7 +2656,7 @@ braces@^1.8.2: braces@^2.3.1, braces@^2.3.2: version "2.3.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== dependencies: arr-flatten "^1.1.0" @@ -2661,68 +2672,77 @@ braces@^2.3.1, braces@^2.3.2: brorand@^1.0.1: version "1.1.0" - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= browser-pack@^6.0.1: - version "6.0.2" - resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.0.2.tgz#f86cd6cef4f5300c8e63e07a4d512f65fbff4531" - integrity sha1-+GzWzvT1MAyOY+B6TVEvZfv/RTE= + version "6.1.0" + resolved "https://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz#c34ba10d0b9ce162b5af227c7131c92c2ecd5774" + integrity sha512-erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA== dependencies: JSONStream "^1.0.3" - combine-source-map "~0.7.1" + combine-source-map "~0.8.0" defined "^1.0.0" + safe-buffer "^5.1.1" through2 "^2.0.0" umd "^3.0.0" browser-process-hrtime@^0.1.2: version "0.1.3" - resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" + resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" integrity sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw== browser-resolve@^1.11.0, browser-resolve@^1.11.3, browser-resolve@^1.7.0: version "1.11.3" - resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" + resolved "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== dependencies: resolve "1.1.7" browser-stdout@1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" + resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" + integrity sha1-81HTKWnTL6XXpVZxVCY9korjvR8= + +browser-stdout@1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== browserify-aes@^1.0.0, browserify-aes@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" - integrity sha1-Xncl297x/Vkw1OurSFZ85FHEigo= + version "1.2.0" + resolved "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" + integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== dependencies: - buffer-xor "^1.0.2" + buffer-xor "^1.0.3" cipher-base "^1.0.0" create-hash "^1.1.0" - evp_bytestokey "^1.0.0" + evp_bytestokey "^1.0.3" inherits "^2.0.1" + safe-buffer "^5.0.1" browserify-cipher@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" - integrity sha1-mYgkSHS/XtTijalWZtzWasj8Njo= + version "1.0.1" + resolved "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" + integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== dependencies: browserify-aes "^1.0.4" browserify-des "^1.0.0" evp_bytestokey "^1.0.0" browserify-des@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" - integrity sha1-2qJ3cXRwki7S/hhZQRihdUOXId0= + version "1.0.2" + resolved "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" + integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== dependencies: cipher-base "^1.0.1" des.js "^1.0.0" inherits "^2.0.1" + safe-buffer "^5.1.2" browserify-rsa@^4.0.0: version "4.0.1" - resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" + resolved "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= dependencies: bn.js "^4.1.0" @@ -2730,7 +2750,7 @@ browserify-rsa@^4.0.0: browserify-shim@3.8.14: version "3.8.14" - resolved "https://registry.yarnpkg.com/browserify-shim/-/browserify-shim-3.8.14.tgz#bf1057026932d3253c75ef7dd714f3b877edec6b" + resolved "https://registry.npmjs.org/browserify-shim/-/browserify-shim-3.8.14.tgz#bf1057026932d3253c75ef7dd714f3b877edec6b" integrity sha1-vxBXAmky0yU8de991xTzuHft7Gs= dependencies: exposify "~0.5.0" @@ -2741,7 +2761,7 @@ browserify-shim@3.8.14: browserify-sign@^4.0.0: version "4.0.4" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" + resolved "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" integrity sha1-qk62jl17ZYuqa/alfmMMvXqT0pg= dependencies: bn.js "^4.1.1" @@ -2754,14 +2774,14 @@ browserify-sign@^4.0.0: browserify-zlib@~0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" + resolved "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== dependencies: pako "~1.0.5" -browserify@16.2.3, browserify@^16.1.0: +browserify@16.2.3: version "16.2.3" - resolved "https://registry.yarnpkg.com/browserify/-/browserify-16.2.3.tgz#7ee6e654ba4f92bce6ab3599c3485b1cc7a0ad0b" + resolved "https://registry.npmjs.org/browserify/-/browserify-16.2.3.tgz#7ee6e654ba4f92bce6ab3599c3485b1cc7a0ad0b" integrity sha512-zQt/Gd1+W+IY+h/xX2NYMW4orQWhqSwyV+xsblycTtpOuB27h1fZhhNQuipJ4t79ohw4P4mMem0jp/ZkISQtjQ== dependencies: JSONStream "^1.0.3" @@ -2813,18 +2833,80 @@ browserify@16.2.3, browserify@^16.1.0: vm-browserify "^1.0.0" xtend "^4.0.0" -browserslist@^4.6.0, browserslist@^4.6.1: - version "4.6.3" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.6.3.tgz#0530cbc6ab0c1f3fc8c819c72377ba55cf647f05" - integrity sha512-CNBqTCq22RKM8wKJNowcqihHJ4SkI8CGeK7KOR9tPboXUuS5Zk5lQgzzTbs4oxD8x+6HUshZUa2OyNI9lR93bQ== +browserify@^16.1.0: + version "16.5.0" + resolved "https://registry.npmjs.org/browserify/-/browserify-16.5.0.tgz#a1c2bc0431bec11fd29151941582e3f645ede881" + integrity sha512-6bfI3cl76YLAnCZ75AGu/XPOsqUhRyc0F/olGIJeCxtfxF2HvPKEcmjU9M8oAPxl4uBY1U7Nry33Q6koV3f2iw== dependencies: - caniuse-lite "^1.0.30000975" - electron-to-chromium "^1.3.164" - node-releases "^1.1.23" + JSONStream "^1.0.3" + assert "^1.4.0" + browser-pack "^6.0.1" + browser-resolve "^1.11.0" + browserify-zlib "~0.2.0" + buffer "^5.0.2" + cached-path-relative "^1.0.0" + concat-stream "^1.6.0" + console-browserify "^1.1.0" + constants-browserify "~1.0.0" + crypto-browserify "^3.0.0" + defined "^1.0.0" + deps-sort "^2.0.0" + domain-browser "^1.2.0" + duplexer2 "~0.1.2" + events "^2.0.0" + glob "^7.1.0" + has "^1.0.0" + htmlescape "^1.1.0" + https-browserify "^1.0.0" + inherits "~2.0.1" + insert-module-globals "^7.0.0" + labeled-stream-splicer "^2.0.0" + mkdirp "^0.5.0" + module-deps "^6.0.0" + os-browserify "~0.3.0" + parents "^1.0.1" + path-browserify "~0.0.0" + process "~0.11.0" + punycode "^1.3.2" + querystring-es3 "~0.2.0" + read-only-stream "^2.0.0" + readable-stream "^2.0.2" + resolve "^1.1.4" + shasum "^1.0.0" + shell-quote "^1.6.1" + stream-browserify "^2.0.0" + stream-http "^3.0.0" + string_decoder "^1.1.1" + subarg "^1.0.0" + syntax-error "^1.1.1" + through2 "^2.0.0" + timers-browserify "^1.0.1" + tty-browserify "0.0.1" + url "~0.11.0" + util "~0.10.1" + vm-browserify "^1.0.0" + xtend "^4.0.0" + +browserslist@^4.6.0, browserslist@^4.6.1, browserslist@^4.6.6: + version "4.7.0" + resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.7.0.tgz#9ee89225ffc07db03409f2fee524dc8227458a17" + integrity sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA== + dependencies: + caniuse-lite "^1.0.30000989" + electron-to-chromium "^1.3.247" + node-releases "^1.1.29" + +bs-logger@0.x: + version "0.2.6" + resolved "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" + integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== + dependencies: + fast-json-stable-stringify "2.x" bser@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" + version "2.1.0" + resolved "https://registry.npmjs.org/bser/-/bser-2.1.0.tgz#65fc784bf7f87c009b973c12db6546902fa9c7b5" + integrity sha512-8zsjWrQkkBoLK6uxASk1nJ2SKv97ltiGDo6A3wA0/yRPz+CwmEyDo0hUrhIuukG2JHpAl3bvFIixw2/3Hi0DOg== dependencies: node-int64 "^0.4.0" @@ -2833,27 +2915,27 @@ btoa-lite@^1.0.0: resolved "https://registry.npmjs.org/btoa-lite/-/btoa-lite-1.0.0.tgz#337766da15801210fdd956c22e9c6891ab9d0337" integrity sha1-M3dm2hWAEhD92VbCLpxokaudAzc= -buffer-from@^1.0.0: +buffer-from@1.x, buffer-from@^1.0.0: version "1.1.1" resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== -buffer-xor@^1.0.2: +buffer-xor@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + resolved "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= buffer@^5.0.2: - version "5.0.6" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.0.6.tgz#2ea669f7eec0b6eda05b08f8b5ff661b28573588" - integrity sha1-LqZp9+7Atu2gWwj4tf9mGyhXNYg= + version "5.4.3" + resolved "https://registry.npmjs.org/buffer/-/buffer-5.4.3.tgz#3fbc9c69eb713d323e3fc1a895eee0710c072115" + integrity sha512-zvj65TkFeIt3i6aj5bIvJDzjjQQGs4o/sNoezg1F1kYap9Nu2jcUdpwzRSJTHMMzG0H7bZkn4rNQpImhuxWX2A== dependencies: base64-js "^1.0.2" ieee754 "^1.1.4" builtin-status-codes@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + resolved "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= builtins@^1.0.3: @@ -2871,11 +2953,6 @@ byte-size@^5.0.1: resolved "https://registry.npmjs.org/byte-size/-/byte-size-5.0.1.tgz#4b651039a5ecd96767e71a3d7ed380e48bed4191" integrity sha512-/XuKeqWocKsYa/cBY1YbSJSWWqTi4cFgr9S6OyM7PBaPbr9zvNGwWP33vt0uqGhwDdN+y3yhbXVILEUpnwEWGw== -bytes@2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" - integrity sha1-fZcZb51br39pNeJZhVSe3SpsIzk= - bytes@3.1.0: version "3.1.0" resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" @@ -2917,10 +2994,10 @@ cache-base@^1.0.1: union-value "^1.0.0" unset-value "^1.0.0" -cached-path-relative@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.0.1.tgz#d09c4b52800aa4c078e2dd81a869aac90d2e54e7" - integrity sha1-0JxLUoAKpMB44t2BqGmqyQ0uVOc= +cached-path-relative@^1.0.0, cached-path-relative@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.0.2.tgz#a13df4196d26776220cc3356eb147a52dba2c6db" + integrity sha512-5r2GqsoEb4qMTTN9J+WzXfjov+hjxT+j3u5K+kIVNIwAd99DLCJE9pBIMP1qVeybV6JiijL385Oz0DcYxfbOIg== call-me-maybe@^1.0.1: version "1.0.1" @@ -2948,7 +3025,7 @@ callsites@^2.0.0: callsites@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== camelcase-keys@^2.0.0: @@ -2975,26 +3052,27 @@ camelcase@^2.0.0: camelcase@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" + integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo= camelcase@^4.1.0: version "4.1.0" resolved "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= -camelcase@^5.0.0: +camelcase@^5.0.0, camelcase@^5.3.1: version "5.3.1" resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== -caniuse-lite@^1.0.30000971, caniuse-lite@^1.0.30000975: - version "1.0.30000975" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000975.tgz#d4e7131391dddcf2838999d3ce75065f65f1cdfc" - integrity sha512-ZsXA9YWQX6ATu5MNg+Vx/cMQ+hM6vBBSqDeJs8ruk9z0ky4yIHML15MoxcFt088ST2uyjgqyUGRJButkptWf0w== +caniuse-lite@^1.0.30000971, caniuse-lite@^1.0.30000989: + version "1.0.30000989" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000989.tgz#b9193e293ccf7e4426c5245134b8f2a56c0ac4b9" + integrity sha512-vrMcvSuMz16YY6GSVZ0dWDTJP8jqk3iFQ/Aq5iqblPwxSVVZI+zxDyTX0VPqtQsDnfdrBDcsmhgTEOh5R8Lbpw== capture-exit@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" + resolved "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== dependencies: rsvp "^4.8.4" @@ -3006,12 +3084,12 @@ caseless@~0.12.0: chai-subset@1.5.0: version "1.5.0" - resolved "https://registry.yarnpkg.com/chai-subset/-/chai-subset-1.5.0.tgz#d03dbcfa8c9daad848643bbde4e63376b7882427" + resolved "https://registry.npmjs.org/chai-subset/-/chai-subset-1.5.0.tgz#d03dbcfa8c9daad848643bbde4e63376b7882427" integrity sha1-0D28+oydqthIZDu95OYzdreIJCc= chai@4.1.1: version "4.1.1" - resolved "https://registry.yarnpkg.com/chai/-/chai-4.1.1.tgz#66e21279e6f3c6415ff8231878227900e2171b39" + resolved "https://registry.npmjs.org/chai/-/chai-4.1.1.tgz#66e21279e6f3c6415ff8231878227900e2171b39" integrity sha1-ZuISeebzxkFf+CMYeCJ5AOIXGzk= dependencies: assertion-error "^1.0.1" @@ -3021,10 +3099,9 @@ chai@4.1.1: pathval "^1.0.0" type-detect "^4.0.0" -<<<<<<< HEAD chai@4.2.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/chai/-/chai-4.2.0.tgz#760aa72cf20e3795e84b12877ce0e83737aa29e5" + resolved "https://registry.npmjs.org/chai/-/chai-4.2.0.tgz#760aa72cf20e3795e84b12877ce0e83737aa29e5" integrity sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw== dependencies: assertion-error "^1.1.0" @@ -3034,21 +3111,9 @@ chai@4.2.0: pathval "^1.1.0" type-detect "^4.0.5" -chalk@2.3.1: - version "2.3.1" - resolved "https://registry.npmjs.org/chalk/-/chalk-2.3.1.tgz#523fe2678aec7b04e8041909292fe8b17059b796" - integrity sha512-QUU4ofkDoMIVO7hcx1iPTISs88wsO8jA92RQIm4JAwZvFGGAV2hSAA1NX7oVj2Ej2Q6NDTcRDjPTFrMCRZoJ6g== - dependencies: - ansi-styles "^3.2.0" - escape-string-regexp "^1.0.5" - supports-color "^5.2.0" - chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4.2: -======= -chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4.2: ->>>>>>> Convert GLS tests to jest, migrate graphiql tests from chai expect to jest expect version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: ansi-styles "^3.2.1" @@ -3060,13 +3125,14 @@ chardet@^0.7.0: resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== -check-error@^1.0.1: +check-error@^1.0.1, check-error@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" + resolved "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" + integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII= cheerio@^1.0.0-rc.2: version "1.0.0-rc.3" - resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6" + resolved "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6" integrity sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA== dependencies: css-select "~1.2.0" @@ -3077,9 +3143,9 @@ cheerio@^1.0.0-rc.2: parse5 "^3.0.1" chokidar@^2.0.0, chokidar@^2.0.4, chokidar@^2.1.1: - version "2.1.6" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.6.tgz#b6cad653a929e244ce8a834244164d241fa954c5" - integrity sha512-V2jUo67OKkc6ySiRpJrjlpJKl9kDuG+Xb8VgsGzb+aEouhgS1D0weyPU4lEzdAcsCAvrih2J2BqyXqHWvVLw5g== + version "2.1.8" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" + integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== dependencies: anymatch "^2.0.0" async-each "^1.0.1" @@ -3106,11 +3172,12 @@ ci-info@^2.0.0: integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" - integrity sha1-7qvxlEGc6QDaMBjCB9IS8qbfCgc= + version "1.0.4" + resolved "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== dependencies: inherits "^2.0.1" + safe-buffer "^5.0.1" class-utils@^0.3.5: version "0.3.6" @@ -3136,7 +3203,8 @@ cli-width@^2.0.0: cliui@^3.2.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + resolved "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= dependencies: string-width "^1.0.1" strip-ansi "^3.0.1" @@ -3151,6 +3219,15 @@ cliui@^4.0.0: strip-ansi "^4.0.0" wrap-ansi "^2.0.0" +cliui@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" + integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== + dependencies: + string-width "^3.1.0" + strip-ansi "^5.2.0" + wrap-ansi "^5.1.0" + clone@^1.0.2: version "1.0.4" resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" @@ -3158,7 +3235,7 @@ clone@^1.0.2: co@^4.6.0: version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= code-point-at@^1.0.0: @@ -3166,17 +3243,9 @@ code-point-at@^1.0.0: resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= -codemirror-graphql@^0.9.0: - version "0.9.0" - resolved "https://registry.npmjs.org/codemirror-graphql/-/codemirror-graphql-0.9.0.tgz#78647c9d11942a210d80fdf6d43c3da5f3b88afe" - integrity sha512-dB2V9zj0NYjR25Xt0/N0WA7V0yDaCDH4/6N61aBS8JS49y3CCwsW5m8IL0DXYunIfBUin/I9fFwiHL22/e/BHQ== - dependencies: - graphql-language-service-interface "^2.1.0" - graphql-language-service-parser "^1.3.0" - codecov@^3.5.0: version "3.5.0" - resolved "https://registry.yarnpkg.com/codecov/-/codecov-3.5.0.tgz#3d0748932f9cb41e1ad7f21fa346ef1b2b1bed47" + resolved "https://registry.npmjs.org/codecov/-/codecov-3.5.0.tgz#3d0748932f9cb41e1ad7f21fa346ef1b2b1bed47" integrity sha512-/OsWOfIHaQIr7aeZ4pY0UC1PZT6kimoKFOFYFNb6wxo3iw12nRrh+mNGH72rnXxNsq6SGfesVPizm/6Q3XqcFQ== dependencies: argv "^0.0.2" @@ -3185,10 +3254,18 @@ codecov@^3.5.0: teeny-request "^3.11.3" urlgrey "^0.4.4" +codemirror-graphql@^0.9.0: + version "0.9.0" + resolved "https://registry.npmjs.org/codemirror-graphql/-/codemirror-graphql-0.9.0.tgz#78647c9d11942a210d80fdf6d43c3da5f3b88afe" + integrity sha512-dB2V9zj0NYjR25Xt0/N0WA7V0yDaCDH4/6N61aBS8JS49y3CCwsW5m8IL0DXYunIfBUin/I9fFwiHL22/e/BHQ== + dependencies: + graphql-language-service-interface "^2.1.0" + graphql-language-service-parser "^1.3.0" + codemirror@^5.28.0, codemirror@^5.47.0: - version "5.47.0" - resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.47.0.tgz#c13a521ae5660d3acc655af252f4955065293789" - integrity sha512-kV49Fr+NGFHFc/Imsx6g180hSlkGhuHxTSDDmDHOuyln0MQYFLixDY4+bFkBVeCEiepYfDimAF/e++9jPJk4QA== + version "5.48.4" + resolved "https://registry.npmjs.org/codemirror/-/codemirror-5.48.4.tgz#4210fbe92be79a88f0eea348fab3ae78da85ce47" + integrity sha512-pUhZXDQ6qXSpWdwlgAwHEkd4imA0kf83hINmUEzJpmG80T/XLtDDEzZo8f6PQLuRCcUQhmzqqIo3ZPTRaWByRA== collection-visit@^1.0.0: version "1.0.0" @@ -3218,10 +3295,10 @@ columnify@^1.5.4: strip-ansi "^3.0.0" wcwidth "^1.0.0" -combine-source-map@~0.7.1: - version "0.7.2" - resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.7.2.tgz#0870312856b307a87cc4ac486f3a9a62aeccc09e" - integrity sha1-CHAxKFazB6h8xKxIbzqaYq7MwJ4= +combine-source-map@^0.8.0, combine-source-map@~0.8.0: + version "0.8.0" + resolved "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.8.0.tgz#a58d0df042c186fcf822a8e8015f5450d2d79a8b" + integrity sha1-pY0N8ELBhvz4IqjoAV9UUNLXmos= dependencies: convert-source-map "~1.1.0" inline-source-map "~0.6.0" @@ -3237,19 +3314,20 @@ combined-stream@^1.0.6, combined-stream@~1.0.6: commander@2.9.0: version "2.9.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" + resolved "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" integrity sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q= dependencies: graceful-readlink ">= 1.0.0" commander@^2.19.0, commander@^2.8.1, commander@~2.20.0: version "2.20.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" + resolved "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== commondir@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= compare-func@^1.3.1: version "1.3.2" @@ -3269,9 +3347,9 @@ concat-map@0.0.1: resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= -concat-stream@^1.5.0, concat-stream@^1.6.0, concat-stream@~1.6.0: +concat-stream@^1.5.0, concat-stream@^1.6.0, concat-stream@^1.6.1, concat-stream@~1.6.0: version "1.6.2" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== dependencies: buffer-from "^1.0.0" @@ -3289,15 +3367,6 @@ concat-stream@^2.0.0: readable-stream "^3.0.2" typedarray "^0.0.6" -concat-stream@~1.5.1: - version "1.5.2" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" - integrity sha1-cIl4Yk2FavQaWnQd790mHadSwmY= - dependencies: - inherits "~2.0.1" - readable-stream "~2.0.0" - typedarray "~0.0.5" - config-chain@^1.1.11: version "1.1.12" resolved "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa" @@ -3308,7 +3377,7 @@ config-chain@^1.1.11: console-browserify@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" + resolved "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" integrity sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA= dependencies: date-now "^0.1.4" @@ -3320,12 +3389,12 @@ console-control-strings@^1.0.0, console-control-strings@~1.1.0: constants-browserify@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + resolved "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= content-disposition@0.5.2: version "0.5.2" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" + resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" integrity sha1-DPaLud318r55YcOoUXjLhdunjLQ= content-disposition@0.5.3: @@ -3335,12 +3404,7 @@ content-disposition@0.5.3: dependencies: safe-buffer "5.1.2" -content-type@^1.0.2, content-type@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" - integrity sha1-t9ETrueo3Se9IRM8TcJSnfFyHu0= - -content-type@^1.0.4, content-type@~1.0.4: +content-type@^1.0.2, content-type@^1.0.4, content-type@~1.0.2, content-type@~1.0.4: version "1.0.4" resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== @@ -3459,24 +3523,24 @@ conventional-recommended-bump@^5.0.0: convert-source-map@^1.1.0, convert-source-map@^1.4.0: version "1.6.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" + resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== dependencies: safe-buffer "~5.1.1" convert-source-map@~1.1.0: version "1.1.3" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" + resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" integrity sha1-SCnId+n+SbMWHzvzZziI4gRpmGA= cookie-signature@1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= cookie@0.3.1: version "0.3.1" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" + resolved "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s= cookie@0.4.0: @@ -3503,40 +3567,29 @@ copy-descriptor@^0.1.0: copy-to-clipboard@^3.2.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.2.0.tgz#d2724a3ccbfed89706fac8a894872c979ac74467" + resolved "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.2.0.tgz#d2724a3ccbfed89706fac8a894872c979ac74467" integrity sha512-eOZERzvCmxS8HWzugj4Uxl8OJxa7T2k1Gi0X5qavwydHIfuSHq2dTD09LOg/XyGq4Zpb5IsR/2OJ5lbOegz78w== dependencies: toggle-selection "^1.0.6" core-js-compat@^3.1.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.1.3.tgz#0cc3ba4c7f62928c2837e1cffbe8dc78b4f1ae14" - integrity sha512-EP018pVhgwsKHz3YoN1hTq49aRe+h017Kjz0NQz3nXV0cCRMvH3fLQl+vEPGr4r4J5sk4sU3tUC7U1aqTCeJeA== + version "3.2.1" + resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.2.1.tgz#0cbdbc2e386e8e00d3b85dc81c848effec5b8150" + integrity sha512-MwPZle5CF9dEaMYdDeWm73ao/IflDH+FjeJCWEADcEgFSE9TLimFKwJsfmkwzI8eC0Aj0mgvMDjeQjrElkz4/A== dependencies: - browserslist "^4.6.0" - core-js-pure "3.1.3" - semver "^6.1.0" - -core-js-pure@3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.1.3.tgz#4c90752d5b9471f641514f3728f51c1e0783d0b5" - integrity sha512-k3JWTrcQBKqjkjI0bkfXS0lbpWPxYuHWfMMjC1VDmzU4Q58IwSbuXSo99YO/hUHlw/EB4AlfA2PVxOGkrIq6dA== + browserslist "^4.6.6" + semver "^6.3.0" core-js@^1.0.0: version "1.2.7" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" + resolved "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY= core-js@^2.4.0, core-js@^2.5.0, core-js@^2.6.5: version "2.6.9" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.9.tgz#6b4b214620c834152e179323727fc19741b084f2" + resolved "https://registry.npmjs.org/core-js/-/core-js-2.6.9.tgz#6b4b214620c834152e179323727fc19741b084f2" integrity sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A== -core-js@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.0.1.tgz#1343182634298f7f38622f95e73f54e48ddf4738" - integrity sha512-sco40rF+2KlE0ROMvydjkrVMMG1vYilP2ALoRXcYR4obqbYIuV3Bg+51GEDW+HF8n7NRA+iaA4qD0nD9lo9mew== - core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" @@ -3544,7 +3597,7 @@ core-util-is@1.0.2, core-util-is@~1.0.0: cosmiconfig@^5.0.0, cosmiconfig@^5.1.0, cosmiconfig@^5.2.0, cosmiconfig@^5.2.1: version "5.2.1" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" + resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== dependencies: import-fresh "^2.0.0" @@ -3553,27 +3606,28 @@ cosmiconfig@^5.0.0, cosmiconfig@^5.1.0, cosmiconfig@^5.2.0, cosmiconfig@^5.2.1: parse-json "^4.0.0" create-ecdh@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" - integrity sha1-iIxyNZbN92EvZJgjPuvXo1MBc30= + version "4.0.3" + resolved "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" + integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== dependencies: bn.js "^4.1.0" elliptic "^6.0.0" -create-hash@^1.1.0, create-hash@^1.1.1, create-hash@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" - integrity sha1-YGBCrIuSYnUPSDyt2rD1gZFy2P0= +create-hash@^1.1.0, create-hash@^1.1.2: + version "1.2.0" + resolved "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== dependencies: cipher-base "^1.0.1" inherits "^2.0.1" - ripemd160 "^2.0.0" + md5.js "^1.3.4" + ripemd160 "^2.0.1" sha.js "^2.4.0" create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: - version "1.1.6" - resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" - integrity sha1-rLniIaThe9sHbpBlfEK5PjcmzwY= + version "1.1.7" + resolved "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" + integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== dependencies: cipher-base "^1.0.3" create-hash "^1.1.0" @@ -3584,7 +3638,7 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: create-react-class@^15.6.0: version "15.6.3" - resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.3.tgz#2d73237fb3f970ae6ebe011a9e66f46dbca80036" + resolved "https://registry.npmjs.org/create-react-class/-/create-react-class-15.6.3.tgz#2d73237fb3f970ae6ebe011a9e66f46dbca80036" integrity sha512-M+/3Q6E6DLO6Yx3OwrWjwHBnvfXXYA7W+dFjt/ZDBemHO1DDZhsalX/NUtnTYclN6GfnBDRh4qRHjcDHmlJBJg== dependencies: fbjs "^0.8.9" @@ -3593,7 +3647,7 @@ create-react-class@^15.6.0: cross-fetch@2.2.2: version "2.2.2" - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-2.2.2.tgz#a47ff4f7fc712daba8f6a695a11c948440d45723" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-2.2.2.tgz#a47ff4f7fc712daba8f6a695a11c948440d45723" integrity sha1-pH/09/xxLauo9qaVoRyUhEDUVyM= dependencies: node-fetch "2.1.2" @@ -3601,7 +3655,7 @@ cross-fetch@2.2.2: cross-spawn@^6.0.0, cross-spawn@^6.0.5: version "6.0.5" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== dependencies: nice-try "^1.0.4" @@ -3611,9 +3665,9 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5: which "^1.2.9" crypto-browserify@^3.0.0: - version "3.11.0" - resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" - integrity sha1-NlKgkGq5sqfgw85mpAjpV6JIVSI= + version "3.12.0" + resolved "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== dependencies: browserify-cipher "^1.0.0" browserify-sign "^4.0.0" @@ -3625,10 +3679,11 @@ crypto-browserify@^3.0.0: pbkdf2 "^3.0.3" public-encrypt "^4.0.0" randombytes "^2.0.0" + randomfill "^1.0.3" css-select@~1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" + resolved "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= dependencies: boolbase "~1.0.0" @@ -3638,18 +3693,18 @@ css-select@~1.2.0: css-what@2.1: version "2.1.3" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" + resolved "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0", cssom@^0.3.4: - version "0.3.6" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.6.tgz#f85206cee04efa841f3c5982a74ba96ab20d65ad" - integrity sha512-DtUeseGk9/GBW0hl0vVPpU22iHL6YB5BUX7ml1hB+GMpo0NX5G4voX3kdWiMSEguFtcW3Vh3djqNF4aIe6ne0A== + version "0.3.8" + resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" + integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== cssstyle@^1.0.0, cssstyle@^1.1.1: - version "1.2.2" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.2.2.tgz#427ea4d585b18624f6fdbf9de7a2a1a3ba713077" - integrity sha512-43wY3kl1CVQSvL7wUY1qXkxVGkStjpkDmVjiIKX8R97uhajy8Bybay78uOtqvh7Q5GK75dNPfW0geWjE6qQQow== + version "1.4.0" + resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz#9d31328229d3c565c61e586b02041a28fccdccf1" + integrity sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA== dependencies: cssom "0.3.x" @@ -3660,10 +3715,10 @@ currently-unhandled@^0.4.1: dependencies: array-find-index "^1.0.1" -cyclist@~0.2.2: - version "0.2.2" - resolved "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640" - integrity sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA= +cyclist@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" + integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk= dargs@^4.0.1: version "4.1.0" @@ -3672,6 +3727,11 @@ dargs@^4.0.1: dependencies: number-is-nan "^1.0.0" +dash-ast@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/dash-ast/-/dash-ast-1.0.0.tgz#12029ba5fb2f8aa6f0a861795b23c1b4b6c27d37" + integrity sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA== + dashdash@^1.12.0: version "1.14.1" resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" @@ -3681,7 +3741,7 @@ dashdash@^1.12.0: data-urls@^1.0.0, data-urls@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" + resolved "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== dependencies: abab "^2.0.0" @@ -3690,7 +3750,7 @@ data-urls@^1.0.0, data-urls@^1.1.0: date-now@^0.1.4: version "0.1.4" - resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" + resolved "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs= dateformat@^3.0.0: @@ -3700,21 +3760,14 @@ dateformat@^3.0.0: debug@2.6.1: version "2.6.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" integrity sha1-eYVQkLosTjEVzH2HaUkdWPBJE1E= dependencies: ms "0.7.2" -debug@2.6.7: - version "2.6.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.7.tgz#92bad1f6d05bbb6bba22cca88bcd0ec894c2861e" - integrity sha1-krrR9tBbu2u6Isyoi80OyJTChh4= - dependencies: - ms "2.0.0" - debug@2.6.8: version "2.6.8" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" integrity sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw= dependencies: ms "2.0.0" @@ -3733,26 +3786,16 @@ debug@3.1.0: dependencies: ms "2.0.0" -<<<<<<< HEAD debug@3.2.6, debug@^3.1.0, debug@^3.2.6: -======= -debug@^2.2.0, debug@^2.3.3: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - dependencies: - ms "2.0.0" - -debug@^3.1.0, debug@^3.2.6: ->>>>>>> Convert GLS tests to jest, migrate graphiql tests from chai expect to jest expect version "3.2.6" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" + resolved "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== dependencies: ms "^2.1.1" debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: version "4.1.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" + resolved "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== dependencies: ms "^2.1.1" @@ -3787,24 +3830,27 @@ dedent@^0.7.0: deep-eql@^2.0.1: version "2.0.2" - resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-2.0.2.tgz#b1bac06e56f0a76777686d50c9feb75c2ed7679a" + resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-2.0.2.tgz#b1bac06e56f0a76777686d50c9feb75c2ed7679a" integrity sha1-sbrAblbwp2d3aG1Qyf63XC7XZ5o= dependencies: type-detect "^3.0.0" +deep-eql@^3.0.1: + version "3.0.1" + resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" + integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== + dependencies: + type-detect "^4.0.0" + deep-extend@^0.6.0: version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== deep-is@~0.1.3: version "0.1.3" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" - -deepmerge@4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.0.0.tgz#3e3110ca29205f120d7cb064960a39c3d2087c09" - integrity sha512-YZ1rOP5+kHor4hMAH+HRQnBQHg+wvS1un1hAOuIcxcBy0hzcUf6Jg2a1w65kpoOUnurOfZbERwjI1TfZxNjcww== + resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= defaults@^1.0.3: version "1.0.3" @@ -3815,7 +3861,7 @@ defaults@^1.0.3: define-properties@^1.1.2, define-properties@^1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== dependencies: object-keys "^1.0.12" @@ -3844,7 +3890,7 @@ define-property@^2.0.2: defined@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" + resolved "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= delayed-stream@~1.0.0: @@ -3857,19 +3903,14 @@ delegates@^1.0.0: resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= -depd@1.1.0, depd@~1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" - integrity sha1-4b2Cxqq2ztlluXuIsX7T5SjKGMM= - -depd@~1.1.2: +depd@~1.1.0, depd@~1.1.2: version "1.1.2" resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= dependency-graph@^0.8.0: version "0.8.0" - resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.8.0.tgz#2da2d35ed852ecc24a5d6c17788ba57c3708755b" + resolved "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.8.0.tgz#2da2d35ed852ecc24a5d6c17788ba57c3708755b" integrity sha512-DCvzSq2UiMsuLnj/9AL484ummEgLtZIcRS7YvtO38QnpX3vqh9nJ8P+zhu8Ja+SmLrBHO2iDbva20jq38qvBkQ== deprecation@^2.0.0: @@ -3879,7 +3920,7 @@ deprecation@^2.0.0: deps-sort@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5" + resolved "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5" integrity sha1-CRckkC6EZYJg65EHSMzNGvbiH7U= dependencies: JSONStream "^1.0.3" @@ -3889,7 +3930,7 @@ deps-sort@^2.0.0: des.js@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" + resolved "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" integrity sha1-wHTS4qpqipoH29YfmhXCzYPsjsw= dependencies: inherits "^2.0.1" @@ -3897,7 +3938,7 @@ des.js@^1.0.0: destroy@~1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + resolved "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= detect-indent@^5.0.0: @@ -3907,25 +3948,25 @@ detect-indent@^5.0.0: detect-libc@^1.0.2: version "1.0.3" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= detect-newline@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" + resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I= detective@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/detective/-/detective-4.5.0.tgz#6e5a8c6b26e6c7a254b1c6b6d7490d98ec91edd1" - integrity sha1-blqMaybmx6JUsca210kNmOyR7dE= + version "4.7.1" + resolved "https://registry.npmjs.org/detective/-/detective-4.7.1.tgz#0eca7314338442febb6d65da54c10bb1c82b246e" + integrity sha512-H6PmeeUcZloWtdt4DAkFyzFL94arpHr3NOwwmVILFiy+9Qd4JTxxXrzfyGk/lmct2qVGBwTSwSXagqu2BxmWig== dependencies: - acorn "^4.0.3" + acorn "^5.2.1" defined "^1.0.0" detective@^5.0.2: version "5.2.0" - resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.0.tgz#feb2a77e85b904ecdea459ad897cc90a99bd2a7b" + resolved "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz#feb2a77e85b904ecdea459ad897cc90a99bd2a7b" integrity sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg== dependencies: acorn-node "^1.6.1" @@ -3934,7 +3975,7 @@ detective@^5.0.2: detective@~3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/detective/-/detective-3.1.0.tgz#77782444ab752b88ca1be2e9d0a0395f1da25eed" + resolved "https://registry.npmjs.org/detective/-/detective-3.1.0.tgz#77782444ab752b88ca1be2e9d0a0395f1da25eed" integrity sha1-d3gkRKt1K4jKG+Lp0KA5Xx2iXu0= dependencies: escodegen "~1.1.0" @@ -3948,20 +3989,25 @@ dezalgo@^1.0.0: asap "^2.0.0" wrappy "1" -diff-sequences@^24.3.0: - version "24.3.0" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.3.0.tgz#0f20e8a1df1abddaf4d9c226680952e64118b975" - integrity sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw== +diff-sequences@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.9.0.tgz#5715d6244e2aa65f48bba0bc972db0b0b11e95b5" + integrity sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew== diff@3.2.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" + resolved "https://registry.npmjs.org/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" integrity sha1-yc45Okt8vQsFinJck98pkCeGj/k= +diff@3.5.0: + version "3.5.0" + resolved "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" + integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== + diffie-hellman@^5.0.0: - version "5.0.2" - resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" - integrity sha1-tYNXOScM/ias9jIJn97SoH8gnl4= + version "5.0.3" + resolved "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" + integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== dependencies: bn.js "^4.1.0" miller-rabin "^4.0.0" @@ -3976,26 +4022,34 @@ dir-glob@^2.2.2: discontinuous-range@1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/discontinuous-range/-/discontinuous-range-1.0.0.tgz#e38331f0844bba49b9a9cb71c771585aab1bc65a" + resolved "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz#e38331f0844bba49b9a9cb71c771585aab1bc65a" integrity sha1-44Mx8IRLukm5qctxx3FYWqsbxlo= doctrine@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + resolved "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== dependencies: esutils "^2.0.2" doctrine@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== dependencies: esutils "^2.0.2" -dom-serializer@0, dom-serializer@~0.1.1: +dom-serializer@0: + version "0.2.1" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.1.tgz#13650c850daffea35d8b626a4cfc4d3a17643fdb" + integrity sha512-sK3ujri04WyjwQXVoK4PU3y8ula1stq10GJZpqHIUgoGZdsGzAGu65BnU3d08aTVSvO7mGPZUc0wTEDL+qGE0Q== + dependencies: + domelementtype "^2.0.1" + entities "^2.0.0" + +dom-serializer@~0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== dependencies: domelementtype "^1.3.0" @@ -4003,31 +4057,36 @@ dom-serializer@0, dom-serializer@~0.1.1: domain-browser@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" + resolved "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: version "1.3.1" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== +domelementtype@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d" + integrity sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ== + domexception@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" + resolved "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== dependencies: webidl-conversions "^4.0.2" domhandler@^2.3.0: version "2.4.2" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" + resolved "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== dependencies: domelementtype "1" domutils@1.5.1: version "1.5.1" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" + resolved "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= dependencies: dom-serializer "0" @@ -4035,7 +4094,7 @@ domutils@1.5.1: domutils@^1.5.1: version "1.7.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" + resolved "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== dependencies: dom-serializer "0" @@ -4043,7 +4102,7 @@ domutils@^1.5.1: dot-parts@~1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/dot-parts/-/dot-parts-1.0.1.tgz#884bd7bcfc3082ffad2fe5db53e494d8f3e0743f" + resolved "https://registry.npmjs.org/dot-parts/-/dot-parts-1.0.1.tgz#884bd7bcfc3082ffad2fe5db53e494d8f3e0743f" integrity sha1-iEvXvPwwgv+tL+XbU+SU2PPgdD8= dot-prop@^3.0.0: @@ -4062,7 +4121,7 @@ dot-prop@^4.2.0: duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: version "0.1.4" - resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" + resolved "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" integrity sha1-ixLauHjA1p4+eJEFFmKjL8a93ME= dependencies: readable-stream "^2.0.2" @@ -4092,18 +4151,18 @@ ecc-jsbn@~0.1.1: ee-first@1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= -electron-to-chromium@^1.3.164: - version "1.3.165" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.165.tgz#51864c9e3c9bd9e1c020b9493fddcc0f49888e3a" - integrity sha512-iIS8axR524EAnvUtWUNnREnYjQrS0zUvutIKYgTVuN3MzcjrV31EuJYKw7DGOtFO9DQw+JiXeaVDPQWMskG1wQ== +electron-to-chromium@^1.3.247: + version "1.3.261" + resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.261.tgz#51b35a3126fb09b6852f24e907a6d3bd01c67724" + integrity sha512-nA9xFj1SgHXlW/6T4+udW2u/Ic/bne25UoFsddoNM7Ut2bgNGLLQUhLhk+vQlbKh9WiRgDDlHaC36Oy7AgRR9w== elliptic@^6.0.0: - version "6.4.0" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" - integrity sha1-ysmvh2LIWDYYcAPI3+GT5eLq5d8= + version "6.5.1" + resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.1.tgz#c380f5f909bf1b9b4428d028cd18d3b0efd6b52b" + integrity sha512-xvJINNLbTeWQjrl6X+7eQCrIy/YPv5XCpKW6kB5mKvtnGILoLDcySuwomfdzt0BMdLNVnuRNTuzKNHj0bva1Cg== dependencies: bn.js "^4.4.0" brorand "^1.0.1" @@ -4115,15 +4174,10 @@ elliptic@^6.0.0: emoji-regex@^7.0.1: version "7.0.3" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== -encodeurl@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" - integrity sha1-eePVhlU0aQn+bw9Fpd5oEDspTSA= - -encodeurl@~1.0.2: +encodeurl@~1.0.1, encodeurl@~1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= @@ -4144,9 +4198,14 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0: entities@^1.1.1, entities@~1.1.1: version "1.1.2" - resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" + resolved "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== +entities@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/entities/-/entities-2.0.0.tgz#68d6084cab1b079767540d80e56a39b423e4abf4" + integrity sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw== + env-paths@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/env-paths/-/env-paths-1.0.0.tgz#4168133b42bb05c38a35b1ae4397c8298ab369e0" @@ -4154,7 +4213,7 @@ env-paths@^1.0.0: enzyme-adapter-react-15@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/enzyme-adapter-react-15/-/enzyme-adapter-react-15-1.4.0.tgz#4abd648205a8f25f88beedb8f431dc4809eb45a4" + resolved "https://registry.npmjs.org/enzyme-adapter-react-15/-/enzyme-adapter-react-15-1.4.0.tgz#4abd648205a8f25f88beedb8f431dc4809eb45a4" integrity sha512-PHLE4JzUUDhk9RpoLb0MPVaGhVe2i/nowVjzPhbk6cL8rqOHegh/KMOVlndelf3GBZfp0axl2C9OCbYhrSBtqg== dependencies: enzyme-adapter-utils "^1.10.1" @@ -4165,7 +4224,7 @@ enzyme-adapter-react-15@^1.4.0: enzyme-adapter-utils@^1.10.1: version "1.12.0" - resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.12.0.tgz#96e3730d76b872f593e54ce1c51fa3a451422d93" + resolved "https://registry.npmjs.org/enzyme-adapter-utils/-/enzyme-adapter-utils-1.12.0.tgz#96e3730d76b872f593e54ce1c51fa3a451422d93" integrity sha512-wkZvE0VxcFx/8ZsBw0iAbk3gR1d9hK447ebnSYBf95+r32ezBq+XDSAvRErkc4LZosgH8J7et7H7/7CtUuQfBA== dependencies: airbnb-prop-types "^2.13.2" @@ -4177,7 +4236,7 @@ enzyme-adapter-utils@^1.10.1: enzyme@^3.9.0: version "3.10.0" - resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-3.10.0.tgz#7218e347c4a7746e133f8e964aada4a3523452f6" + resolved "https://registry.npmjs.org/enzyme/-/enzyme-3.10.0.tgz#7218e347c4a7746e133f8e964aada4a3523452f6" integrity sha512-p2yy9Y7t/PFbPoTvrWde7JIYB2ZyGC+NgTNbVEGvZ5/EyoYSr9aG/2rSbVvyNvMHEhw9/dmGUJHWtfQIEiX9pg== dependencies: array.prototype.flat "^1.2.1" @@ -4214,21 +4273,25 @@ error-ex@^1.2.0, error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" -es-abstract@^1.10.0, es-abstract@^1.11.0, es-abstract@^1.12.0, es-abstract@^1.5.0, es-abstract@^1.5.1, es-abstract@^1.7.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" - integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== +es-abstract@^1.10.0, es-abstract@^1.11.0, es-abstract@^1.12.0, es-abstract@^1.13.0, es-abstract@^1.5.1, es-abstract@^1.7.0: + version "1.14.2" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.14.2.tgz#7ce108fad83068c8783c3cdf62e504e084d8c497" + integrity sha512-DgoQmbpFNOofkjJtKwr87Ma5EW4Dc8fWhD0R+ndq7Oc456ivUfGOOP6oAZTTKl5/CcNMP+EN+e3/iUzgE0veZg== dependencies: es-to-primitive "^1.2.0" function-bind "^1.1.1" has "^1.0.3" + has-symbols "^1.0.0" is-callable "^1.1.4" is-regex "^1.0.4" - object-keys "^1.0.12" + object-inspect "^1.6.0" + object-keys "^1.1.1" + string.prototype.trimleft "^2.0.0" + string.prototype.trimright "^2.0.0" es-to-primitive@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== dependencies: is-callable "^1.1.4" @@ -4249,7 +4312,7 @@ es6-promisify@^5.0.0: escape-html@~1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= escape-string-regexp@1.0.5, escape-string-regexp@^1.0.3, escape-string-regexp@^1.0.5: @@ -4258,9 +4321,9 @@ escape-string-regexp@1.0.5, escape-string-regexp@^1.0.3, escape-string-regexp@^1 integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= escodegen@^1.11.0, escodegen@^1.9.1: - version "1.11.1" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.1.tgz#c485ff8d6b4cdb89e27f4a856e91f118401ca510" - integrity sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw== + version "1.12.0" + resolved "https://registry.npmjs.org/escodegen/-/escodegen-1.12.0.tgz#f763daf840af172bb3a2b6dd7219c0e17f7ff541" + integrity sha512-TuA+EhsanGcme5T3R0L80u4t8CpbXQjegRmf7+FPTJrtCTErXFeelblRgHQa1FofEzqYYJmJ/OqjTwREp9qgmg== dependencies: esprima "^3.1.3" estraverse "^4.2.0" @@ -4271,7 +4334,7 @@ escodegen@^1.11.0, escodegen@^1.9.1: escodegen@~1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.1.0.tgz#c663923f6e20aad48d0c0fa49f31c6d4f49360cf" + resolved "https://registry.npmjs.org/escodegen/-/escodegen-1.1.0.tgz#c663923f6e20aad48d0c0fa49f31c6d4f49360cf" integrity sha1-xmOSP24gqtSNDA+knzHG1PSTYM8= dependencies: esprima "~1.0.4" @@ -4282,39 +4345,41 @@ escodegen@~1.1.0: eslint-config-prettier@4.3.0: version "4.3.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-4.3.0.tgz#c55c1fcac8ce4518aeb77906984e134d9eb5a4f0" + resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-4.3.0.tgz#c55c1fcac8ce4518aeb77906984e134d9eb5a4f0" integrity sha512-sZwhSTHVVz78+kYD3t5pCWSYEdVSBR0PXnwjDRsUs8ytIrK8PLXw+6FKp8r3Z7rx4ZszdetWlXYKOHoUrrwPlA== dependencies: get-stdin "^6.0.0" eslint-plugin-babel@5.3.0: version "5.3.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-babel/-/eslint-plugin-babel-5.3.0.tgz#2e7f251ccc249326da760c1a4c948a91c32d0023" + resolved "https://registry.npmjs.org/eslint-plugin-babel/-/eslint-plugin-babel-5.3.0.tgz#2e7f251ccc249326da760c1a4c948a91c32d0023" integrity sha512-HPuNzSPE75O+SnxHIafbW5QB45r2w78fxqwK3HmjqIUoPfPzVrq6rD+CINU3yzoDSzEhUkX07VUphbF73Lth/w== dependencies: eslint-rule-composer "^0.3.0" eslint-plugin-dependencies@2.4.0: version "2.4.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-dependencies/-/eslint-plugin-dependencies-2.4.0.tgz#e0d3f32c097281a8afd6c6bef7bb025585e92d6f" + resolved "https://registry.npmjs.org/eslint-plugin-dependencies/-/eslint-plugin-dependencies-2.4.0.tgz#e0d3f32c097281a8afd6c6bef7bb025585e92d6f" + integrity sha512-IaW2phNpktrok2eDziZLYxmNaGysXjNj6NVji7LEv/qagHG2oshsmV+mUSxAGG5Jv9seuRBdX1YXEIaNlhkFJg== dependencies: commondir "^1.0.1" resolve "^1.1.6" eslint-plugin-flowtype@3.10.3: version "3.10.3" - resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-3.10.3.tgz#4a249e2fa98679d87cddbc00e22241e2466abe2e" + resolved "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-3.10.3.tgz#4a249e2fa98679d87cddbc00e22241e2466abe2e" integrity sha512-b1OzI5drhiDmIG52jiZVR7IWQkiwN1vLD+VqvYuLnpzGBwfdw/mjdXz+qN7XN1IVKQ6pUSV0t4F9TxKoJNkpRA== dependencies: lodash "^4.17.11" eslint-plugin-prefer-object-spread@1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-prefer-object-spread/-/eslint-plugin-prefer-object-spread-1.2.1.tgz#27fb91853690cceb3ae6101d9c8aecc6a67a402c" + resolved "https://registry.npmjs.org/eslint-plugin-prefer-object-spread/-/eslint-plugin-prefer-object-spread-1.2.1.tgz#27fb91853690cceb3ae6101d9c8aecc6a67a402c" + integrity sha1-J/uRhTaQzOs65hAdnIrsxqZ6QCw= eslint-plugin-react@7.13.0: version "7.13.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.13.0.tgz#bc13fd7101de67996ea51b33873cd9dc2b7e5758" + resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.13.0.tgz#bc13fd7101de67996ea51b33873cd9dc2b7e5758" integrity sha512-uA5LrHylu8lW/eAH3bEQe9YdzpPaFd9yAJTwTi/i/BKTD7j6aQMKVAdGM/ML72zD6womuSK7EiGtMKuK06lWjQ== dependencies: array-includes "^3.0.3" @@ -4327,36 +4392,32 @@ eslint-plugin-react@7.13.0: eslint-rule-composer@^0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz#79320c927b0c5c0d3d3d2b76c8b4a488f25bbaf9" + resolved "https://registry.npmjs.org/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz#79320c927b0c5c0d3d3d2b76c8b4a488f25bbaf9" integrity sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg== -eslint-scope@3.7.1: - version "3.7.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" - dependencies: - esrecurse "^4.1.0" - estraverse "^4.1.1" - eslint-scope@^4.0.3: version "4.0.3" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" + resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== dependencies: esrecurse "^4.1.0" estraverse "^4.1.1" eslint-utils@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512" - integrity sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q== + version "1.4.2" + resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.2.tgz#166a5180ef6ab7eb462f162fd0e6f2463d7309ab" + integrity sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q== + dependencies: + eslint-visitor-keys "^1.0.0" eslint-visitor-keys@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" + version "1.1.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" + integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== eslint@^5.16.0: version "5.16.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.16.0.tgz#a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea" + resolved "https://registry.npmjs.org/eslint/-/eslint-5.16.0.tgz#a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea" integrity sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg== dependencies: "@babel/code-frame" "^7.0.0" @@ -4398,7 +4459,7 @@ eslint@^5.16.0: espree@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a" + resolved "https://registry.npmjs.org/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a" integrity sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A== dependencies: acorn "^6.0.7" @@ -4407,12 +4468,12 @@ espree@^5.0.1: esprima-fb@3001.1.0-dev-harmony-fb: version "3001.1.0-dev-harmony-fb" - resolved "https://registry.yarnpkg.com/esprima-fb/-/esprima-fb-3001.0001.0000-dev-harmony-fb.tgz#b77d37abcd38ea0b77426bb8bc2922ce6b426411" + resolved "https://registry.npmjs.org/esprima-fb/-/esprima-fb-3001.0001.0000-dev-harmony-fb.tgz#b77d37abcd38ea0b77426bb8bc2922ce6b426411" integrity sha1-t303q8046gt3Qmu4vCkizmtCZBE= esprima@^3.1.3: version "3.1.3" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" + resolved "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM= esprima@^4.0.0: @@ -4422,47 +4483,44 @@ esprima@^4.0.0: esprima@~1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.0.4.tgz#9f557e08fc3b4d26ece9dd34f8fbf476b62585ad" + resolved "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz#9f557e08fc3b4d26ece9dd34f8fbf476b62585ad" integrity sha1-n1V+CPw7TSbs6d00+Pv0drYlha0= esquery@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" + resolved "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== dependencies: estraverse "^4.0.0" esrecurse@^4.1.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" + version "4.2.1" + resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" + integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== dependencies: estraverse "^4.1.0" - object-assign "^4.0.1" estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" + version "4.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== estraverse@~1.5.0: version "1.5.1" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.5.1.tgz#867a3e8e58a9f84618afb6c2ddbcd916b7cbaf71" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-1.5.1.tgz#867a3e8e58a9f84618afb6c2ddbcd916b7cbaf71" integrity sha1-hno+jlip+EYYr7bC3bzZFrfLr3E= esutils@^2.0.0, esutils@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" + version "2.0.3" + resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== esutils@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-1.0.0.tgz#8151d358e20c8acc7fb745e7472c0025fe496570" + resolved "https://registry.npmjs.org/esutils/-/esutils-1.0.0.tgz#8151d358e20c8acc7fb745e7472c0025fe496570" integrity sha1-gVHTWOIMisx/t0XnRywAJf5JZXA= -etag@~1.8.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.0.tgz#6f631aef336d6c46362b51764044ce216be3c051" - integrity sha1-b2Ma7zNtbEY2K1F2QETOIWvjwFE= - -etag@~1.8.1: +etag@~1.8.0, etag@~1.8.1: version "1.8.1" resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= @@ -4474,26 +4532,27 @@ eventemitter3@^3.1.0: events@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/events/-/events-2.1.0.tgz#2a9a1e18e6106e0e812aa9ebd4a819b3c29c0ba5" + resolved "https://registry.npmjs.org/events/-/events-2.1.0.tgz#2a9a1e18e6106e0e812aa9ebd4a819b3c29c0ba5" integrity sha512-3Zmiobend8P9DjmKAty0Era4jV8oJ0yGYe2nJJAxgymF9+N8F2m0hhZiMoWtcfepExzNKZumFU3ksdQbInGWCg== -evp_bytestokey@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" - integrity sha1-SXtmrZ/vZc18CKYYCCS6FHa2blM= +evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== dependencies: - create-hash "^1.1.1" + md5.js "^1.3.4" + safe-buffer "^5.1.1" exec-sh@^0.2.0: version "0.2.2" - resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.2.tgz#2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36" + resolved "https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.2.tgz#2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36" integrity sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw== dependencies: merge "^1.2.0" exec-sh@^0.3.2: version "0.3.2" - resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b" + resolved "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b" integrity sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg== execa@^1.0.0: @@ -4511,12 +4570,12 @@ execa@^1.0.0: exit@^0.1.2: version "0.1.2" - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= expand-brackets@^0.1.4: version "0.1.5" - resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" + resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" integrity sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s= dependencies: is-posix-bracket "^0.1.0" @@ -4536,26 +4595,26 @@ expand-brackets@^2.1.4: expand-range@^1.8.1: version "1.8.2" - resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" + resolved "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc= dependencies: fill-range "^2.1.0" -expect@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-24.8.0.tgz#471f8ec256b7b6129ca2524b2a62f030df38718d" - integrity sha512-/zYvP8iMDrzaaxHVa724eJBCKqSHmO0FA7EDkBiRHxg6OipmMn1fN+C8T9L9K8yr7UONkOifu6+LLH+z76CnaA== +expect@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/expect/-/expect-24.9.0.tgz#b75165b4817074fa4a157794f46fe9f1ba15b6ca" + integrity sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" ansi-styles "^3.2.0" - jest-get-type "^24.8.0" - jest-matcher-utils "^24.8.0" - jest-message-util "^24.8.0" - jest-regex-util "^24.3.0" + jest-get-type "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-regex-util "^24.9.0" exposify@~0.5.0: version "0.5.0" - resolved "https://registry.yarnpkg.com/exposify/-/exposify-0.5.0.tgz#f92d0094c265b3f553e1fa456a03a1883d1059cc" + resolved "https://registry.npmjs.org/exposify/-/exposify-0.5.0.tgz#f92d0094c265b3f553e1fa456a03a1883d1059cc" integrity sha1-+S0AlMJls/VT4fpFagOhiD0QWcw= dependencies: globo "~1.1.0" @@ -4566,7 +4625,7 @@ exposify@~0.5.0: express-graphql@0.6.7: version "0.6.7" - resolved "https://registry.yarnpkg.com/express-graphql/-/express-graphql-0.6.7.tgz#1605558e11404e27a13a22b8794672d901d21baa" + resolved "https://registry.npmjs.org/express-graphql/-/express-graphql-0.6.7.tgz#1605558e11404e27a13a22b8794672d901d21baa" integrity sha512-VXcbGTbHcmLKwrSnCbaa6rahDUV1vMsj5BwCi1IDDDKsg6LMyAldb5UkJAfioAzogbZTDGOCFqm9KwhpQ9Up1A== dependencies: accepts "^1.3.0" @@ -4586,7 +4645,7 @@ express-graphql@^0.9.0: express@5.0.0-alpha.5: version "5.0.0-alpha.5" - resolved "https://registry.yarnpkg.com/express/-/express-5.0.0-alpha.5.tgz#e37423a8d82826fb915c7dd166e2900bfa3552e6" + resolved "https://registry.npmjs.org/express/-/express-5.0.0-alpha.5.tgz#e37423a8d82826fb915c7dd166e2900bfa3552e6" integrity sha1-43QjqNgoJvuRXH3RZuKQC/o1UuY= dependencies: accepts "~1.3.3" @@ -4673,7 +4732,7 @@ extend-shallow@^3.0.0, extend-shallow@^3.0.2: extend@^1.2.1: version "1.3.0" - resolved "https://registry.yarnpkg.com/extend/-/extend-1.3.0.tgz#d1516fb0ff5624d2ebf9123ea1dac5a1994004f8" + resolved "https://registry.npmjs.org/extend/-/extend-1.3.0.tgz#d1516fb0ff5624d2ebf9123ea1dac5a1994004f8" integrity sha1-0VFvsP9WJNLr+RI+odrFoZlABPg= extend@~3.0.2: @@ -4692,7 +4751,7 @@ external-editor@^3.0.3: extglob@^0.3.1: version "0.3.2" - resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" + resolved "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" integrity sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE= dependencies: is-extglob "^1.0.0" @@ -4738,24 +4797,26 @@ fast-glob@^2.2.6: merge2 "^1.2.3" micromatch "^3.1.10" -fast-json-stable-stringify@^2.0.0: +fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= fast-levenshtein@~2.0.4: version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= fb-watchman@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" + resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" + integrity sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg= dependencies: bser "^2.0.0" fbjs@^0.8.9: version "0.8.17" - resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" + resolved "https://registry.npmjs.org/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" integrity sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90= dependencies: core-js "^1.0.0" @@ -4767,11 +4828,13 @@ fbjs@^0.8.9: ua-parser-js "^0.7.18" fetch-mock@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/fetch-mock/-/fetch-mock-6.0.0.tgz#4edb5acefa8ea90d7eb4213130ab73137fac9df1" + version "6.5.2" + resolved "https://registry.npmjs.org/fetch-mock/-/fetch-mock-6.5.2.tgz#b3842b305c13ea0f81c85919cfaa7de387adfa3e" + integrity sha512-EIvbpCLBTYyDLu4HJiqD7wC8psDwTUaPaWXNKZbhNO/peUYKiNp5PkZGKRJtnTxaPQu71ivqafvjpM7aL+MofQ== dependencies: - glob-to-regexp "^0.3.0" - path-to-regexp "^2.1.0" + babel-polyfill "^6.26.0" + glob-to-regexp "^0.4.0" + path-to-regexp "^2.2.1" figgy-pudding@^3.4.1, figgy-pudding@^3.5.1: version "3.5.1" @@ -4787,24 +4850,24 @@ figures@^2.0.0: file-entry-cache@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" + resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== dependencies: flat-cache "^2.0.1" filename-regex@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" + resolved "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" integrity sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY= fill-range@^2.1.0: - version "2.2.3" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" - integrity sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM= + version "2.2.4" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" + integrity sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q== dependencies: is-number "^2.1.0" isobject "^2.0.0" - randomatic "^1.1.3" + randomatic "^3.0.0" repeat-element "^1.1.2" repeat-string "^1.5.2" @@ -4819,15 +4882,15 @@ fill-range@^4.0.0: to-regex-range "^2.1.0" finalhandler@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.3.tgz#ef47e77950e999780e86022a560e3217e0d0cc89" - integrity sha1-70fneVDpmXgOhgIqVg4yF+DQzIk= + version "1.0.6" + resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.6.tgz#007aea33d1a4d3e42017f624848ad58d212f814f" + integrity sha1-AHrqM9Gk0+QgF/YkhIrVjSEvgU8= dependencies: - debug "2.6.7" + debug "2.6.9" encodeurl "~1.0.1" escape-html "~1.0.3" on-finished "~2.3.0" - parseurl "~1.3.1" + parseurl "~1.3.2" statuses "~1.3.1" unpipe "~1.0.0" @@ -4846,7 +4909,7 @@ finalhandler@~1.1.2: find-cache-dir@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" + resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== dependencies: commondir "^1.0.1" @@ -4855,10 +4918,9 @@ find-cache-dir@^2.0.0: find-parent-dir@~0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" + resolved "https://registry.npmjs.org/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" integrity sha1-M8RLQpqysvBkYpnF+fcY83b/jVQ= -<<<<<<< HEAD find-up@3.0.0, find-up@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" @@ -4866,8 +4928,6 @@ find-up@3.0.0, find-up@^3.0.0: dependencies: locate-path "^3.0.0" -======= ->>>>>>> Convert GLS tests to jest, migrate graphiql tests from chai expect to jest expect find-up@^1.0.0: version "1.1.2" resolved "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" @@ -4883,7 +4943,6 @@ find-up@^2.0.0: dependencies: locate-path "^2.0.0" -<<<<<<< HEAD find-up@^4.0.0: version "4.1.0" resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" @@ -4891,33 +4950,32 @@ find-up@^4.0.0: dependencies: locate-path "^5.0.0" path-exists "^4.0.0" -======= -find-up@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== - dependencies: - locate-path "^3.0.0" ->>>>>>> Convert GLS tests to jest, migrate graphiql tests from chai expect to jest expect flat-cache@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" + resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== dependencies: flatted "^2.0.0" rimraf "2.6.3" write "1.0.3" +flat@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/flat/-/flat-4.1.0.tgz#090bec8b05e39cba309747f1d588f04dbaf98db2" + integrity sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw== + dependencies: + is-buffer "~2.0.3" + flatted@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.0.tgz#55122b6536ea496b4b44893ee2608141d10d9916" - integrity sha512-R+H8IZclI8AAkSBRQJLVOsxwAoHd6WC40b4QTNWIjzAa6BXOBfQcM587MXDTVPeYaopFNWHUFLx7eNmHDSxMWg== + version "2.0.1" + resolved "https://registry.npmjs.org/flatted/-/flatted-2.0.1.tgz#69e57caa8f0eacbc281d2e2cb458d46fdb449e08" + integrity sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg== flow-bin@^0.101.0: - version "0.101.0" - resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.101.0.tgz#c56fa0afb9c151eeba7954136e9066d408691063" - integrity sha512-2xriPEOSrGQklAArNw1ixoIUiLTWhIquYV26WqnxEu7IcXWgoZUcfJXufG9kIvrNbdwCNd5RBjTwbB0p6L6XaA== + version "0.101.1" + resolved "https://registry.npmjs.org/flow-bin/-/flow-bin-0.101.1.tgz#6175eb4a2e510949decf4750cb573f83ddf303f2" + integrity sha512-+HVuoMgWNK8vIM662Rt6OzlJNTnC+BWChdeYjkPpl70TKiRMt//j6/5x6PH8HVZ/vytOfPZw2b/JrlBHdlGCkQ== flush-write-stream@^1.0.0: version "1.1.1" @@ -4934,7 +4992,7 @@ for-in@^1.0.1, for-in@^1.0.2: for-own@^0.1.4: version "0.1.5" - resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" + resolved "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4= dependencies: for-in "^1.0.1" @@ -4953,12 +5011,7 @@ form-data@~2.3.2: combined-stream "^1.0.6" mime-types "^2.1.12" -forwarded@~0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" - integrity sha1-Ge+YdMSuHCl7zweP3mOgm2aoQ2M= - -forwarded@~0.1.2: +forwarded@~0.1.0, forwarded@~0.1.2: version "0.1.2" resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= @@ -4972,7 +5025,7 @@ fragment-cache@^0.2.1: fresh@0.5.0: version "0.5.0" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e" + resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e" integrity sha1-9HTKXmqSRtb9jglTz6m5yAWvp44= fresh@0.5.2: @@ -4990,7 +5043,7 @@ from2@^2.1.0: fs-extra@^7.0.0: version "7.0.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== dependencies: graceful-fs "^4.1.2" @@ -5007,15 +5060,15 @@ fs-extra@^8.1.0: universalify "^0.1.0" fs-minipass@^1.2.5: - version "1.2.6" - resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07" - integrity sha512-crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ== + version "1.2.7" + resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" + integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== dependencies: - minipass "^2.2.1" + minipass "^2.6.0" fs-readdir-recursive@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" + resolved "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA== fs-write-stream-atomic@^1.0.8: @@ -5035,29 +5088,36 @@ fs.realpath@^1.0.0: fsevents@^1.1.1, fsevents@^1.2.7: version "1.2.9" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw== dependencies: nan "^2.12.1" node-pre-gyp "^0.12.0" -function-bind@^1.0.2, function-bind@^1.1.1: +function-bind@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== -function.prototype.name@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.0.tgz#8bd763cc0af860a859cc5d49384d74b932cd2327" - integrity sha512-Bs0VRrTz4ghD8pTmbJQD1mZ8A/mN0ur/jGz+A6FBxPDUPkm1tNfF6bhTYPA7i7aF4lZJVr+OXTNNrnnIl58Wfg== +function.prototype.name@^1.1.0, function.prototype.name@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.1.tgz#6d252350803085abc2ad423d4fe3be2f9cbda392" + integrity sha512-e1NzkiJuw6xqVH7YSdiW/qDHebcmMhPNe6w+4ZYYEg0VA+LaLzx37RimbPLuonHhYGFGPx1ME2nSi74JiaCr/Q== dependencies: - define-properties "^1.1.2" + define-properties "^1.1.3" function-bind "^1.1.1" - is-callable "^1.1.3" + functions-have-names "^1.1.1" + is-callable "^1.1.4" functional-red-black-tree@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= + +functions-have-names@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.1.1.tgz#79d35927f07b8e7103d819fed475b64ccf7225ea" + integrity sha512-U0kNHUoxwPNPWOJaMG7Z00d4a/qZVrFtzWJRaK8V9goaVOCXBSQSJpt3MYGNtkScKEBKovxLjnNdC9MlXwo5Pw== gauge@~2.7.3: version "2.7.4" @@ -5078,14 +5138,25 @@ genfun@^5.0.0: resolved "https://registry.npmjs.org/genfun/-/genfun-5.0.0.tgz#9dd9710a06900a5c4a5bf57aca5da4e52fe76537" integrity sha512-KGDOARWVga7+rnB3z9Sd2Letx515owfk0hSxHGuqjANb1M+x2bGZGqHLiozPsYMdM2OubeMni/Hpwmjq6qIUhA== +get-assigned-identifiers@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz#6dbf411de648cbaf8d9169ebb0d2d576191e2ff1" + integrity sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ== + get-caller-file@^1.0.1: version "1.0.3" resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== +get-caller-file@^2.0.1: + version "2.0.5" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + get-func-name@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" + resolved "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" + integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE= get-pkg-repo@^1.0.0: version "1.4.0" @@ -5115,7 +5186,7 @@ get-stdin@^4.0.1: get-stdin@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" + resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== get-stream@^4.0.0, get-stream@^4.1.0: @@ -5199,7 +5270,7 @@ gitconfiglocal@^1.0.0: glob-base@^0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" + resolved "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q= dependencies: glob-parent "^2.0.0" @@ -5207,7 +5278,7 @@ glob-base@^0.3.0: glob-parent@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg= dependencies: is-glob "^2.0.0" @@ -5232,9 +5303,14 @@ glob-to-regexp@^0.3.0: resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= +glob-to-regexp@^0.4.0: + version "0.4.1" + resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + glob@7.1.1: version "7.1.1" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" + resolved "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" integrity sha1-gFIR3wT6rxxjo2ADBs31reULLsg= dependencies: fs.realpath "^1.0.0" @@ -5244,10 +5320,9 @@ glob@7.1.1: once "^1.3.0" path-is-absolute "^1.0.0" -<<<<<<< HEAD glob@7.1.3: version "7.1.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" + resolved "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== dependencies: fs.realpath "^1.0.0" @@ -5258,11 +5333,8 @@ glob@7.1.3: path-is-absolute "^1.0.0" glob@^7.0.0, glob@^7.0.3, glob@^7.1.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: -======= -glob@^7.0.0, glob@^7.0.3, glob@^7.1.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3: ->>>>>>> Convert GLS tests to jest, migrate graphiql tests from chai expect to jest expect version "7.1.4" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" + resolved "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== dependencies: fs.realpath "^1.0.0" @@ -5281,12 +5353,12 @@ global-dirs@^0.1.1: globals@^11.1.0, globals@^11.7.0: version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== globby@^9.0.0, globby@^9.2.0: version "9.2.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d" + resolved "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d" integrity sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg== dependencies: "@types/glob" "^7.1.1" @@ -5300,7 +5372,7 @@ globby@^9.0.0, globby@^9.2.0: globo@~1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/globo/-/globo-1.1.0.tgz#0d26098955dea422eb2001b104898b0a101caaf3" + resolved "https://registry.npmjs.org/globo/-/globo-1.1.0.tgz#0d26098955dea422eb2001b104898b0a101caaf3" integrity sha1-DSYJiVXepCLrIAGxBImLChAcqvM= dependencies: accessory "~1.1.0" @@ -5314,12 +5386,12 @@ graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3 "graceful-readlink@>= 1.0.0": version "1.0.1" - resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" + resolved "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" integrity sha1-TK+tdrxi8C+gObL5Tpo906ORpyU= graphql-config@2.2.1: version "2.2.1" - resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-2.2.1.tgz#5fd0ec77ac7428ca5fb2026cf131be10151a0cb2" + resolved "https://registry.npmjs.org/graphql-config/-/graphql-config-2.2.1.tgz#5fd0ec77ac7428ca5fb2026cf131be10151a0cb2" integrity sha512-U8+1IAhw9m6WkZRRcyj8ZarK96R6lQBQ0an4lp76Ps9FyhOXENC5YQOxOFGm5CxPrX2rD0g3Je4zG5xdNJjwzQ== dependencies: graphql-import "^0.7.1" @@ -5330,7 +5402,7 @@ graphql-config@2.2.1: graphql-import@^0.7.1: version "0.7.1" - resolved "https://registry.yarnpkg.com/graphql-import/-/graphql-import-0.7.1.tgz#4add8d91a5f752d764b0a4a7a461fcd93136f223" + resolved "https://registry.npmjs.org/graphql-import/-/graphql-import-0.7.1.tgz#4add8d91a5f752d764b0a4a7a461fcd93136f223" integrity sha512-YpwpaPjRUVlw2SN3OPljpWbVRWAhMAyfSba5U47qGMOSsPLi2gYeJtngGpymjm9nk57RFWEpjqwh4+dpYuFAPw== dependencies: lodash "^4.17.4" @@ -5371,68 +5443,44 @@ graphql-language-service-utils@^2.1.0: graphql-request@^1.5.0: version "1.8.2" - resolved "https://registry.yarnpkg.com/graphql-request/-/graphql-request-1.8.2.tgz#398d10ae15c585676741bde3fc01d5ca948f8fbe" + resolved "https://registry.npmjs.org/graphql-request/-/graphql-request-1.8.2.tgz#398d10ae15c585676741bde3fc01d5ca948f8fbe" integrity sha512-dDX2M+VMsxXFCmUX0Vo0TopIZIX4ggzOtiCsThgtrKR4niiaagsGTDIHj3fsOMFETpa064vzovI+4YV4QnMbcg== dependencies: cross-fetch "2.2.2" -<<<<<<< HEAD graphql@14.4.2: -======= -<<<<<<< HEAD -graphql@14.4.2: -======= -graphql@14.4.2, graphql@^14.0.2: ->>>>>>> chore: first leg of converting LSP packages to TS ->>>>>>> chore: Convert LSP tests to jest from mocha (#871) version "14.4.2" resolved "https://registry.npmjs.org/graphql/-/graphql-14.4.2.tgz#553a7d546d524663eda49ed6df77577be3203ae3" integrity sha512-6uQadiRgnpnSS56hdZUSvFrVcQ6OF9y6wkxJfKquFtHlnl7+KSuWwSJsdwiK1vybm1HgcdbpGkCpvhvsVQ0UZQ== dependencies: iterall "^1.2.2" -<<<<<<< HEAD -graphql@^14.4.2: - version "14.5.4" - resolved "https://registry.npmjs.org/graphql/-/graphql-14.5.4.tgz#b33fe957854e90c10d4c07c7d26b6c8e9f159a13" - integrity sha512-dPLvHoxy5m9FrkqWczPPRnH0X80CyvRE6e7Fa5AWEqEAzg9LpxHvKh24po/482E6VWHigOkAmb4xCp6P9yT9gw== - dependencies: - iterall "^1.2.2" - -graphql@^14.5.2: - version "14.5.5" - resolved "https://registry.npmjs.org/graphql/-/graphql-14.5.5.tgz#7ec9d4f79f4d3c95e64c7ff6727bfe7068049d43" - integrity sha512-Ly+hS+HY+gHN79ee7KTP25ZLUJJTMfpOMoDa3LSRZNFUh7w0CLAAgzuyOpOZQFAPWFwooEuakixh0EbVe+vqAA== +graphql@^14.0.2, graphql@^14.4.2, graphql@^14.5.2: + version "14.5.6" + resolved "https://registry.npmjs.org/graphql/-/graphql-14.5.6.tgz#3fa12173b50e6ccdef953c31c82f37c50ef58bec" + integrity sha512-zJ6Oz8P1yptV4O4DYXdArSwvmirPetDOBnGFRBl0zQEC68vNW3Ny8qo8VzMgfr+iC8PKiRYJ+f2wub41oDCoQg== dependencies: iterall "^1.2.2" growl@1.10.5: version "1.10.5" - resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" + resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== -======= -graphql@^14.0.2, graphql@^14.3.1: - version "14.3.1" - resolved "https://registry.yarnpkg.com/graphql/-/graphql-14.3.1.tgz#b3aa50e61a841ada3c1f9ccda101c483f8e8c807" - integrity sha512-FZm7kAa3FqKdXy8YSSpAoTtyDFMIYSpCDOr+3EqlI1bxmtHu+Vv/I2vrSeT1sBOEnEniX3uo4wFhFdS/8XN6gA== - dependencies: - iterall "^1.2.2" ->>>>>>> Convert GLS tests to jest, migrate graphiql tests from chai expect to jest expect growl@1.9.2: version "1.9.2" - resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" + resolved "https://registry.npmjs.org/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" integrity sha1-Dqd0NxXbjY3ixe3hd14bRayFwC8= growly@^1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" + resolved "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= handlebars@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.2.tgz#b6b37c1ced0306b221e094fc7aca3ec23b131b67" - integrity sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw== + version "4.2.0" + resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.2.0.tgz#57ce8d2175b9bbb3d8b3cf3e4217b1aec8ddcb2e" + integrity sha512-Kb4xn5Qh1cxAKvQnzNWZ512DhABzyFNmsaJf3OAkWNa4NkaqWcNI8Tao8Tasi0/F4JD9oyG0YxuFyvyR57d+Gw== dependencies: neo-async "^2.6.0" optimist "^0.6.1" @@ -5455,7 +5503,7 @@ har-validator@~5.1.0: has-flag@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo= has-flag@^3.0.0: @@ -5465,14 +5513,14 @@ has-flag@^3.0.0: has-require@~1.2.1: version "1.2.2" - resolved "https://registry.yarnpkg.com/has-require/-/has-require-1.2.2.tgz#921675ab130dbd9768fc8da8f1a8e242dfa41774" + resolved "https://registry.npmjs.org/has-require/-/has-require-1.2.2.tgz#921675ab130dbd9768fc8da8f1a8e242dfa41774" integrity sha1-khZ1qxMNvZdo/I2o8ajiQt+kF3Q= dependencies: escape-string-regexp "^1.0.3" has-symbols@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= has-unicode@^2.0.0, has-unicode@^2.0.1: @@ -5513,29 +5561,35 @@ has-values@^1.0.0: has@^1.0.0, has@^1.0.1, has@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== dependencies: function-bind "^1.1.1" -hash-base@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" - integrity sha1-ZuodhW206KVHDK32/OI65SRO8uE= +hash-base@^3.0.0: + version "3.0.4" + resolved "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" + integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg= dependencies: inherits "^2.0.1" + safe-buffer "^5.0.1" hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.1" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.1.tgz#5cb2e796499224e69fd0b00ed01d2d4a16e7a323" - integrity sha512-I2TYCUjYQMmqmRMCp6jKMC5bvdXxGIZ/heITRR/0F1u0OP920ImEj/cXt3WgcTKBnNYGn7enxUzdai3db829JA== + version "1.1.7" + resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== dependencies: inherits "^2.0.3" - minimalistic-assert "^1.0.0" + minimalistic-assert "^1.0.1" + +he@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== hmac-drbg@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= dependencies: hash.js "^1.0.3" @@ -5544,7 +5598,7 @@ hmac-drbg@^1.0.0: homedir-polyfill@^1.0.1: version "1.0.3" - resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" + resolved "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== dependencies: parse-passwd "^1.0.0" @@ -5555,27 +5609,27 @@ hosted-git-info@^2.1.4, hosted-git-info@^2.7.1: integrity sha512-pzXIvANXEFrc5oFFXRMkbLPQ2rXRoDERwDLyrcUxGhaZhgP54BBSl9Oheh7Vv0T090cszWBxPjkQQ5Sq1PbBRQ== html-element-map@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/html-element-map/-/html-element-map-1.0.1.tgz#3c4fcb4874ebddfe4283b51c8994e7713782b592" - integrity sha512-BZSfdEm6n706/lBfXKWa4frZRZcT5k1cOusw95ijZsHlI+GdgY0v95h6IzO3iIDf2ROwq570YTwqNPqHcNMozw== + version "1.1.0" + resolved "https://registry.npmjs.org/html-element-map/-/html-element-map-1.1.0.tgz#e5aab9a834caf883b421f8bd9eaedcaac887d63c" + integrity sha512-iqiG3dTZmy+uUaTmHarTL+3/A2VW9ox/9uasKEZC+R/wAtUrTcRlXPSaPqsnWPfIu8wqn09jQNwMRqzL54jSYA== dependencies: array-filter "^1.0.0" html-encoding-sniffer@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" + resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== dependencies: whatwg-encoding "^1.0.1" htmlescape@^1.1.0: version "1.1.1" - resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" + resolved "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" integrity sha1-OgPtwiFLyjtmQko+eVk0lQnLA1E= htmlparser2@^3.9.1: version "3.10.1" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" + resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== dependencies: domelementtype "^1.3.1" @@ -5601,7 +5655,7 @@ http-errors@1.7.2: statuses ">= 1.5.0 < 2" toidentifier "1.0.0" -http-errors@1.7.3, http-errors@^1.7.3, http-errors@~1.7.2: +http-errors@1.7.3, http-errors@^1.3.0, http-errors@^1.7.3, http-errors@~1.7.2: version "1.7.3" resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== @@ -5612,15 +5666,15 @@ http-errors@1.7.3, http-errors@^1.7.3, http-errors@~1.7.2: statuses ">= 1.5.0 < 2" toidentifier "1.0.0" -http-errors@^1.3.0, http-errors@~1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.1.tgz#5f8b8ed98aca545656bf572997387f904a722257" - integrity sha1-X4uO2YrKVFZWv1cplzh/kEpyIlc= +http-errors@~1.6.1: + version "1.6.3" + resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" + integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= dependencies: - depd "1.1.0" + depd "~1.1.2" inherits "2.0.3" - setprototypeof "1.0.3" - statuses ">= 1.3.1 < 2" + setprototypeof "1.1.0" + statuses ">= 1.4.0 < 2" http-proxy-agent@^2.1.0: version "2.1.0" @@ -5641,7 +5695,7 @@ http-signature@~1.2.0: https-browserify@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" + resolved "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= https-proxy-agent@^2.2.1: @@ -5676,22 +5730,17 @@ husky@^3.0.5: run-node "^1.0.0" slash "^3.0.0" -iconv-lite@0.4.15: - version "0.4.15" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" - integrity sha1-/iZaIYrGpXz+hUkn6dBMGYJe3es= - iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4, iconv-lite@~0.4.13: version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" ieee754@^1.1.4: - version "1.1.8" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" - integrity sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q= + version "1.1.13" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" + integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== iferr@^0.1.5: version "0.1.5" @@ -5699,20 +5748,20 @@ iferr@^0.1.5: integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= ignore-walk@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" - integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== + version "3.0.2" + resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.2.tgz#99d83a246c196ea5c93ef9315ad7b0819c35069b" + integrity sha512-EXyErtpHbn75ZTsOADsfx6J/FPo6/5cjev46PXrcTpd8z3BoRkXgYu9/JVqrI7tusjmwCZutGeRJeU0Wo1e4Cw== dependencies: minimatch "^3.0.4" ignore@^4.0.3, ignore@^4.0.6: version "4.0.6" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== import-cwd@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9" + resolved "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9" integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk= dependencies: import-from "^2.1.0" @@ -5726,9 +5775,9 @@ import-fresh@^2.0.0: resolve-from "^3.0.0" import-fresh@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.0.0.tgz#a3d897f420cab0e671236897f75bc14b4885c390" - integrity sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ== + version "3.1.0" + resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.1.0.tgz#6d33fa1dcef6df930fae003446f33415af905118" + integrity sha512-PpuksHKGt8rXfWEr9m9EHIpgyyaltBy8+eF6GJM0QCAxMgxCfucMF3mjecK2QsJr0amJW7gTqh5/wht0z2UhEQ== dependencies: parent-module "^1.0.0" resolve-from "^4.0.0" @@ -5742,7 +5791,7 @@ import-from@3.0.0: import-from@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1" + resolved "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1" integrity sha1-M1238qev/VOqpHHUuAId7ja387E= dependencies: resolve-from "^3.0.0" @@ -5785,23 +5834,24 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: version "2.0.4" resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== inherits@2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= -inherits@2.0.3, inherits@~2.0.1: +inherits@2.0.3: version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= ini@^1.3.2, ini@^1.3.4, ini@~1.3.0: version "1.3.5" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" + resolved "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== init-package-json@^1.10.3: @@ -5820,12 +5870,12 @@ init-package-json@^1.10.3: inline-source-map@~0.6.0: version "0.6.2" - resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" + resolved "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" integrity sha1-+Tk0ccGKedFyT4Y/o4tYY3Ct4qU= dependencies: source-map "~0.5.3" -inquirer@^6.2.0: +inquirer@^6.2.0, inquirer@^6.2.2: version "6.5.2" resolved "https://registry.npmjs.org/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ== @@ -5844,49 +5894,33 @@ inquirer@^6.2.0: strip-ansi "^5.1.0" through "^2.3.6" -inquirer@^6.2.2: - version "6.3.1" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.3.1.tgz#7a413b5e7950811013a3db491c61d1f3b776e8e7" - integrity sha512-MmL624rfkFt4TG9y/Jvmt8vdmOo836U7Y0Hxr2aFk3RelZEGX4Igk0KabWrcaaZaTv9uzglOqWh1Vly+FAWAXA== - dependencies: - ansi-escapes "^3.2.0" - chalk "^2.4.2" - cli-cursor "^2.1.0" - cli-width "^2.0.0" - external-editor "^3.0.3" - figures "^2.0.0" - lodash "^4.17.11" - mute-stream "0.0.7" - run-async "^2.2.0" - rxjs "^6.4.0" - string-width "^2.1.0" - strip-ansi "^5.1.0" - through "^2.3.6" - insert-module-globals@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.0.1.tgz#c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3" - integrity sha1-wDv04BywhtW15azorQr+eInWOMM= + version "7.2.0" + resolved "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.2.0.tgz#ec87e5b42728479e327bd5c5c71611ddfb4752ba" + integrity sha512-VE6NlW+WGn2/AeOMd496AHFYmE7eLKkUY6Ty31k4og5vmA3Fjuwe9v6ifH6Xx/Hz27QvdoMoviw1/pqWRB09Sw== dependencies: JSONStream "^1.0.3" - combine-source-map "~0.7.1" - concat-stream "~1.5.1" + acorn-node "^1.5.2" + combine-source-map "^0.8.0" + concat-stream "^1.6.1" is-buffer "^1.1.0" - lexical-scope "^1.2.0" + path-is-absolute "^1.0.1" process "~0.11.0" through2 "^2.0.0" + undeclared-identifiers "^1.1.2" xtend "^4.0.0" invariant@^2.2.2, invariant@^2.2.4: version "2.2.4" - resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== dependencies: loose-envify "^1.0.0" invert-kv@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + resolved "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= invert-kv@^2.0.0: version "2.0.0" @@ -5898,10 +5932,10 @@ ip@^1.1.5: resolved "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= -ipaddr.js@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.3.0.tgz#1e03a52fdad83a8bbb2b25cbf4998b4cffcd3dec" - integrity sha1-HgOlL9rYOou7KyXL9JmLTP/NPew= +ipaddr.js@1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.4.0.tgz#296aca878a821816e5b85d0a285a99bcff4582f0" + integrity sha1-KWrKh4qCGBbluF0KKFqZvP9FgvA= ipaddr.js@1.9.0: version "1.9.0" @@ -5929,35 +5963,29 @@ is-arrayish@^0.2.1: is-binary-path@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= dependencies: binary-extensions "^1.0.0" is-boolean-object@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.0.tgz#98f8b28030684219a95f375cfbd88ce3405dff93" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.0.0.tgz#98f8b28030684219a95f375cfbd88ce3405dff93" integrity sha1-mPiygDBoQhmpXzdc+9iM40Bd/5M= -is-buffer@^1.1.0: - version "1.1.5" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" - -<<<<<<< HEAD -is-buffer@^1.1.5: +is-buffer@^1.1.0, is-buffer@^1.1.5: version "1.1.6" resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== is-buffer@~2.0.3: version "2.0.3" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.3.tgz#4ecf3fcf749cbd1e472689e109ac66261a25e725" + resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.3.tgz#4ecf3fcf749cbd1e472689e109ac66261a25e725" integrity sha512-U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw== -======= ->>>>>>> Convert GLS tests to jest, migrate graphiql tests from chai expect to jest expect -is-callable@^1.1.3, is-callable@^1.1.4: +is-callable@^1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== is-ci@^2.0.0: @@ -5983,12 +6011,12 @@ is-data-descriptor@^1.0.0: is-date-object@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= is-defined@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-defined/-/is-defined-1.0.0.tgz#1f07ca67d571f594c4b14415a45f7bef88f92bf5" + resolved "https://registry.npmjs.org/is-defined/-/is-defined-1.0.0.tgz#1f07ca67d571f594c4b14415a45f7bef88f92bf5" integrity sha1-HwfKZ9Vx9ZTEsUQVpF9774j5K/U= is-descriptor@^0.1.0: @@ -6016,12 +6044,12 @@ is-directory@^0.3.1: is-dotfile@^1.0.0: version "1.0.3" - resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" + resolved "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" integrity sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE= is-equal-shallow@^0.1.3: version "0.1.3" - resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" + resolved "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" integrity sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ= dependencies: is-primitive "^2.0.0" @@ -6040,7 +6068,7 @@ is-extendable@^1.0.1: is-extglob@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA= is-extglob@^2.1.0, is-extglob@^2.1.1: @@ -6069,12 +6097,12 @@ is-fullwidth-code-point@^2.0.0: is-generator-fn@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== is-glob@^2.0.0, is-glob@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM= dependencies: is-extglob "^1.0.0" @@ -6095,12 +6123,12 @@ is-glob@^4.0.0, is-glob@^4.0.1: is-number-object@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.3.tgz#f265ab89a9f445034ef6aff15a8f00b00f551799" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.3.tgz#f265ab89a9f445034ef6aff15a8f00b00f551799" integrity sha1-8mWrian0RQNO9q/xWo8AsA9VF5k= is-number@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" + resolved "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8= dependencies: kind-of "^3.0.2" @@ -6112,6 +6140,11 @@ is-number@^3.0.0: dependencies: kind-of "^3.0.2" +is-number@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" + integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ== + is-obj@^1.0.0: version "1.0.1" resolved "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" @@ -6138,12 +6171,12 @@ is-plain-object@^3.0.0: is-posix-bracket@^0.1.0: version "0.1.1" - resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" + resolved "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" integrity sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q= is-primitive@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" + resolved "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU= is-promise@^2.1.0: @@ -6153,7 +6186,7 @@ is-promise@^2.1.0: is-regex@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= dependencies: has "^1.0.1" @@ -6172,17 +6205,17 @@ is-stream@^1.0.1, is-stream@^1.1.0: is-string@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.4.tgz#cc3a9b69857d621e963725a24caeec873b826e64" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.4.tgz#cc3a9b69857d621e963725a24caeec873b826e64" integrity sha1-zDqbaYV9Yh6WNyWiTK7shzuCbmQ= is-subset@^0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" + resolved "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" integrity sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY= is-symbol@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== dependencies: has-symbols "^1.0.0" @@ -6218,12 +6251,12 @@ is-windows@^1.0.0, is-windows@^1.0.2: is-wsl@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" + resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= -isarray@0.0.1, isarray@~0.0.1: +isarray@0.0.1: version "0.0.1" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= isarray@1.0.0, isarray@~1.0.0: @@ -6255,7 +6288,7 @@ isobject@^4.0.0: isomorphic-fetch@^2.1.1: version "2.2.1" - resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" + resolved "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" integrity sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk= dependencies: node-fetch "^1.0.1" @@ -6268,12 +6301,12 @@ isstream@~0.1.2: istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.5: version "2.0.5" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#675f0ab69503fad4b1d849f736baaca803344f49" + resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#675f0ab69503fad4b1d849f736baaca803344f49" integrity sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA== istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0: version "3.3.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz#a5f63d91f0bbc0c3e479ef4c5de027335ec6d630" + resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz#a5f63d91f0bbc0c3e479ef4c5de027335ec6d630" integrity sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA== dependencies: "@babel/generator" "^7.4.0" @@ -6286,7 +6319,7 @@ istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0: istanbul-lib-report@^2.0.4: version "2.0.8" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz#5a8113cd746d43c4889eba36ab10e7d50c9b4f33" + resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz#5a8113cd746d43c4889eba36ab10e7d50c9b4f33" integrity sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ== dependencies: istanbul-lib-coverage "^2.0.5" @@ -6295,7 +6328,7 @@ istanbul-lib-report@^2.0.4: istanbul-lib-source-maps@^3.0.1: version "3.0.6" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz#284997c48211752ec486253da97e3879defba8c8" + resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz#284997c48211752ec486253da97e3879defba8c8" integrity sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw== dependencies: debug "^4.1.1" @@ -6304,325 +6337,328 @@ istanbul-lib-source-maps@^3.0.1: rimraf "^2.6.3" source-map "^0.6.1" -istanbul-reports@^2.1.1: +istanbul-reports@^2.2.6: version "2.2.6" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.6.tgz#7b4f2660d82b29303a8fe6091f8ca4bf058da1af" + resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.6.tgz#7b4f2660d82b29303a8fe6091f8ca4bf058da1af" integrity sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA== dependencies: handlebars "^4.1.2" iterall@^1.2.2: version "1.2.2" - resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.2.2.tgz#92d70deb8028e0c39ff3164fdbf4d8b088130cd7" + resolved "https://registry.npmjs.org/iterall/-/iterall-1.2.2.tgz#92d70deb8028e0c39ff3164fdbf4d8b088130cd7" + integrity sha512-yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA== -jest-changed-files@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.8.0.tgz#7e7eb21cf687587a85e50f3d249d1327e15b157b" - integrity sha512-qgANC1Yrivsq+UrLXsvJefBKVoCsKB0Hv+mBb6NMjjZ90wwxCDmU3hsCXBya30cH+LnPYjwgcU65i6yJ5Nfuug== +jest-changed-files@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.9.0.tgz#08d8c15eb79a7fa3fc98269bc14b451ee82f8039" + integrity sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" execa "^1.0.0" throat "^4.0.0" -jest-cli@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.8.0.tgz#b075ac914492ed114fa338ade7362a301693e989" - integrity sha512-+p6J00jSMPQ116ZLlHJJvdf8wbjNbZdeSX9ptfHX06/MSNaXmKihQzx5vQcw0q2G6JsdVkUIdWbOWtSnaYs3yA== +jest-cli@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-24.9.0.tgz#ad2de62d07472d419c6abc301fc432b98b10d2af" + integrity sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg== dependencies: - "@jest/core" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/core" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" chalk "^2.0.1" exit "^0.1.2" import-local "^2.0.0" is-ci "^2.0.0" - jest-config "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" + jest-config "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" prompts "^2.0.1" realpath-native "^1.1.0" - yargs "^12.0.2" + yargs "^13.3.0" -jest-config@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.8.0.tgz#77db3d265a6f726294687cbbccc36f8a76ee0f4f" - integrity sha512-Czl3Nn2uEzVGsOeaewGWoDPD8GStxCpAe0zOYs2x2l0fZAgPbCr3uwUkgNKV3LwE13VXythM946cd5rdGkkBZw== +jest-config@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-config/-/jest-config-24.9.0.tgz#fb1bbc60c73a46af03590719efa4825e6e4dd1b5" + integrity sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ== dependencies: "@babel/core" "^7.1.0" - "@jest/test-sequencer" "^24.8.0" - "@jest/types" "^24.8.0" - babel-jest "^24.8.0" + "@jest/test-sequencer" "^24.9.0" + "@jest/types" "^24.9.0" + babel-jest "^24.9.0" chalk "^2.0.1" glob "^7.1.1" - jest-environment-jsdom "^24.8.0" - jest-environment-node "^24.8.0" - jest-get-type "^24.8.0" - jest-jasmine2 "^24.8.0" + jest-environment-jsdom "^24.9.0" + jest-environment-node "^24.9.0" + jest-get-type "^24.9.0" + jest-jasmine2 "^24.9.0" jest-regex-util "^24.3.0" - jest-resolve "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" + jest-resolve "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" micromatch "^3.1.10" - pretty-format "^24.8.0" + pretty-format "^24.9.0" realpath-native "^1.1.0" -jest-diff@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.8.0.tgz#146435e7d1e3ffdf293d53ff97e193f1d1546172" - integrity sha512-wxetCEl49zUpJ/bvUmIFjd/o52J+yWcoc5ZyPq4/W1LUKGEhRYDIbP1KcF6t+PvqNrGAFk4/JhtxDq/Nnzs66g== +jest-diff@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-24.9.0.tgz#931b7d0d5778a1baf7452cb816e325e3724055da" + integrity sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ== dependencies: chalk "^2.0.1" - diff-sequences "^24.3.0" - jest-get-type "^24.8.0" - pretty-format "^24.8.0" + diff-sequences "^24.9.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" jest-docblock@^24.3.0: - version "24.3.0" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.3.0.tgz#b9c32dac70f72e4464520d2ba4aec02ab14db5dd" - integrity sha512-nlANmF9Yq1dufhFlKG9rasfQlrY7wINJbo3q01tu56Jv5eBU5jirylhF2O5ZBnLxzOVBGRDz/9NAwNyBtG4Nyg== + version "24.9.0" + resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.9.0.tgz#7970201802ba560e1c4092cc25cbedf5af5a8ce2" + integrity sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA== dependencies: detect-newline "^2.1.0" -jest-each@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.8.0.tgz#a05fd2bf94ddc0b1da66c6d13ec2457f35e52775" - integrity sha512-NrwK9gaL5+XgrgoCsd9svsoWdVkK4gnvyhcpzd6m487tXHqIdYeykgq3MKI1u4I+5Zf0tofr70at9dWJDeb+BA== +jest-each@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-each/-/jest-each-24.9.0.tgz#eb2da602e2a610898dbc5f1f6df3ba86b55f8b05" + integrity sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" chalk "^2.0.1" - jest-get-type "^24.8.0" - jest-util "^24.8.0" - pretty-format "^24.8.0" + jest-get-type "^24.9.0" + jest-util "^24.9.0" + pretty-format "^24.9.0" jest-environment-jsdom-global@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom-global/-/jest-environment-jsdom-global-1.2.0.tgz#dd5b16fe0a0566ee40010d8632be5adf5a5ccb65" + resolved "https://registry.npmjs.org/jest-environment-jsdom-global/-/jest-environment-jsdom-global-1.2.0.tgz#dd5b16fe0a0566ee40010d8632be5adf5a5ccb65" integrity sha512-41cDl0OxzmFY/cnW0COUN+lnt2N2ks1r3V4fAKOnlZ9xIrGy0PNPan+Bz8HP+uQy/8bGV6T7J4Oi7X+h43It6g== -jest-environment-jsdom@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.8.0.tgz#300f6949a146cabe1c9357ad9e9ecf9f43f38857" - integrity sha512-qbvgLmR7PpwjoFjM/sbuqHJt/NCkviuq9vus9NBn/76hhSidO+Z6Bn9tU8friecegbJL8gzZQEMZBQlFWDCwAQ== +jest-environment-jsdom@^24.8.0, jest-environment-jsdom@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz#4b0806c7fc94f95edb369a69cc2778eec2b7375b" + integrity sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA== dependencies: - "@jest/environment" "^24.8.0" - "@jest/fake-timers" "^24.8.0" - "@jest/types" "^24.8.0" - jest-mock "^24.8.0" - jest-util "^24.8.0" + "@jest/environment" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + jest-util "^24.9.0" jsdom "^11.5.1" -jest-environment-node@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.8.0.tgz#d3f726ba8bc53087a60e7a84ca08883a4c892231" - integrity sha512-vIGUEScd1cdDgR6sqn2M08sJTRLQp6Dk/eIkCeO4PFHxZMOgy+uYLPMC4ix3PEfM5Au/x3uQ/5Tl0DpXXZsJ/Q== +jest-environment-node@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.9.0.tgz#333d2d2796f9687f2aeebf0742b519f33c1cbfd3" + integrity sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA== dependencies: - "@jest/environment" "^24.8.0" - "@jest/fake-timers" "^24.8.0" - "@jest/types" "^24.8.0" - jest-mock "^24.8.0" - jest-util "^24.8.0" + "@jest/environment" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + jest-util "^24.9.0" -jest-get-type@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.8.0.tgz#a7440de30b651f5a70ea3ed7ff073a32dfe646fc" - integrity sha512-RR4fo8jEmMD9zSz2nLbs2j0zvPpk/KCEz3a62jJWbd2ayNo0cb+KFRxPHVhE4ZmgGJEQp0fosmNz84IfqM8cMQ== +jest-get-type@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.9.0.tgz#1684a0c8a50f2e4901b6644ae861f579eed2ef0e" + integrity sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q== -jest-haste-map@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.8.0.tgz#51794182d877b3ddfd6e6d23920e3fe72f305800" - integrity sha512-ZBPRGHdPt1rHajWelXdqygIDpJx8u3xOoLyUBWRW28r3tagrgoepPrzAozW7kW9HrQfhvmiv1tncsxqHJO1onQ== +jest-haste-map@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz#b38a5d64274934e21fa417ae9a9fbeb77ceaac7d" + integrity sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" anymatch "^2.0.0" fb-watchman "^2.0.0" graceful-fs "^4.1.15" invariant "^2.2.4" - jest-serializer "^24.4.0" - jest-util "^24.8.0" - jest-worker "^24.6.0" + jest-serializer "^24.9.0" + jest-util "^24.9.0" + jest-worker "^24.9.0" micromatch "^3.1.10" sane "^4.0.3" walker "^1.0.7" optionalDependencies: fsevents "^1.2.7" -jest-jasmine2@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.8.0.tgz#a9c7e14c83dd77d8b15e820549ce8987cc8cd898" - integrity sha512-cEky88npEE5LKd5jPpTdDCLvKkdyklnaRycBXL6GNmpxe41F0WN44+i7lpQKa/hcbXaQ+rc9RMaM4dsebrYong== +jest-jasmine2@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz#1f7b1bd3242c1774e62acabb3646d96afc3be6a0" + integrity sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw== dependencies: "@babel/traverse" "^7.1.0" - "@jest/environment" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" chalk "^2.0.1" co "^4.6.0" - expect "^24.8.0" + expect "^24.9.0" is-generator-fn "^2.0.0" - jest-each "^24.8.0" - jest-matcher-utils "^24.8.0" - jest-message-util "^24.8.0" - jest-runtime "^24.8.0" - jest-snapshot "^24.8.0" - jest-util "^24.8.0" - pretty-format "^24.8.0" + jest-each "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-runtime "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + pretty-format "^24.9.0" throat "^4.0.0" -jest-leak-detector@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.8.0.tgz#c0086384e1f650c2d8348095df769f29b48e6980" - integrity sha512-cG0yRSK8A831LN8lIHxI3AblB40uhv0z+SsQdW3GoMMVcK+sJwrIIyax5tu3eHHNJ8Fu6IMDpnLda2jhn2pD/g== +jest-leak-detector@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz#b665dea7c77100c5c4f7dfcb153b65cf07dcf96a" + integrity sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA== dependencies: - pretty-format "^24.8.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" -jest-matcher-utils@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz#2bce42204c9af12bde46f83dc839efe8be832495" - integrity sha512-lex1yASY51FvUuHgm0GOVj7DCYEouWSlIYmCW7APSqB9v8mXmKSn5+sWVF0MhuASG0bnYY106/49JU1FZNl5hw== +jest-matcher-utils@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz#f5b3661d5e628dffe6dd65251dfdae0e87c3a073" + integrity sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA== dependencies: chalk "^2.0.1" - jest-diff "^24.8.0" - jest-get-type "^24.8.0" - pretty-format "^24.8.0" + jest-diff "^24.9.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" -jest-message-util@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.8.0.tgz#0d6891e72a4beacc0292b638685df42e28d6218b" - integrity sha512-p2k71rf/b6ns8btdB0uVdljWo9h0ovpnEe05ZKWceQGfXYr4KkzgKo3PBi8wdnd9OtNh46VpNIJynUn/3MKm1g== +jest-message-util@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz#527f54a1e380f5e202a8d1149b0ec872f43119e3" + integrity sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw== dependencies: "@babel/code-frame" "^7.0.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" "@types/stack-utils" "^1.0.1" chalk "^2.0.1" micromatch "^3.1.10" slash "^2.0.0" stack-utils "^1.0.1" -jest-mock@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.8.0.tgz#2f9d14d37699e863f1febf4e4d5a33b7fdbbde56" - integrity sha512-6kWugwjGjJw+ZkK4mDa0Df3sDlUTsV47MSrT0nGQ0RBWJbpODDQ8MHDVtGtUYBne3IwZUhtB7elxHspU79WH3A== +jest-mock@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-24.9.0.tgz#c22835541ee379b908673ad51087a2185c13f1c6" + integrity sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" jest-pnp-resolver@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a" + resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a" integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ== -jest-regex-util@^24.3.0: - version "24.3.0" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.3.0.tgz#d5a65f60be1ae3e310d5214a0307581995227b36" - integrity sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg== +jest-regex-util@^24.3.0, jest-regex-util@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.9.0.tgz#c13fb3380bde22bf6575432c493ea8fe37965636" + integrity sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA== -jest-resolve-dependencies@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.8.0.tgz#19eec3241f2045d3f990dba331d0d7526acff8e0" - integrity sha512-hyK1qfIf/krV+fSNyhyJeq3elVMhK9Eijlwy+j5jqmZ9QsxwKBiP6qukQxaHtK8k6zql/KYWwCTQ+fDGTIJauw== +jest-resolve-dependencies@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz#ad055198959c4cfba8a4f066c673a3f0786507ab" + integrity sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" jest-regex-util "^24.3.0" - jest-snapshot "^24.8.0" + jest-snapshot "^24.9.0" -jest-resolve@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.8.0.tgz#84b8e5408c1f6a11539793e2b5feb1b6e722439f" - integrity sha512-+hjSzi1PoRvnuOICoYd5V/KpIQmkAsfjFO71458hQ2Whi/yf1GDeBOFj8Gxw4LrApHsVJvn5fmjcPdmoUHaVKw== +jest-resolve@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.9.0.tgz#dff04c7687af34c4dd7e524892d9cf77e5d17321" + integrity sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" browser-resolve "^1.11.3" chalk "^2.0.1" jest-pnp-resolver "^1.2.1" realpath-native "^1.1.0" -jest-runner@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.8.0.tgz#4f9ae07b767db27b740d7deffad0cf67ccb4c5bb" - integrity sha512-utFqC5BaA3JmznbissSs95X1ZF+d+4WuOWwpM9+Ak356YtMhHE/GXUondZdcyAAOTBEsRGAgH/0TwLzfI9h7ow== +jest-runner@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-24.9.0.tgz#574fafdbd54455c2b34b4bdf4365a23857fcdf42" + integrity sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg== dependencies: "@jest/console" "^24.7.1" - "@jest/environment" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" chalk "^2.4.2" exit "^0.1.2" graceful-fs "^4.1.15" - jest-config "^24.8.0" + jest-config "^24.9.0" jest-docblock "^24.3.0" - jest-haste-map "^24.8.0" - jest-jasmine2 "^24.8.0" - jest-leak-detector "^24.8.0" - jest-message-util "^24.8.0" - jest-resolve "^24.8.0" - jest-runtime "^24.8.0" - jest-util "^24.8.0" + jest-haste-map "^24.9.0" + jest-jasmine2 "^24.9.0" + jest-leak-detector "^24.9.0" + jest-message-util "^24.9.0" + jest-resolve "^24.9.0" + jest-runtime "^24.9.0" + jest-util "^24.9.0" jest-worker "^24.6.0" source-map-support "^0.5.6" throat "^4.0.0" -jest-runtime@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.8.0.tgz#05f94d5b05c21f6dc54e427cd2e4980923350620" - integrity sha512-Mq0aIXhvO/3bX44ccT+czU1/57IgOMyy80oM0XR/nyD5zgBcesF84BPabZi39pJVA6UXw+fY2Q1N+4BiVUBWOA== +jest-runtime@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.9.0.tgz#9f14583af6a4f7314a6a9d9f0226e1a781c8e4ac" + integrity sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw== dependencies: "@jest/console" "^24.7.1" - "@jest/environment" "^24.8.0" + "@jest/environment" "^24.9.0" "@jest/source-map" "^24.3.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" - "@types/yargs" "^12.0.2" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/yargs" "^13.0.0" chalk "^2.0.1" exit "^0.1.2" glob "^7.1.3" graceful-fs "^4.1.15" - jest-config "^24.8.0" - jest-haste-map "^24.8.0" - jest-message-util "^24.8.0" - jest-mock "^24.8.0" + jest-config "^24.9.0" + jest-haste-map "^24.9.0" + jest-message-util "^24.9.0" + jest-mock "^24.9.0" jest-regex-util "^24.3.0" - jest-resolve "^24.8.0" - jest-snapshot "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" + jest-resolve "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" realpath-native "^1.1.0" slash "^2.0.0" strip-bom "^3.0.0" - yargs "^12.0.2" + yargs "^13.3.0" -jest-serializer@^24.4.0: - version "24.4.0" - resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.4.0.tgz#f70c5918c8ea9235ccb1276d232e459080588db3" - integrity sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q== +jest-serializer@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz#e6d7d7ef96d31e8b9079a714754c5d5c58288e73" + integrity sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ== -jest-snapshot@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.8.0.tgz#3bec6a59da2ff7bc7d097a853fb67f9d415cb7c6" - integrity sha512-5ehtWoc8oU9/cAPe6fez6QofVJLBKyqkY2+TlKTOf0VllBB/mqUNdARdcjlZrs9F1Cv+/HKoCS/BknT0+tmfPg== +jest-snapshot@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.9.0.tgz#ec8e9ca4f2ec0c5c87ae8f925cf97497b0e951ba" + integrity sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew== dependencies: "@babel/types" "^7.0.0" - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" chalk "^2.0.1" - expect "^24.8.0" - jest-diff "^24.8.0" - jest-matcher-utils "^24.8.0" - jest-message-util "^24.8.0" - jest-resolve "^24.8.0" + expect "^24.9.0" + jest-diff "^24.9.0" + jest-get-type "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-resolve "^24.9.0" mkdirp "^0.5.1" natural-compare "^1.4.0" - pretty-format "^24.8.0" - semver "^5.5.0" + pretty-format "^24.9.0" + semver "^6.2.0" -jest-util@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.8.0.tgz#41f0e945da11df44cc76d64ffb915d0716f46cd1" - integrity sha512-DYZeE+XyAnbNt0BG1OQqKy/4GVLPtzwGx5tsnDrFcax36rVE3lTA5fbvgmbVPUZf9w77AJ8otqR4VBbfFJkUZA== +jest-util@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz#7396814e48536d2e85a37de3e4c431d7cb140162" + integrity sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg== dependencies: - "@jest/console" "^24.7.1" - "@jest/fake-timers" "^24.8.0" - "@jest/source-map" "^24.3.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/console" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/source-map" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" callsites "^3.0.0" chalk "^2.0.1" graceful-fs "^4.1.15" @@ -6631,58 +6667,58 @@ jest-util@^24.8.0: slash "^2.0.0" source-map "^0.6.0" -jest-validate@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.8.0.tgz#624c41533e6dfe356ffadc6e2423a35c2d3b4849" - integrity sha512-+/N7VOEMW1Vzsrk3UWBDYTExTPwf68tavEPKDnJzrC6UlHtUDU/fuEdXqFoHzv9XnQ+zW6X3qMZhJ3YexfeLDA== +jest-validate@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-24.9.0.tgz#0775c55360d173cd854e40180756d4ff52def8ab" + integrity sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ== dependencies: - "@jest/types" "^24.8.0" - camelcase "^5.0.0" + "@jest/types" "^24.9.0" + camelcase "^5.3.1" chalk "^2.0.1" - jest-get-type "^24.8.0" - leven "^2.1.0" - pretty-format "^24.8.0" - -jest-watcher@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.8.0.tgz#58d49915ceddd2de85e238f6213cef1c93715de4" - integrity sha512-SBjwHt5NedQoVu54M5GEx7cl7IGEFFznvd/HNT8ier7cCAx/Qgu9ZMlaTQkvK22G1YOpcWBLQPFSImmxdn3DAw== - dependencies: - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" - "@types/yargs" "^12.0.9" + jest-get-type "^24.9.0" + leven "^3.1.0" + pretty-format "^24.9.0" + +jest-watcher@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.9.0.tgz#4b56e5d1ceff005f5b88e528dc9afc8dd4ed2b3b" + integrity sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw== + dependencies: + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/yargs" "^13.0.0" ansi-escapes "^3.0.0" chalk "^2.0.1" - jest-util "^24.8.0" + jest-util "^24.9.0" string-length "^2.0.0" -jest-worker@^24.6.0: - version "24.6.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.6.0.tgz#7f81ceae34b7cde0c9827a6980c35b7cdc0161b3" - integrity sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ== +jest-worker@^24.6.0, jest-worker@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5" + integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== dependencies: - merge-stream "^1.0.1" + merge-stream "^2.0.0" supports-color "^6.1.0" jest@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-24.8.0.tgz#d5dff1984d0d1002196e9b7f12f75af1b2809081" - integrity sha512-o0HM90RKFRNWmAWvlyV8i5jGZ97pFwkeVoGvPW1EtLTgJc2+jcuqcbbqcSZLE/3f2S5pt0y2ZBETuhpWNl1Reg== + version "24.9.0" + resolved "https://registry.npmjs.org/jest/-/jest-24.9.0.tgz#987d290c05a08b52c56188c1002e368edb007171" + integrity sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw== dependencies: import-local "^2.0.0" - jest-cli "^24.8.0" + jest-cli "^24.9.0" js-levenshtein@^1.1.3: version "1.1.6" - resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" + resolved "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-yaml@^3.10.0, js-yaml@^3.13.0, js-yaml@^3.13.1: +js-yaml@3.13.1, js-yaml@^3.10.0, js-yaml@^3.13.0, js-yaml@^3.13.1: version "3.13.1" resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== @@ -6697,7 +6733,7 @@ jsbn@~0.1.0: jsdom@15.0.0: version "15.0.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-15.0.0.tgz#60cf177d79c7fa1a498453c9e2534f57e65d151f" + resolved "https://registry.npmjs.org/jsdom/-/jsdom-15.0.0.tgz#60cf177d79c7fa1a498453c9e2534f57e65d151f" integrity sha512-rJnHm7CHyIj4tDyz9VaCt0f0P0nEh/wEmMfwp9mMixy+L/r8OW/BNcgmIlfZuBBnVQS3eRBpvd/qM3R7vr7e3A== dependencies: abab "^2.0.0" @@ -6729,7 +6765,7 @@ jsdom@15.0.0: jsdom@^11.2.0, jsdom@^11.5.1: version "11.12.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" + resolved "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" integrity sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw== dependencies: abab "^2.0.0" @@ -6761,12 +6797,12 @@ jsdom@^11.2.0, jsdom@^11.5.1: jsesc@^2.5.1: version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== jsesc@~0.5.0: version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1: @@ -6786,12 +6822,12 @@ json-schema@0.2.3: json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= json-stable-stringify@~0.0.0: version "0.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" + resolved "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" integrity sha1-YRwj6BTbN1Un34URk9tZ3Sryf0U= dependencies: jsonify "~0.0.0" @@ -6803,12 +6839,12 @@ json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: json3@3.3.2: version "3.3.2" - resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" + resolved "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" integrity sha1-PAQ0dD35Pi9cQq7nsZvLSDV19OE= -json5@^2.1.0: +json5@2.x, json5@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" + resolved "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" integrity sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ== dependencies: minimist "^1.2.0" @@ -6822,7 +6858,8 @@ jsonfile@^4.0.0: jsonify@~0.0.0: version "0.0.0" - resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" + resolved "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" + integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM= jsonparse@^1.2.0: version "1.3.1" @@ -6840,11 +6877,12 @@ jsprim@^1.2.2: verror "1.10.0" jsx-ast-utils@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.1.0.tgz#0ee4e2c971fb9601c67b5641b71be80faecf0b36" - integrity sha512-yDGDG2DS4JcqhA6blsuYbtsT09xL8AoLuUR2Gb5exrw7UEM19sBcOTq+YBBhrNbl0PUC4R4LnFu+dHg2HKeVvA== + version "2.2.1" + resolved "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.2.1.tgz#4d4973ebf8b9d2837ee91a8208cc66f3a2776cfb" + integrity sha512-v3FxCcAf20DayI+uxnCuw795+oOIkVu6EnJ1+kSzhqqTZHNkTZ7B66ZgLp4oLJ/gbA64cI0B7WRoHZMSRdyVRQ== dependencies: array-includes "^3.0.3" + object.assign "^4.1.0" kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: version "3.2.2" @@ -6870,23 +6908,23 @@ kind-of@^6.0.0, kind-of@^6.0.2: resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== -kleur@^3.0.2: +kleur@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== labeled-stream-splicer@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz#a52e1d138024c00b86b1c0c91f677918b8ae0a59" - integrity sha1-pS4dE4AkwAuGscDJH2d5GLiuClk= + version "2.0.2" + resolved "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.2.tgz#42a41a16abcd46fd046306cf4f2c3576fffb1c21" + integrity sha512-Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw== dependencies: inherits "^2.0.1" - isarray "~0.0.1" stream-splicer "^2.0.0" lcid@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + resolved "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= dependencies: invert-kv "^1.0.0" @@ -6899,7 +6937,7 @@ lcid@^2.0.0: left-pad@^1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" + resolved "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA== lerna@^3.16.4: @@ -6925,24 +6963,18 @@ lerna@^3.16.4: import-local "^2.0.0" npmlog "^4.1.2" -leven@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" - integrity sha1-wuep93IJTe6dNCAq6KzORoeHVYA= +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== levn@^0.3.0, levn@~0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= dependencies: prelude-ls "~1.1.2" - type-check "~0.3.2" - -lexical-scope@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/lexical-scope/-/lexical-scope-1.2.0.tgz#fcea5edc704a4b3a8796cdca419c3a0afaf22df4" - integrity sha1-/Ope3HBKSzqHls3KQZw6CvryLfQ= - dependencies: - astw "^2.0.0" + type-check "~0.3.2" lines-and-columns@^1.1.6: version "1.1.6" @@ -6950,9 +6982,9 @@ lines-and-columns@^1.1.6: integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= linkify-it@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.0.3.tgz#d94a4648f9b1c179d64fa97291268bdb6ce9434f" - integrity sha1-2UpGSPmxwXnWT6lykSaL22zpQ08= + version "2.2.0" + resolved "https://registry.npmjs.org/linkify-it/-/linkify-it-2.2.0.tgz#e3b54697e78bf915c70a38acd78fd09e0058b1cf" + integrity sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw== dependencies: uc.micro "^1.0.1" @@ -7013,7 +7045,7 @@ locate-path@^5.0.0: lodash._baseassign@^3.0.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" + resolved "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" integrity sha1-jDigmVAPIVrQnlnxci/QxSv+Ck4= dependencies: lodash._basecopy "^3.0.0" @@ -7021,22 +7053,22 @@ lodash._baseassign@^3.0.0: lodash._basecopy@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" + resolved "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" integrity sha1-jaDmqHbPNEwK2KVIghEd08XHyjY= lodash._basecreate@^3.0.0: version "3.0.3" - resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" + resolved "https://registry.npmjs.org/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" integrity sha1-G8ZhYU2qf8MRt9A78WgGoCE8+CE= lodash._getnative@^3.0.0: version "3.9.1" - resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" + resolved "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" integrity sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U= lodash._isiterateecall@^3.0.0: version "3.0.9" - resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" + resolved "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" integrity sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw= lodash._reinterpolate@^3.0.0: @@ -7051,7 +7083,7 @@ lodash.clonedeep@^4.5.0: lodash.create@3.1.1: version "3.1.1" - resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" + resolved "https://registry.npmjs.org/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" integrity sha1-1/KEnw29p+BGgruM1yqwIkYd6+c= dependencies: lodash._baseassign "^3.0.0" @@ -7060,12 +7092,12 @@ lodash.create@3.1.1: lodash.escape@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-4.0.1.tgz#c9044690c21e04294beaa517712fded1fa88de98" + resolved "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz#c9044690c21e04294beaa517712fded1fa88de98" integrity sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg= lodash.flattendeep@^4.4.0: version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" + resolved "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" integrity sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI= lodash.get@^4.4.2: @@ -7075,17 +7107,17 @@ lodash.get@^4.4.2: lodash.isarguments@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" + resolved "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" integrity sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo= lodash.isarray@^3.0.0: version "3.0.4" - resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" + resolved "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" integrity sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U= lodash.isequal@^4.5.0: version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" + resolved "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA= lodash.ismatch@^4.4.0: @@ -7095,16 +7127,21 @@ lodash.ismatch@^4.4.0: lodash.keys@^3.0.0: version "3.1.2" - resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" + resolved "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" integrity sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo= dependencies: lodash._getnative "^3.0.0" lodash.isarguments "^3.0.0" lodash.isarray "^3.0.0" +lodash.memoize@4.x: + version "4.1.2" + resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= + lodash.memoize@~3.0.3: version "3.0.4" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" + resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" integrity sha1-LcvSwofLwKVcxCMovQxzYVDVPj8= lodash.set@^4.3.2: @@ -7142,21 +7179,21 @@ lodash@4.17.14: resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba" integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw== -lodash@^4.15.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.4, lodash@^4.2.1: +lodash@^4.15.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.4, lodash@^4.2.1: version "4.17.15" resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== -log-symbols@^2.2.0: +log-symbols@2.2.0, log-symbols@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== dependencies: chalk "^2.0.1" loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1, loose-envify@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== dependencies: js-tokens "^3.0.0 || ^4.0.0" @@ -7190,12 +7227,17 @@ make-dir@^1.0.0: make-dir@^2.0.0, make-dir@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== dependencies: pify "^4.0.1" semver "^5.6.0" +make-error@1.x: + version "1.3.5" + resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.5.tgz#efe4e81f6db28cadd605c70f29c831b58ef776c8" + integrity sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g== + make-fetch-happen@^5.0.0: version "5.0.0" resolved "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-5.0.0.tgz#a8e3fe41d3415dd656fe7b8e8172e1fb4458b38d" @@ -7215,7 +7257,7 @@ make-fetch-happen@^5.0.0: makeerror@1.0.x: version "1.0.11" - resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" + resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= dependencies: tmpl "1.0.x" @@ -7251,7 +7293,7 @@ map-visit@^1.0.0: markdown-it@^8.4.0: version "8.4.2" - resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-8.4.2.tgz#386f98998dc15a37722aa7722084f4020bdd9b54" + resolved "https://registry.npmjs.org/markdown-it/-/markdown-it-8.4.2.tgz#386f98998dc15a37722aa7722084f4020bdd9b54" integrity sha512-GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ== dependencies: argparse "^1.0.7" @@ -7260,14 +7302,28 @@ markdown-it@^8.4.0: mdurl "^1.0.1" uc.micro "^1.0.5" +math-random@^1.0.1: + version "1.0.4" + resolved "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c" + integrity sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A== + +md5.js@^1.3.4: + version "1.3.5" + resolved "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" + integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + mdurl@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" + resolved "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" integrity sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4= media-typer@0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= mem@^4.0.0: @@ -7327,34 +7383,32 @@ meow@^4.0.0: merge-descriptors@1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= -merge-stream@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" - integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE= - dependencies: - readable-stream "^2.0.1" +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== merge2@^1.2.3: - version "1.2.4" - resolved "https://registry.npmjs.org/merge2/-/merge2-1.2.4.tgz#c9269589e6885a60cf80605d9522d4b67ca646e3" - integrity sha512-FYE8xI+6pjFOhokZu0We3S5NKCirLbCzSh2Usf3qEyr4X8U+0jNg9P8RZ4qz+V2UoECLVwSyzU3LxXBaLGtD3A== + version "1.3.0" + resolved "https://registry.npmjs.org/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81" + integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw== merge@^1.2.0: version "1.2.1" - resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" + resolved "https://registry.npmjs.org/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" integrity sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ== methods@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= micromatch@^2.1.5: version "2.3.11" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" integrity sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU= dependencies: arr-diff "^2.0.0" @@ -7373,7 +7427,7 @@ micromatch@^2.1.5: micromatch@^3.1.10, micromatch@^3.1.4: version "3.1.10" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== dependencies: arr-diff "^4.0.0" @@ -7391,9 +7445,9 @@ micromatch@^3.1.10, micromatch@^3.1.4: to-regex "^3.0.2" miller-rabin@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" - integrity sha1-SmL7HUKTPAVYOYL0xxb2+55sbT0= + version "4.0.1" + resolved "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== dependencies: bn.js "^4.0.0" brorand "^1.0.1" @@ -7403,16 +7457,16 @@ mime-db@1.40.0: resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA== -mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.19, mime-types@~2.1.24: +mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24: version "2.1.24" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" + resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ== dependencies: mime-db "1.40.0" mime@1.3.4: version "1.3.4" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" + resolved "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" integrity sha1-EV+eO2s9rylZmDyzjxSaLUDrXVM= mime@1.6.0: @@ -7430,21 +7484,17 @@ mimic-fn@^2.0.0: resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== -minimalistic-assert@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" - integrity sha1-cCvi3aazf0g2vLP121ZkG2Sh09M= +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= -<<<<<<< HEAD minimatch@3.0.4, minimatch@^3.0.2, minimatch@^3.0.4: -======= -minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: ->>>>>>> Convert GLS tests to jest, migrate graphiql tests from chai expect to jest expect version "3.0.4" resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== @@ -7474,18 +7524,18 @@ minimist@~0.0.1: resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= -minipass@^2.2.1, minipass@^2.3.5: - version "2.5.0" - resolved "https://registry.npmjs.org/minipass/-/minipass-2.5.0.tgz#dddb1d001976978158a05badfcbef4a771612857" - integrity sha512-9FwMVYhn6ERvMR8XFdOavRz4QK/VJV8elU1x50vYexf9lslDcWe/f4HBRxCPd185ekRSjU6CfYyJCECa/CQy7Q== +minipass@^2.2.1, minipass@^2.3.5, minipass@^2.6.0, minipass@^2.6.4: + version "2.6.5" + resolved "https://registry.npmjs.org/minipass/-/minipass-2.6.5.tgz#1c245f9f2897f70fd4a219066261ce6c29f80b18" + integrity sha512-ewSKOPFH9blOLXx0YSE+mbrNMBFPS+11a2b03QZ+P4LVrUHW/GAlqeYC7DBknDyMWkHzrzTpDhUvy7MUxqyrPA== dependencies: safe-buffer "^5.1.2" yallist "^3.0.0" minizlib@^1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" - integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA== + version "1.2.2" + resolved "https://registry.npmjs.org/minizlib/-/minizlib-1.2.2.tgz#6f0ccc82fa53e1bf2ff145f220d2da9fa6e3a166" + integrity sha512-hR3At21uSrsjjDTWrbu0IMLTpnkpv8IIMFDFaoz43Tmu4LkmAXfH44vNNzpTnf+OAQQCHrb91y/wc2J4x5XgSQ== dependencies: minipass "^2.2.1" @@ -7520,7 +7570,7 @@ mkdirp-promise@^5.0.1: dependencies: mkdirp "*" -mkdirp@*, mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1: +mkdirp@*, mkdirp@0.5.1, mkdirp@0.x, mkdirp@^0.5.0, mkdirp@^0.5.1: version "0.5.1" resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= @@ -7529,7 +7579,7 @@ mkdirp@*, mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1: mocha@3.5.0: version "3.5.0" - resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.5.0.tgz#1328567d2717f997030f8006234bce9b8cd72465" + resolved "https://registry.npmjs.org/mocha/-/mocha-3.5.0.tgz#1328567d2717f997030f8006234bce9b8cd72465" integrity sha512-pIU2PJjrPYvYRqVpjXzj76qltO9uBYI7woYAMoxbSefsa+vqAfptjoeevd6bUgwD0mPIO+hv9f7ltvsNreL2PA== dependencies: browser-stdout "1.3.0" @@ -7544,19 +7594,48 @@ mocha@3.5.0: mkdirp "0.5.1" supports-color "3.1.2" +mocha@6.1.4: + version "6.1.4" + resolved "https://registry.npmjs.org/mocha/-/mocha-6.1.4.tgz#e35fada242d5434a7e163d555c705f6875951640" + integrity sha512-PN8CIy4RXsIoxoFJzS4QNnCH4psUCPWc4/rPrst/ecSJJbLBkubMiyGCP2Kj/9YnWbotFqAoeXyXMucj7gwCFg== + dependencies: + ansi-colors "3.2.3" + browser-stdout "1.3.1" + debug "3.2.6" + diff "3.5.0" + escape-string-regexp "1.0.5" + find-up "3.0.0" + glob "7.1.3" + growl "1.10.5" + he "1.2.0" + js-yaml "3.13.1" + log-symbols "2.2.0" + minimatch "3.0.4" + mkdirp "0.5.1" + ms "2.1.1" + node-environment-flags "1.0.5" + object.assign "4.1.0" + strip-json-comments "2.0.1" + supports-color "6.0.0" + which "1.3.1" + wide-align "1.1.3" + yargs "13.2.2" + yargs-parser "13.0.0" + yargs-unparser "1.5.0" + modify-values@^1.0.0: version "1.0.1" resolved "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== module-deps@^6.0.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-6.2.0.tgz#d41a2e790245ce319171e4e7c4d8c73993ba3cd5" - integrity sha512-hKPmO06so6bL/ZvqVNVqdTVO8UAYsi3tQWlCa+z9KuWhoN4KDQtb5hcqQQv58qYiDE21wIvnttZEPiDgEbpwbA== + version "6.2.1" + resolved "https://registry.npmjs.org/module-deps/-/module-deps-6.2.1.tgz#cfe558784060e926824f474b4e647287837cda50" + integrity sha512-UnEn6Ah36Tu4jFiBbJVUtt0h+iXqxpLqDvPS8nllbw5RZFmNJ1+Mz5BjYnM9ieH80zyxHkARGLnMIHlPK5bu6A== dependencies: JSONStream "^1.0.3" browser-resolve "^1.7.0" - cached-path-relative "^1.0.0" + cached-path-relative "^1.0.2" concat-stream "~1.6.0" defined "^1.0.0" detective "^5.0.2" @@ -7572,12 +7651,12 @@ module-deps@^6.0.0: moo@^0.4.3: version "0.4.3" - resolved "https://registry.yarnpkg.com/moo/-/moo-0.4.3.tgz#3f847a26f31cf625a956a87f2b10fbc013bfd10e" + resolved "https://registry.npmjs.org/moo/-/moo-0.4.3.tgz#3f847a26f31cf625a956a87f2b10fbc013bfd10e" integrity sha512-gFD2xGCl8YFgGHsqJ9NKRVdwlioeW3mI1iqfLNYQOv0+6JRwG58Zk9DIGQgyIaffSYaO1xsKnMaYzzNr1KyIAw== mothership@~0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/mothership/-/mothership-0.2.0.tgz#93d48a2fbc3e50e2a5fc8ed586f5bc44c65f9a99" + resolved "https://registry.npmjs.org/mothership/-/mothership-0.2.0.tgz#93d48a2fbc3e50e2a5fc8ed586f5bc44c65f9a99" integrity sha1-k9SKL7w+UOKl/I7VhvW8RMZfmpk= dependencies: find-parent-dir "~0.3.0" @@ -7596,7 +7675,7 @@ move-concurrently@^1.0.1: ms@0.7.2: version "0.7.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" + resolved "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" integrity sha1-riXPJRKziFodldfwN4aNhDESR2U= ms@2.0.0: @@ -7604,13 +7683,9 @@ ms@2.0.0: resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= -<<<<<<< HEAD ms@2.1.1: -======= -ms@^2.0.0, ms@^2.1.1: ->>>>>>> Convert GLS tests to jest, migrate graphiql tests from chai expect to jest expect version "2.1.1" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== ms@^2.0.0, ms@^2.1.1: @@ -7649,7 +7724,7 @@ mz@^2.5.0: nan@^2.12.1: version "2.14.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" + resolved "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== nanomatch@^1.2.9: @@ -7671,12 +7746,13 @@ nanomatch@^1.2.9: natural-compare@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= nearley@^2.7.10: - version "2.16.0" - resolved "https://registry.yarnpkg.com/nearley/-/nearley-2.16.0.tgz#77c297d041941d268290ec84b739d0ee297e83a7" - integrity sha512-Tr9XD3Vt/EujXbZBv6UAHYoLUSMQAxSsTnm9K3koXzjzNWY195NqALeyrzLZBKzAkL3gl92BcSogqrHjD8QuUg== + version "2.19.0" + resolved "https://registry.npmjs.org/nearley/-/nearley-2.19.0.tgz#37717781d0fd0f2bfc95e233ebd75678ca4bda46" + integrity sha512-2v52FTw7RPqieZr3Gth1luAXZR7Je6q3KaDHY5bjl/paDUdMu35fZ8ICNgiYJRr3tf3NMvIQQR1r27AvEr9CRA== dependencies: commander "^2.19.0" moo "^0.4.3" @@ -7686,18 +7762,13 @@ nearley@^2.7.10: needle@^2.2.1: version "2.4.0" - resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" + resolved "https://registry.npmjs.org/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg== dependencies: debug "^3.2.6" iconv-lite "^0.4.4" sax "^1.2.4" -negotiator@0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" - integrity sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk= - negotiator@0.6.2: version "0.6.2" resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" @@ -7713,14 +7784,22 @@ nice-try@^1.0.4: resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== -node-environment-flags@^1.0.5: +node-environment-flags@1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/node-environment-flags/-/node-environment-flags-1.0.5.tgz#fa930275f5bf5dae188d6192b24b4c8bbac3d76a" + resolved "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz#fa930275f5bf5dae188d6192b24b4c8bbac3d76a" integrity sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ== dependencies: object.getownpropertydescriptors "^2.0.3" semver "^5.7.0" +node-environment-flags@^1.0.5: + version "1.0.6" + resolved "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.6.tgz#a30ac13621f6f7d674260a54dede048c3982c088" + integrity sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw== + dependencies: + object.getownpropertydescriptors "^2.0.3" + semver "^5.7.0" + node-fetch-npm@^2.0.2: version "2.0.2" resolved "https://registry.npmjs.org/node-fetch-npm/-/node-fetch-npm-2.0.2.tgz#7258c9046182dca345b4208eda918daf33697ff7" @@ -7732,12 +7811,12 @@ node-fetch-npm@^2.0.2: node-fetch@2.1.2: version "2.1.2" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.1.2.tgz#ab884e8e7e57e38a944753cec706f788d1768bb5" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.1.2.tgz#ab884e8e7e57e38a944753cec706f788d1768bb5" integrity sha1-q4hOjn5X44qUR1POxwb3iNF2i7U= node-fetch@^1.0.1: version "1.7.3" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" integrity sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ== dependencies: encoding "^0.1.11" @@ -7767,17 +7846,18 @@ node-gyp@^5.0.2: node-int64@^0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= node-modules-regexp@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" + resolved "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= -node-notifier@^5.2.1: - version "5.4.0" - resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.0.tgz#7b455fdce9f7de0c63538297354f3db468426e6a" - integrity sha512-SUDEb+o71XR5lXSTyivXd9J7fCloE3SyP4lSgt3lU2oSANiox+SxlNRGPjDKrwU1YN3ix2KN/VGGCg0t01rttQ== +node-notifier@^5.4.2: + version "5.4.3" + resolved "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.3.tgz#cb72daf94c93904098e28b9c590fd866e464bd50" + integrity sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q== dependencies: growly "^1.3.0" is-wsl "^1.1.0" @@ -7787,7 +7867,7 @@ node-notifier@^5.2.1: node-pre-gyp@^0.12.0: version "0.12.0" - resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" + resolved "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A== dependencies: detect-libc "^1.0.2" @@ -7801,10 +7881,10 @@ node-pre-gyp@^0.12.0: semver "^5.3.0" tar "^4" -node-releases@^1.1.23: - version "1.1.23" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.23.tgz#de7409f72de044a2fa59c097f436ba89c39997f0" - integrity sha512-uq1iL79YjfYC0WXoHbC/z28q/9pOl8kSHaXdWmAAc8No+bDwqkZbzIJz55g/MUsPgSGm9LZ7QSUbzTcH5tz47w== +node-releases@^1.1.29: + version "1.1.32" + resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.32.tgz#485b35c1bf9b4d8baa105d782f8ca731e518276e" + integrity sha512-VhVknkitq8dqtWoluagsGPn3dxTvN9fwgR59fV3D7sLBHe0JfDramsMI8n8mY//ccq/Kkrf8ZRHRpsyVZ3qw1A== dependencies: semver "^5.3.0" @@ -7817,7 +7897,8 @@ node-releases@^1.1.23: nopt@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + resolved "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= dependencies: abbrev "1" osenv "^0.1.4" @@ -7832,21 +7913,21 @@ normalize-package-data@^2.0.0, normalize-package-data@^2.3.0, normalize-package- semver "2 || 3 || 4 || 5" validate-npm-package-license "^3.0.1" -normalize-path@^2.0.1, normalize-path@^2.1.1: +normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= dependencies: remove-trailing-separator "^1.0.1" normalize-path@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== normalize-range@^0.1.2: version "0.1.2" - resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= normalize-url@^3.3.0: @@ -7885,7 +7966,7 @@ npm-lifecycle@^3.1.2: npm-packlist@^1.1.6, npm-packlist@^1.4.4: version "1.4.4" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.4.tgz#866224233850ac534b63d1a6e76050092b5d2f44" + resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.4.tgz#866224233850ac534b63d1a6e76050092b5d2f44" integrity sha512-zTLo8UcVYtDU3gdeaFu2Xu0n0EvelfHDGuqtNIn5RO7yQj4H1TqNdBc/yZjxnWA0PVB8D3Woyp0i5B43JwQ6Vw== dependencies: ignore-walk "^3.0.1" @@ -7909,7 +7990,8 @@ npm-run-path@^2.0.0: "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.2, npmlog@^4.1.2: version "4.1.2" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== dependencies: are-we-there-yet "~1.1.2" console-control-strings "~1.1.0" @@ -7918,18 +8000,19 @@ npm-run-path@^2.0.0: nth-check@~1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" + resolved "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== dependencies: boolbase "~1.0.0" nullthrows@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.0.0.tgz#34715e53b9debe0750a77233fd494a5835a2d999" + version "1.1.1" + resolved "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" + integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== num2fraction@^1.2.2: version "1.2.2" - resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" + resolved "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= number-is-nan@^1.0.0: @@ -7939,7 +8022,7 @@ number-is-nan@^1.0.0: nwsapi@^2.0.7, nwsapi@^2.1.3: version "2.1.4" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.4.tgz#e006a878db23636f8e8a67d33ca0e4edf61a842f" + resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.1.4.tgz#e006a878db23636f8e8a67d33ca0e4edf61a842f" integrity sha512-iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw== oauth-sign@~0.9.0: @@ -7963,22 +8046,22 @@ object-copy@^0.1.0: object-inspect@^1.6.0: version "1.6.0" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b" integrity sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ== object-is@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6" + resolved "https://registry.npmjs.org/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6" integrity sha1-CqYOyZiaCz7Xlc9NBvYs8a1lObY= -object-keys@^1.0.11, object-keys@^1.0.12: +object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== object-keys@~0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336" integrity sha1-KKaq50KN0sOpLz2V8hM13SBOAzY= object-visit@^1.0.0: @@ -7988,9 +8071,9 @@ object-visit@^1.0.0: dependencies: isobject "^3.0.0" -object.assign@^4.1.0: +object.assign@4.1.0, object.assign@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== dependencies: define-properties "^1.1.2" @@ -8000,7 +8083,7 @@ object.assign@^4.1.0: object.entries@^1.0.4, object.entries@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519" + resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519" integrity sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA== dependencies: define-properties "^1.1.3" @@ -8010,7 +8093,7 @@ object.entries@^1.0.4, object.entries@^1.1.0: object.fromentries@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.0.tgz#49a543d92151f8277b3ac9600f1e930b189d30ab" + resolved "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.0.tgz#49a543d92151f8277b3ac9600f1e930b189d30ab" integrity sha512-9iLiI6H083uiqUuvzyY6qrlmc/Gz8hLQFOcb/Ri/0xXFkSNS3ctV+CbE6yM2+AnkYfOB3dGjdzC0wrMLIhQICA== dependencies: define-properties "^1.1.2" @@ -8020,7 +8103,7 @@ object.fromentries@^2.0.0: object.getownpropertydescriptors@^2.0.3: version "2.0.3" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" + resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= dependencies: define-properties "^1.1.2" @@ -8028,7 +8111,7 @@ object.getownpropertydescriptors@^2.0.3: object.omit@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" + resolved "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" integrity sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo= dependencies: for-own "^0.1.4" @@ -8043,7 +8126,7 @@ object.pick@^1.3.0: object.values@^1.0.4, object.values@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" + resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg== dependencies: define-properties "^1.1.3" @@ -8058,7 +8141,7 @@ octokit-pagination-methods@^1.1.0: on-finished@~2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= dependencies: ee-first "1.1.1" @@ -8092,7 +8175,8 @@ optimist@^0.6.1: optionator@^0.8.1, optionator@^0.8.2: version "0.8.2" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= dependencies: deep-is "~0.1.3" fast-levenshtein "~2.0.4" @@ -8103,7 +8187,7 @@ optionator@^0.8.1, optionator@^0.8.2: os-browserify@~0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" + resolved "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= os-homedir@^1.0.0: @@ -8113,20 +8197,21 @@ os-homedir@^1.0.0: os-locale@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" + resolved "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" + integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= dependencies: lcid "^1.0.0" -os-locale@^3.0.0: +os-locale@^3.0.0, os-locale@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" + resolved "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== dependencies: execa "^1.0.0" lcid "^2.0.0" mem "^4.0.0" -os-name@^3.0.0: +os-name@^3.1.0: version "3.1.0" resolved "https://registry.npmjs.org/os-name/-/os-name-3.1.0.tgz#dec19d966296e1cd62d701a5a66ee1ddeae70801" integrity sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg== @@ -8141,7 +8226,7 @@ os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: osenv@^0.1.4, osenv@^0.1.5: version "0.1.5" - resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + resolved "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== dependencies: os-homedir "^1.0.0" @@ -8149,14 +8234,14 @@ osenv@^0.1.4, osenv@^0.1.5: outpipe@^1.1.0: version "1.1.1" - resolved "https://registry.yarnpkg.com/outpipe/-/outpipe-1.1.1.tgz#50cf8616365e87e031e29a5ec9339a3da4725fa2" + resolved "https://registry.npmjs.org/outpipe/-/outpipe-1.1.1.tgz#50cf8616365e87e031e29a5ec9339a3da4725fa2" integrity sha1-UM+GFjZeh+Ax4ppeyTOaPaRyX6I= dependencies: shell-quote "^1.4.2" output-file-sync@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-2.0.1.tgz#f53118282f5f553c2799541792b723a4c71430c0" + resolved "https://registry.npmjs.org/output-file-sync/-/output-file-sync-2.0.1.tgz#f53118282f5f553c2799541792b723a4c71430c0" integrity sha512-mDho4qm7WgIXIGf4eYU1RHN2UU5tPfVYVSRwDJw0uTmj35DQUt/eNp19N7v6T3SrR0ESTEf2up2CGO73qI35zQ== dependencies: graceful-fs "^4.1.11" @@ -8170,7 +8255,7 @@ p-defer@^1.0.0: p-each-series@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71" + resolved "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71" integrity sha1-kw89Et0fUOdDRFeiLNbwSsatf3E= dependencies: p-reduce "^1.0.0" @@ -8268,42 +8353,43 @@ p-waterfall@^1.0.0: pako@~1.0.5: version "1.0.10" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" + resolved "https://registry.npmjs.org/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" integrity sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw== parallel-transform@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06" - integrity sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY= + version "1.2.0" + resolved "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc" + integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg== dependencies: - cyclist "~0.2.2" + cyclist "^1.0.1" inherits "^2.0.3" readable-stream "^2.1.5" parent-module@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== dependencies: callsites "^3.0.0" parents@^1.0.0, parents@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" + resolved "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" integrity sha1-/t1NK/GTp3dF/nHjcdc8MwfZx1E= dependencies: path-platform "~0.11.15" parse-asn1@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" - integrity sha1-N8T5t+06tlx0gXtfJICTf7+XxxI= + version "5.1.4" + resolved "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.4.tgz#37f6628f823fbdeb2273b4d540434a22f3ef1fcc" + integrity sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw== dependencies: asn1.js "^4.0.0" browserify-aes "^1.0.0" create-hash "^1.1.0" evp_bytestokey "^1.0.0" pbkdf2 "^3.0.3" + safe-buffer "^5.1.1" parse-github-repo-url@^1.3.0: version "1.4.1" @@ -8312,7 +8398,7 @@ parse-github-repo-url@^1.3.0: parse-glob@^3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" + resolved "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" integrity sha1-ssN2z7EfNVE7rdFz7wu246OIORw= dependencies: glob-base "^0.3.0" @@ -8347,7 +8433,7 @@ parse-json@^5.0.0: parse-passwd@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" + resolved "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= parse-path@^4.0.0: @@ -8370,27 +8456,22 @@ parse-url@^5.0.0: parse5@4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" + resolved "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== parse5@5.1.0: version "5.1.0" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2" + resolved "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2" integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ== parse5@^3.0.1: version "3.0.3" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" + resolved "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" integrity sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA== dependencies: "@types/node" "*" -parseurl@~1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" - integrity sha1-yKuMkiO6NIiKpkopeyiFO+wY2lY= - -parseurl@~1.3.3: +parseurl@~1.3.1, parseurl@~1.3.2, parseurl@~1.3.3: version "1.3.3" resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== @@ -8402,13 +8483,13 @@ pascalcase@^0.1.1: patch-text@~1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/patch-text/-/patch-text-1.0.2.tgz#4bf36e65e51733d6e98f0cf62e09034daa0348ac" + resolved "https://registry.npmjs.org/patch-text/-/patch-text-1.0.2.tgz#4bf36e65e51733d6e98f0cf62e09034daa0348ac" integrity sha1-S/NuZeUXM9bpjwz2LgkDTaoDSKw= path-browserify@~0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" - integrity sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo= + version "0.0.1" + resolved "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" + integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== path-dirname@^1.0.0: version "1.0.2" @@ -8432,14 +8513,15 @@ path-exists@^4.0.0: resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== -path-is-absolute@1.0.1, path-is-absolute@^1.0.0: +path-is-absolute@1.0.1, path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= path-is-inside@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + resolved "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= path-key@^2.0.0, path-key@^2.0.1: version "2.0.1" @@ -8453,17 +8535,18 @@ path-parse@^1.0.6: path-platform@~0.11.15: version "0.11.15" - resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" + resolved "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" integrity sha1-6GQhf3TDaFDwhSt43Hv31KVyG/I= path-to-regexp@0.1.7: version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= -path-to-regexp@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.1.0.tgz#7e30f9f5b134bd6a28ffc2e3ef1e47075ac5259b" +path-to-regexp@^2.2.1: + version "2.4.0" + resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.4.0.tgz#35ce7f333d5616f1c1e1bfe266c3aba2e5b2e704" + integrity sha512-G6zHoVqC6GGTQkZwF4lkuEyMbVOjoBKAEybQUypI1WTkqinCOrq2x6U2+phkJ1XsEMTy4LjtwPI7HW+NVrRR2w== path-type@^1.0.0: version "1.1.0" @@ -8481,14 +8564,15 @@ path-type@^3.0.0: dependencies: pify "^3.0.0" -pathval@^1.0.0: +pathval@^1.0.0, pathval@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" + resolved "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" + integrity sha1-uULm1L3mUwBe9rcTYd74cn0GReA= pbkdf2@^3.0.3: - version "3.0.12" - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.12.tgz#be36785c5067ea48d806ff923288c5f750b6b8a2" - integrity sha1-vjZ4XFBn6kjYBv+SMojF91C2uKI= + version "3.0.17" + resolved "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" + integrity sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA== dependencies: create-hash "^1.1.2" create-hmac "^1.1.4" @@ -8530,7 +8614,7 @@ pinkie@^2.0.0: pirates@^4.0.0, pirates@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" + resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== dependencies: node-modules-regexp "^1.0.0" @@ -8558,7 +8642,7 @@ please-upgrade-node@^3.2.0: pn@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" + resolved "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== posix-character-classes@^0.1.0: @@ -8568,7 +8652,7 @@ posix-character-classes@^0.1.0: postcss-cli@6.1.2: version "6.1.2" - resolved "https://registry.yarnpkg.com/postcss-cli/-/postcss-cli-6.1.2.tgz#9c24174614f4d2f6b5b6de8676fed992766173bc" + resolved "https://registry.npmjs.org/postcss-cli/-/postcss-cli-6.1.2.tgz#9c24174614f4d2f6b5b6de8676fed992766173bc" integrity sha512-jIWfIkqt8cTThSpH8DBaNxHlBf99OKSem2RseRpfVPqWayxHKQB0IWdS/IF5XSGeFU5QslSDTdVHnw6qggXGkA== dependencies: chalk "^2.1.0" @@ -8586,7 +8670,7 @@ postcss-cli@6.1.2: postcss-load-config@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.0.tgz#c84d692b7bb7b41ddced94ee62e8ab31b417b003" + resolved "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.0.tgz#c84d692b7bb7b41ddced94ee62e8ab31b417b003" integrity sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q== dependencies: cosmiconfig "^5.0.0" @@ -8594,7 +8678,7 @@ postcss-load-config@^2.0.0: postcss-reporter@^6.0.0: version "6.0.1" - resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-6.0.1.tgz#7c055120060a97c8837b4e48215661aafb74245f" + resolved "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-6.0.1.tgz#7c055120060a97c8837b4e48215661aafb74245f" integrity sha512-LpmQjfRWyabc+fRygxZjpRxfhRf9u/fdlKf4VHG4TSPbV2XNsuISzYW1KL+1aQzx53CAppa1bKG4APIB/DOXXw== dependencies: chalk "^2.4.1" @@ -8604,13 +8688,13 @@ postcss-reporter@^6.0.0: postcss-value-parser@^3.3.1: version "3.3.1" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" + resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== postcss@^7.0.0, postcss@^7.0.16, postcss@^7.0.7: - version "7.0.17" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.17.tgz#4da1bdff5322d4a0acaab4d87f3e782436bad31f" - integrity sha512-546ZowA+KZ3OasvQZHsbuEpysvwTZNGJv9EfyCQdsIDltPSWHAeTQ5fQy/Npi2ZDtLI3zs7Ps/p6wThErhm9fQ== + version "7.0.18" + resolved "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz#4b9cda95ae6c069c67a4d933029eddd4838ac233" + integrity sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g== dependencies: chalk "^2.4.2" source-map "^0.6.1" @@ -8618,40 +8702,38 @@ postcss@^7.0.0, postcss@^7.0.16, postcss@^7.0.7: prelude-ls@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= preserve@^0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" + resolved "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks= prettier@^1.18.2: version "1.18.2" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea" + resolved "https://registry.npmjs.org/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea" integrity sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw== -pretty-format@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.8.0.tgz#8dae7044f58db7cb8be245383b565a963e3c27f2" - integrity sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw== +pretty-format@^24.9.0: + version "24.9.0" + resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz#12fac31b37019a4eea3c11aa9a959eb7628aa7c9" + integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" ansi-regex "^4.0.0" ansi-styles "^3.2.0" react-is "^16.8.4" pretty-hrtime@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" + resolved "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= private@^0.1.6: - version "0.1.7" - resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" - -process-nextick-args@~1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" + version "0.1.8" + resolved "https://registry.npmjs.org/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" + integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== process-nextick-args@~2.0.0: version "2.0.1" @@ -8660,12 +8742,13 @@ process-nextick-args@~2.0.0: process@~0.11.0: version "0.11.10" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= progress@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" + version "2.0.3" + resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== promise-inflight@^1.0.1: version "1.0.1" @@ -8682,18 +8765,18 @@ promise-retry@^1.1.1: promise@^7.1.1: version "7.3.1" - resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + resolved "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== dependencies: asap "~2.0.3" prompts@^2.0.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.1.0.tgz#bf90bc71f6065d255ea2bdc0fe6520485c1b45db" - integrity sha512-+x5TozgqYdOwWsQFZizE/Tra3fKvAoy037kOyU6cgz84n8f6zxngLOV4O32kTwt9FcLCxAqw0P/c8rOr9y+Gfg== + version "2.2.1" + resolved "https://registry.npmjs.org/prompts/-/prompts-2.2.1.tgz#f901dd2a2dfee080359c0e20059b24188d75ad35" + integrity sha512-VObPvJiWPhpZI6C5m60XOzTfnYg/xc/an+r9VYymj9WJW3B/DIH+REzjpAACPf8brwPeP+7vz3bIim3S+AaMjw== dependencies: - kleur "^3.0.2" - sisteransi "^1.0.0" + kleur "^3.0.3" + sisteransi "^1.0.3" promzard@^0.3.0: version "0.3.0" @@ -8704,7 +8787,7 @@ promzard@^0.3.0: prop-types-exact@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/prop-types-exact/-/prop-types-exact-1.2.0.tgz#825d6be46094663848237e3925a98c6e944e9869" + resolved "https://registry.npmjs.org/prop-types-exact/-/prop-types-exact-1.2.0.tgz#825d6be46094663848237e3925a98c6e944e9869" integrity sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA== dependencies: has "^1.0.3" @@ -8713,7 +8796,7 @@ prop-types-exact@^1.2.0: prop-types@15.7.2, prop-types@^15.5.10, prop-types@^15.7.2: version "15.7.2" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" + resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== dependencies: loose-envify "^1.4.0" @@ -8738,12 +8821,12 @@ protoduck@^5.0.1: genfun "^5.0.0" proxy-addr@~1.1.3: - version "1.1.4" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.4.tgz#27e545f6960a44a627d9b44467e35c1b6b4ce2f3" - integrity sha1-J+VF9pYKRKYn2bREZ+NcG2tM4vM= + version "1.1.5" + resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.1.5.tgz#71c0ee3b102de3f202f3b64f608d173fcba1a918" + integrity sha1-ccDuOxAt4/IC87ZPYI0XP8uhqRg= dependencies: forwarded "~0.1.0" - ipaddr.js "1.3.0" + ipaddr.js "1.4.0" proxy-addr@~2.0.5: version "2.0.5" @@ -8753,26 +8836,22 @@ proxy-addr@~2.0.5: forwarded "~0.1.2" ipaddr.js "1.9.0" -psl@^1.1.24: - version "1.3.0" - resolved "https://registry.npmjs.org/psl/-/psl-1.3.0.tgz#e1ebf6a3b5564fa8376f3da2275da76d875ca1bd" - integrity sha512-avHdspHO+9rQTLbv1RO+MPYeP/SzsCoxofjVnHanETfQhTJrmB0HlDoW+EiN/R+C0BZ+gERab9NY0lPN2TxNag== - -psl@^1.1.28: - version "1.1.31" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.31.tgz#e9aa86d0101b5b105cbe93ac6b784cd547276184" - integrity sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw== +psl@^1.1.24, psl@^1.1.28: + version "1.4.0" + resolved "https://registry.npmjs.org/psl/-/psl-1.4.0.tgz#5dd26156cdb69fa1fdb8ab1991667d3f80ced7c2" + integrity sha512-HZzqCGPecFLyoRj5HLfuDSKYTJkAfB5thKBIkRHtGjWwY7p1dAyveIbXIq4tO0KYfDF2tHqPUgY9SDnGm00uFw== public-encrypt@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" - integrity sha1-OfaZ86RlYN1eusvKaTyvfGXBjMY= + version "4.0.3" + resolved "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" + integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== dependencies: bn.js "^4.1.0" browserify-rsa "^4.0.0" create-hash "^1.1.0" parse-asn1 "^5.0.0" randombytes "^2.0.1" + safe-buffer "^5.1.2" pump@^2.0.0: version "2.0.1" @@ -8801,12 +8880,12 @@ pumpify@^1.3.3: punycode@1.3.2: version "1.3.2" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + resolved "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= punycode@^1.3.2, punycode@^1.4.1: version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= punycode@^2.1.0, punycode@^2.1.1: @@ -8821,7 +8900,7 @@ q@^1.5.1: qs@6.4.0: version "6.4.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" + resolved "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" integrity sha1-E+JtKK1rD/qpExLNO/cI7TUecjM= qs@6.7.0: @@ -8836,12 +8915,12 @@ qs@~6.5.2: querystring-es3@~0.2.0: version "0.2.1" - resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + resolved "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= querystring@0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + resolved "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= quick-lru@^1.0.0: @@ -8851,45 +8930,49 @@ quick-lru@^1.0.0: raf@^3.4.0: version "3.4.1" - resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" + resolved "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA== dependencies: performance-now "^2.1.0" railroad-diagrams@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz#eb7e6267548ddedfb899c1b90e57374559cddb7e" + resolved "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz#eb7e6267548ddedfb899c1b90e57374559cddb7e" integrity sha1-635iZ1SN3t+4mcG5Dlc3RVnN234= randexp@0.4.6: version "0.4.6" - resolved "https://registry.yarnpkg.com/randexp/-/randexp-0.4.6.tgz#e986ad5e5e31dae13ddd6f7b3019aa7c87f60ca3" + resolved "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz#e986ad5e5e31dae13ddd6f7b3019aa7c87f60ca3" integrity sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ== dependencies: discontinuous-range "1.0.0" ret "~0.1.10" -randomatic@^1.1.3: - version "1.1.7" - resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" - integrity sha512-D5JUjPyJbaJDkuAazpVnSfVkLlpeO3wDlPROTMLGKG1zMFNFRgrciKo1ltz/AzNTkqE0HzDx655QOL51N06how== +randomatic@^3.0.0: + version "3.1.1" + resolved "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" + integrity sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw== dependencies: - is-number "^3.0.0" - kind-of "^4.0.0" + is-number "^4.0.0" + kind-of "^6.0.0" + math-random "^1.0.1" -randombytes@^2.0.0, randombytes@^2.0.1: - version "2.0.5" - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" - integrity sha512-8T7Zn1AhMsQ/HI1SjcCfT/t4ii3eAqco3yOcSzS4mozsOz69lHLsoMXmF9nZgnFanYscnSlUSgs8uZyKzpE6kg== +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: + version "2.1.0" + resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== dependencies: safe-buffer "^5.1.0" -range-parser@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" - integrity sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4= +randomfill@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" + integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== + dependencies: + randombytes "^2.0.5" + safe-buffer "^5.1.0" -range-parser@~1.2.1: +range-parser@~1.2.0, range-parser@~1.2.1: version "1.2.1" resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== @@ -8904,16 +8987,7 @@ raw-body@2.4.0: iconv-lite "0.4.24" unpipe "1.0.0" -raw-body@^2.1.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.2.0.tgz#994976cf6a5096a41162840492f0bdc5d6e7fb96" - integrity sha1-mUl2z2pQlqQRYoQEkvC9xdbn+5Y= - dependencies: - bytes "2.4.0" - iconv-lite "0.4.15" - unpipe "1.0.0" - -raw-body@^2.4.1: +raw-body@^2.1.0, raw-body@^2.4.1: version "2.4.1" resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz#30ac82f98bb5ae8c152e67149dac8d55153b168c" integrity sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA== @@ -8925,7 +8999,7 @@ raw-body@^2.4.1: rc@^1.2.7: version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== dependencies: deep-extend "^0.6.0" @@ -8935,7 +9009,7 @@ rc@^1.2.7: react-dom@15.6.2: version "15.6.2" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.6.2.tgz#41cfadf693b757faf2708443a1d1fd5a02bef730" + resolved "https://registry.npmjs.org/react-dom/-/react-dom-15.6.2.tgz#41cfadf693b757faf2708443a1d1fd5a02bef730" integrity sha1-Qc+t9pO3V/rycIRDodH9WgK+9zA= dependencies: fbjs "^0.8.9" @@ -8943,14 +9017,14 @@ react-dom@15.6.2: object-assign "^4.1.0" prop-types "^15.5.10" -react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6: - version "16.8.6" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16" - integrity sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA== +react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6, react-is@^16.9.0: + version "16.9.0" + resolved "https://registry.npmjs.org/react-is/-/react-is-16.9.0.tgz#21ca9561399aad0ff1a7701c01683e8ca981edcb" + integrity sha512-tJBzzzIgnnRfEm046qRcURvwQnZVXmuCbscxUO5RWrGTXpon2d4c8mI0D8WE6ydVIm29JiLB6+RslkIvym9Rjw== react-test-renderer@15.6.2: version "15.6.2" - resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-15.6.2.tgz#d0333434fc2c438092696ca770da5ed48037efa8" + resolved "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-15.6.2.tgz#d0333434fc2c438092696ca770da5ed48037efa8" integrity sha1-0DM0NPwsQ4CSaWyncNpe1IA376g= dependencies: fbjs "^0.8.9" @@ -8958,7 +9032,7 @@ react-test-renderer@15.6.2: react@15.6.2: version "15.6.2" - resolved "https://registry.yarnpkg.com/react/-/react-15.6.2.tgz#dba0434ab439cfe82f108f0f511663908179aa72" + resolved "https://registry.npmjs.org/react/-/react-15.6.2.tgz#dba0434ab439cfe82f108f0f511663908179aa72" integrity sha1-26BDSrQ5z+gvEI8PURZjkIF5qnI= dependencies: create-react-class "^15.6.0" @@ -8969,7 +9043,7 @@ react@15.6.2: read-cache@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + resolved "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" integrity sha1-5mTvMRYRZsl1HNvo28+GtftY93Q= dependencies: pify "^2.3.0" @@ -8983,7 +9057,7 @@ read-cmd-shim@^1.0.1: read-only-stream@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" + resolved "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" integrity sha1-JyT9aoET1zdkrCiNQ4YnDB2/F/A= dependencies: readable-stream "^2.0.2" @@ -9027,7 +9101,7 @@ read-pkg-up@^3.0.0: read-pkg-up@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978" + resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978" integrity sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA== dependencies: find-up "^3.0.0" @@ -9068,9 +9142,9 @@ read@1, read@~1.0.1: dependencies: mute-stream "~0.0.4" -"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.2.6, readable-stream@^2.3.6, readable-stream@~2.3.6: +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.6, readable-stream@~2.3.6: version "2.3.6" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== dependencies: core-util-is "~1.0.0" @@ -9081,7 +9155,7 @@ read@1, read@~1.0.1: string_decoder "~1.1.1" util-deprecate "~1.0.1" -"readable-stream@2 || 3", readable-stream@^3.0.2: +"readable-stream@2 || 3", readable-stream@^3.0.2, readable-stream@^3.0.6, readable-stream@^3.1.1: version "3.4.0" resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz#a51c26754658e0a3c21dbf59163bd45ba6f447fc" integrity sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ== @@ -9090,18 +9164,9 @@ read@1, read@~1.0.1: string_decoder "^1.1.1" util-deprecate "^1.0.1" -readable-stream@^3.1.1: - version "3.3.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.3.0.tgz#cb8011aad002eb717bf040291feba8569c986fb9" - integrity sha512-EsI+s3k3XsW+fU8fQACLN59ky34AZ14LoeVZpYwmZvldCFo0r0gnelwF2TcMjLor/BTL5aDJVBMkss0dthToPw== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - readable-stream@~1.0.17: version "1.0.34" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" integrity sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw= dependencies: core-util-is "~1.0.0" @@ -9111,7 +9176,7 @@ readable-stream@~1.0.17: readable-stream@~1.1.9: version "1.1.14" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" integrity sha1-fPTFTvZI44EwhMY23SB54WbAgdk= dependencies: core-util-is "~1.0.0" @@ -9119,18 +9184,6 @@ readable-stream@~1.1.9: isarray "0.0.1" string_decoder "~0.10.x" -readable-stream@~2.0.0: - version "2.0.6" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" - integrity sha1-j5A0HmilPMySh4jaz80Rs265t44= - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "~1.0.0" - process-nextick-args "~1.0.6" - string_decoder "~0.10.x" - util-deprecate "~1.0.1" - readdir-scoped-modules@^1.0.0: version "1.1.0" resolved "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz#8d45407b4f870a0dcaebc0e28670d18e74514309" @@ -9143,7 +9196,7 @@ readdir-scoped-modules@^1.0.0: readdirp@^2.2.1: version "2.2.1" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== dependencies: graceful-fs "^4.1.11" @@ -9152,7 +9205,7 @@ readdirp@^2.2.1: realpath-native@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c" + resolved "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c" integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA== dependencies: util.promisify "^1.0.0" @@ -9175,19 +9228,19 @@ redent@^2.0.0: reflect.ownkeys@^0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz#749aceec7f3fdf8b63f927a04809e90c5c0b3460" + resolved "https://registry.npmjs.org/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz#749aceec7f3fdf8b63f927a04809e90c5c0b3460" integrity sha1-dJrO7H8/34tj+SegSAnpDFwLNGA= -regenerate-unicode-properties@^8.0.2: +regenerate-unicode-properties@^8.1.0: version "8.1.0" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" + resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA== dependencies: regenerate "^1.4.0" regenerate@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" + resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== regenerator-runtime@^0.10.5: @@ -9206,19 +9259,18 @@ regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.3: integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw== regenerator-transform@^0.14.0: - version "0.14.0" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.0.tgz#2ca9aaf7a2c239dd32e4761218425b8c7a86ecaf" - integrity sha512-rtOelq4Cawlbmq9xuMR5gdFmv7ku/sFoB7sRiywx7aq53bc52b4j6zvH7Te1Vt/X2YveDKnCGUbioieU7FEL3w== + version "0.14.1" + resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.1.tgz#3b2fce4e1ab7732c08f665dfdb314749c7ddd2fb" + integrity sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ== dependencies: private "^0.1.6" regex-cache@^0.4.2: - version "0.4.3" - resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" - integrity sha1-mxpsNdTQ3871cRrmUejp09cRQUU= + version "0.4.4" + resolved "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" + integrity sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ== dependencies: is-equal-shallow "^0.1.3" - is-primitive "^2.0.0" regex-not@^1.0.0, regex-not@^1.0.2: version "1.0.2" @@ -9228,23 +9280,23 @@ regex-not@^1.0.0, regex-not@^1.0.2: extend-shallow "^3.0.2" safe-regex "^1.1.0" -regexp-tree@^0.1.6: - version "0.1.10" - resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.10.tgz#d837816a039c7af8a8d64d7a7c3cf6a1d93450bc" - integrity sha512-K1qVSbcedffwuIslMwpe6vGlj+ZXRnGkvjAtFHfDZZZuEdA/h0dxljAPu9vhUo6Rrx2U2AwJ+nSQ6hK+lrP5MQ== +regexp-tree@^0.1.13: + version "0.1.13" + resolved "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.13.tgz#5b19ab9377edc68bc3679256840bb29afc158d7f" + integrity sha512-hwdV/GQY5F8ReLZWO+W1SRoN5YfpOKY6852+tBFcma72DKBIcHjPRIlIvQN35bCOljuAfP2G2iB0FC/w236mUw== regexpp@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" + resolved "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== regexpu-core@^4.5.4: - version "4.5.4" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae" - integrity sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ== + version "4.6.0" + resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6" + integrity sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg== dependencies: regenerate "^1.4.0" - regenerate-unicode-properties "^8.0.2" + regenerate-unicode-properties "^8.1.0" regjsgen "^0.5.0" regjsparser "^0.6.0" unicode-match-property-ecmascript "^1.0.4" @@ -9252,23 +9304,24 @@ regexpu-core@^4.5.4: regjsgen@^0.5.0: version "0.5.0" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" + resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA== regjsparser@^0.6.0: version "0.6.0" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" + resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" integrity sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ== dependencies: jsesc "~0.5.0" remove-trailing-separator@^1.0.1: version "1.1.0" - resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= rename-function-calls@~0.1.0: version "0.1.1" - resolved "https://registry.yarnpkg.com/rename-function-calls/-/rename-function-calls-0.1.1.tgz#7f83369c007a3007f6abe3033ccf81686a108e01" + resolved "https://registry.npmjs.org/rename-function-calls/-/rename-function-calls-0.1.1.tgz#7f83369c007a3007f6abe3033ccf81686a108e01" integrity sha1-f4M2nAB6MAf2q+MDPM+BaGoQjgE= dependencies: detective "~3.1.0" @@ -9292,7 +9345,7 @@ repeating@^2.0.0: replace-requires@~1.0.3: version "1.0.4" - resolved "https://registry.yarnpkg.com/replace-requires/-/replace-requires-1.0.4.tgz#014b7330b6b9e2557b71043b66fb02660c3bf667" + resolved "https://registry.npmjs.org/replace-requires/-/replace-requires-1.0.4.tgz#014b7330b6b9e2557b71043b66fb02660c3bf667" integrity sha1-AUtzMLa54lV7cQQ7ZvsCZgw79mc= dependencies: detective "^4.5.0" @@ -9302,14 +9355,14 @@ replace-requires@~1.0.3: request-promise-core@1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.2.tgz#339f6aababcafdb31c799ff158700336301d3346" + resolved "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.2.tgz#339f6aababcafdb31c799ff158700336301d3346" integrity sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag== dependencies: lodash "^4.17.11" request-promise-native@^1.0.5: version "1.0.7" - resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.7.tgz#a49868a624bdea5069f1251d0a836e0d89aa2c59" + resolved "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.7.tgz#a49868a624bdea5069f1251d0a836e0d89aa2c59" integrity sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w== dependencies: request-promise-core "1.1.2" @@ -9318,7 +9371,7 @@ request-promise-native@^1.0.5: request@^2.87.0, request@^2.88.0: version "2.88.0" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" + resolved "https://registry.npmjs.org/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== dependencies: aws-sign2 "~0.7.0" @@ -9354,7 +9407,7 @@ require-main-filename@^1.0.1: require-main-filename@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== resolve-cwd@^2.0.0: @@ -9400,17 +9453,10 @@ resolve-url@^0.2.1: resolve@1.1.7: version "1.1.7" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= -resolve@^1.1.4, resolve@^1.1.6, resolve@^1.10.1, resolve@^1.3.2, resolve@^1.4.0, resolve@^1.8.1: - version "1.11.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.1.tgz#ea10d8110376982fef578df8fc30b9ac30a07a3e" - integrity sha512-vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw== - dependencies: - path-parse "^1.0.6" - -resolve@^1.10.0: +resolve@1.x, resolve@^1.1.4, resolve@^1.1.6, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.4.0, resolve@^1.8.1: version "1.12.0" resolved "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w== @@ -9419,7 +9465,7 @@ resolve@^1.10.0: resolve@~0.6.1: version "0.6.3" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-0.6.3.tgz#dd957982e7e736debdf53b58a4dd91754575dd46" + resolved "https://registry.npmjs.org/resolve/-/resolve-0.6.3.tgz#dd957982e7e736debdf53b58a4dd91754575dd46" integrity sha1-3ZV5gufnNt699TtYpN2RdUV13UY= restore-cursor@^2.0.0: @@ -9440,53 +9486,53 @@ retry@^0.10.0: resolved "https://registry.npmjs.org/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" integrity sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q= -rimraf@2, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.2, rimraf@^2.6.3: +rimraf@2, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2, rimraf@^2.6.3: version "2.7.1" resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== dependencies: glob "^7.1.3" -rimraf@2.6.3, rimraf@^2.6.1: +rimraf@2.6.3: version "2.6.3" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== dependencies: glob "^7.1.3" ripemd160@^2.0.0, ripemd160@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" - integrity sha1-D0WEKVxTo2KK9+bXmsohzlfRxuc= + version "2.0.2" + resolved "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" + integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== dependencies: - hash-base "^2.0.0" + hash-base "^3.0.0" inherits "^2.0.1" router@~1.3.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/router/-/router-1.3.1.tgz#e59ef64fafc22194a196986834d887058d76af47" - integrity sha1-5Z72T6/CIZShlphoNNiHBY12r0c= + version "1.3.3" + resolved "https://registry.npmjs.org/router/-/router-1.3.3.tgz#c142f6b5ea4d6b3359022ca95b6580bd217f89cf" + integrity sha1-wUL2tepNazNZAiypW2WAvSF/ic8= dependencies: array-flatten "2.1.1" - debug "2.6.8" + debug "2.6.9" methods "~1.1.2" - parseurl "~1.3.1" + parseurl "~1.3.2" path-to-regexp "0.1.7" - setprototypeof "1.0.3" - utils-merge "1.0.0" + setprototypeof "1.1.0" + utils-merge "1.0.1" rst-selector-parser@^2.2.3: version "2.2.3" - resolved "https://registry.yarnpkg.com/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz#81b230ea2fcc6066c89e3472de794285d9b03d91" + resolved "https://registry.npmjs.org/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz#81b230ea2fcc6066c89e3472de794285d9b03d91" integrity sha1-gbIw6i/MYGbInjRy3nlChdmwPZE= dependencies: lodash.flattendeep "^4.4.0" nearley "^2.7.10" rsvp@^4.8.4: - version "4.8.4" - resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.4.tgz#b50e6b34583f3dd89329a2f23a8a2be072845911" - integrity sha512-6FomvYPfs+Jy9TfXmBpBuMWNH94SgCsZmJKcanySzgNNP6LjWxBvyLTa9KaMfDDM5oxRfrKDB0r/qeRsLwnBfA== + version "4.8.5" + resolved "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" + integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== run-async@^2.2.0: version "2.3.0" @@ -9508,9 +9554,9 @@ run-queue@^1.0.0, run-queue@^1.0.3: aproba "^1.1.1" rxjs@^6.4.0: - version "6.5.2" - resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.5.2.tgz#2e35ce815cd46d84d02a209fb4e5921e051dbec7" - integrity sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg== + version "6.5.3" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.5.3.tgz#510e26317f4db91a7eb1de77d9dd9ba0a4899a3a" + integrity sha512-wuYsAYYFdWTAnAaPoKGNhfpWwKZbJW+HgAJ+mImp+Epl7BG8oNWBCTyRM8gba9k4lk8BgWdoYm21Mo/RYhhbgA== dependencies: tslib "^1.9.0" @@ -9538,7 +9584,7 @@ safe-regex@^1.1.0: sane@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/sane/-/sane-2.0.0.tgz#99cb79f21f4a53a69d4d0cd957c2db04024b8eb2" + resolved "https://registry.npmjs.org/sane/-/sane-2.0.0.tgz#99cb79f21f4a53a69d4d0cd957c2db04024b8eb2" integrity sha1-mct58h9KU6adTQzZV8LbBAJLjrI= dependencies: anymatch "^1.3.0" @@ -9553,7 +9599,7 @@ sane@2.0.0: sane@^4.0.3: version "4.1.0" - resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" + resolved "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== dependencies: "@cnakazawa/watch" "^1.0.3" @@ -9568,39 +9614,34 @@ sane@^4.0.3: sax@^1.2.4: version "1.2.4" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== saxes@^3.1.9: - version "3.1.9" - resolved "https://registry.yarnpkg.com/saxes/-/saxes-3.1.9.tgz#c1c197cd54956d88c09f960254b999e192d7058b" - integrity sha512-FZeKhJglhJHk7eWG5YM0z46VHmI3KJpMBAQm3xa9meDvd+wevB5GuBB0wc0exPInZiBBHqi00DbS8AcvCGCFMw== + version "3.1.11" + resolved "https://registry.npmjs.org/saxes/-/saxes-3.1.11.tgz#d59d1fd332ec92ad98a2e0b2ee644702384b1c5b" + integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g== dependencies: - xmlchars "^1.3.1" + xmlchars "^2.1.1" semver-compare@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= -"semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0: +"semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0: version "5.7.1" resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== -semver@6.1.1: - version "6.1.1" - resolved "https://registry.npmjs.org/semver/-/semver-6.1.1.tgz#53f53da9b30b2103cd4f15eab3a18ecbcb210c9b" - integrity sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ== - -semver@^5.3.0: - version "5.7.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" - integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== +semver@6.2.0: + version "6.2.0" + resolved "https://registry.npmjs.org/semver/-/semver-6.2.0.tgz#4d813d9590aaf8a9192693d6c85b9344de5901db" + integrity sha512-jdFC1VdUGT/2Scgbimf7FSx9iJLXoqfglSF+gJeuNWVpiE37OIbc1jywR/GJyFdz3mnkz2/id0L0J/cr0izR5A== -semver@^6.0.0, semver@^6.1.0, semver@^6.2.0: +semver@^6.0.0, semver@^6.2.0, semver@^6.3.0: version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== semver@~5.3.0: @@ -9610,7 +9651,7 @@ semver@~5.3.0: send@0.15.1: version "0.15.1" - resolved "https://registry.yarnpkg.com/send/-/send-0.15.1.tgz#8a02354c26e6f5cca700065f5f0cdeba90ec7b5f" + resolved "https://registry.npmjs.org/send/-/send-0.15.1.tgz#8a02354c26e6f5cca700065f5f0cdeba90ec7b5f" integrity sha1-igI1TCbm9cynAAZfXwzeupDse18= dependencies: debug "2.6.1" @@ -9648,7 +9689,7 @@ send@0.17.1: serve-static@1.12.1: version "1.12.1" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.12.1.tgz#7443a965e3ced647aceb5639fa06bf4d1bbe0039" + resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.12.1.tgz#7443a965e3ced647aceb5639fa06bf4d1bbe0039" integrity sha1-dEOpZePO1kes61Y5+ga/TRu+ADk= dependencies: encodeurl "~1.0.1" @@ -9683,29 +9724,35 @@ set-value@^2.0.0, set-value@^2.0.1: setimmediate@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= setprototypeof@1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" integrity sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ= +setprototypeof@1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== + setprototypeof@1.1.1: version "1.1.1" resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== sha.js@^2.4.0, sha.js@^2.4.8, sha.js@~2.4.4: - version "2.4.8" - resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" - integrity sha1-NwaMLEdra69ALRSknGf1l5IfY08= + version "2.4.11" + resolved "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== dependencies: inherits "^2.0.1" + safe-buffer "^5.0.1" shasum@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" + resolved "https://registry.npmjs.org/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" integrity sha1-5wEjENj0F/TetXEhUOVni4euVl8= dependencies: json-stable-stringify "~0.0.0" @@ -9724,18 +9771,13 @@ shebang-regex@^1.0.0: integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= shell-quote@^1.4.2, shell-quote@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" - integrity sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c= - dependencies: - array-filter "~0.0.0" - array-map "~0.0.0" - array-reduce "~0.0.0" - jsonify "~0.0.0" + version "1.7.2" + resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" + integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== shellwords@^0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" + resolved "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== signal-exit@^3.0.0, signal-exit@^3.0.2: @@ -9743,10 +9785,15 @@ signal-exit@^3.0.0, signal-exit@^3.0.2: resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= -sisteransi@^1.0.0: +simple-concat@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.0.tgz#77d9622ff909080f1c19e5f4a1df0c1b0a27b88c" - integrity sha512-N+z4pHB4AmUv0SjveWRd6q1Nj5w62m5jodv+GD8lvmbY/83T/rpbJGZOnK5T149OldDj4Db07BSv9xY4K6NTPQ== + resolved "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6" + integrity sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY= + +sisteransi@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.3.tgz#98168d62b79e3a5e758e27ae63c4a053d748f4eb" + integrity sha512-SbEG75TzH8G7eVXFSN5f9EExILKfly7SUvVY5DhhYLvfhKqhDFY0OzevWa/zwak0RLRfWS5AvfMWpd9gJvr5Yg== slash@^1.0.0: version "1.0.0" @@ -9765,7 +9812,7 @@ slash@^3.0.0: slice-ansi@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" + resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== dependencies: ansi-styles "^3.2.0" @@ -9847,9 +9894,9 @@ source-map-resolve@^0.5.0: urix "^0.1.0" source-map-support@^0.5.6, source-map-support@^0.5.9, source-map-support@~0.5.10: - version "0.5.12" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599" - integrity sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ== + version "0.5.13" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" + integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== dependencies: buffer-from "^1.0.0" source-map "^0.6.0" @@ -9861,17 +9908,17 @@ source-map-url@^0.4.0: source-map@^0.5.0, source-map@^0.5.6, source-map@~0.5.3: version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== source-map@~0.1.30: version "0.1.43" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" integrity sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y= dependencies: amdefine ">=0.0.4" @@ -9952,7 +9999,7 @@ ssri@^6.0.0, ssri@^6.0.1: stack-utils@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" + resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA== static-extend@^0.1.1: @@ -9963,32 +10010,32 @@ static-extend@^0.1.1: define-property "^0.2.5" object-copy "^0.1.0" -"statuses@>= 1.3.1 < 2", statuses@~1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" - integrity sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4= - -"statuses@>= 1.5.0 < 2", statuses@~1.5.0: +"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@~1.5.0: version "1.5.0" resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= +statuses@~1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" + integrity sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4= + stealthy-require@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" + resolved "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= stream-browserify@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" - integrity sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds= + version "2.0.2" + resolved "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" + integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== dependencies: inherits "~2.0.1" readable-stream "^2.0.2" stream-combiner2@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" + resolved "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" integrity sha1-+02KFCDqNidk4hrUeAOXvry0HL4= dependencies: duplexer2 "~0.1.0" @@ -10003,32 +10050,42 @@ stream-each@^1.1.0: stream-shift "^1.0.0" stream-http@^2.0.0: - version "2.7.2" - resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" - integrity sha512-c0yTD2rbQzXtSsFSVhtpvY/vS6u066PcXOX9kBB3mSO76RiUQzL340uJkGBWnlBg4/HZzqiUXtaVA7wcRcJgEw== + version "2.8.3" + resolved "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" + integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== dependencies: builtin-status-codes "^3.0.0" inherits "^2.0.1" - readable-stream "^2.2.6" + readable-stream "^2.3.6" to-arraybuffer "^1.0.0" xtend "^4.0.0" +stream-http@^3.0.0: + version "3.1.0" + resolved "https://registry.npmjs.org/stream-http/-/stream-http-3.1.0.tgz#22fb33fe9b4056b4eccf58bd8f400c4b993ffe57" + integrity sha512-cuB6RgO7BqC4FBYzmnvhob5Do3wIdIsXAgGycHJnW+981gHqoYcYz9lqjJrk8WXRddbwPuqPYRl+bag6mYv4lw== + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^3.0.6" + xtend "^4.0.0" + stream-shift@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" integrity sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI= stream-splicer@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.0.tgz#1b63be438a133e4b671cc1935197600175910d83" - integrity sha1-G2O+Q4oTPktnHMGTUZdgAXWRDYM= + version "2.0.1" + resolved "https://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.1.tgz#0b13b7ee2b5ac7e0609a7463d83899589a363fcd" + integrity sha512-Xizh4/NPuYSyAXyT7g8IvdJ9HJpxIGL9PjyhtywCZvvP0OPIdqyrr4dMikeuvY8xahpdKEBlBTySe583totajg== dependencies: inherits "^2.0.1" readable-stream "^2.0.2" string-length@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" + resolved "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" integrity sha1-1A27aGo6zpYMHP/KVivyxF+DY+0= dependencies: astral-regex "^1.0.0" @@ -10051,9 +10108,9 @@ string-width@^1.0.1, string-width@^1.0.2: is-fullwidth-code-point "^2.0.0" strip-ansi "^4.0.0" -string-width@^3.0.0: +string-width@^3.0.0, string-width@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" + resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== dependencies: emoji-regex "^7.0.1" @@ -10061,13 +10118,29 @@ string-width@^3.0.0: strip-ansi "^5.1.0" string.prototype.trim@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" - integrity sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo= + version "1.2.0" + resolved "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.0.tgz#75a729b10cfc1be439543dae442129459ce61e3d" + integrity sha512-9EIjYD/WdlvLpn987+ctkLf0FfvBefOCuiEr2henD8X+7jfwPnyvTdmW8OJhj5p+M0/96mBdynLWkxUr+rHlpg== dependencies: - define-properties "^1.1.2" - es-abstract "^1.5.0" - function-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.13.0" + function-bind "^1.1.1" + +string.prototype.trimleft@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634" + integrity sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw== + dependencies: + define-properties "^1.1.3" + function-bind "^1.1.1" + +string.prototype.trimright@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz#669d164be9df9b6f7559fa8e89945b168a5a6c58" + integrity sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg== + dependencies: + define-properties "^1.1.3" + function-bind "^1.1.1" string_decoder@^1.1.1: version "1.3.0" @@ -10078,7 +10151,7 @@ string_decoder@^1.1.1: string_decoder@~0.10.x: version "0.10.31" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= string_decoder@~1.1.1: @@ -10102,7 +10175,7 @@ strip-ansi@^4.0.0: dependencies: ansi-regex "^3.0.0" -strip-ansi@^5.0.0, strip-ansi@^5.1.0: +strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: version "5.2.0" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== @@ -10138,9 +10211,10 @@ strip-indent@^2.0.0: resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= -strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: +strip-json-comments@2.0.1, strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= strong-log-transformer@^2.0.0: version "2.1.0" @@ -10153,30 +10227,26 @@ strong-log-transformer@^2.0.0: subarg@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" + resolved "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" integrity sha1-9izxdYHplrSPyWVpn1TAauJouNI= dependencies: minimist "^1.1.0" supports-color@3.1.2: version "3.1.2" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" integrity sha1-cqJiiU2dQIuVbKBf83su2KbiotU= dependencies: has-flag "^1.0.0" -<<<<<<< HEAD supports-color@6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.0.0.tgz#76cfe742cf1f41bb9b1c29ad03068c05b4c0e40a" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz#76cfe742cf1f41bb9b1c29ad03068c05b4c0e40a" integrity sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg== dependencies: has-flag "^3.0.0" -supports-color@^5.2.0, supports-color@^5.3.0: -======= supports-color@^5.3.0: ->>>>>>> Convert GLS tests to jest, migrate graphiql tests from chai expect to jest expect version "5.5.0" resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== @@ -10185,41 +10255,41 @@ supports-color@^5.3.0: supports-color@^6.1.0: version "6.1.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== dependencies: has-flag "^3.0.0" symbol-tree@^3.2.2: - version "3.2.2" - resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" - integrity sha1-rifbOPZgp64uHDt9G8KQgZuFGeY= + version "3.2.4" + resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" + integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== syntax-error@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.3.0.tgz#1ed9266c4d40be75dc55bf9bb1cb77062bb96ca1" - integrity sha1-HtkmbE1AvnXcVb+bsct3Biu5bKE= + version "1.4.0" + resolved "https://registry.npmjs.org/syntax-error/-/syntax-error-1.4.0.tgz#2d9d4ff5c064acb711594a3e3b95054ad51d907c" + integrity sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w== dependencies: - acorn "^4.0.3" + acorn-node "^1.2.0" table@^5.2.3: - version "5.2.3" - resolved "https://registry.yarnpkg.com/table/-/table-5.2.3.tgz#cde0cc6eb06751c009efab27e8c820ca5b67b7f2" - integrity sha512-N2RsDAMvDLvYwFcwbPyF3VmVSSkuF+G1e+8inhBLtHpvwXGw4QRPEZhihQNeEN0i1up6/f6ObCJXNdlRG3YVyQ== + version "5.4.6" + resolved "https://registry.npmjs.org/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" + integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== dependencies: - ajv "^6.9.1" - lodash "^4.17.11" + ajv "^6.10.2" + lodash "^4.17.14" slice-ansi "^2.1.0" string-width "^3.0.0" tar@^4, tar@^4.4.10, tar@^4.4.8: - version "4.4.10" - resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.10.tgz#946b2810b9a5e0b26140cf78bea6b0b0d689eba1" - integrity sha512-g2SVs5QIxvo6OLp0GudTqEf05maawKUxXru104iaayWA09551tFCTI8f1Asb4lPfkBr91k07iL4c11XO3/b0tA== + version "4.4.11" + resolved "https://registry.npmjs.org/tar/-/tar-4.4.11.tgz#7ac09801445a3cf74445ed27499136b5240ffb73" + integrity sha512-iI4zh3ktLJKaDNZKZc+fUONiQrSn9HkCFzamtb7k8FFmVilHVob7QsLX/VySAW8lAviMzMbFw4QtFb4errwgYA== dependencies: chownr "^1.1.1" fs-minipass "^1.2.5" - minipass "^2.3.5" + minipass "^2.6.4" minizlib "^1.2.1" mkdirp "^0.5.0" safe-buffer "^5.1.2" @@ -10227,7 +10297,7 @@ tar@^4, tar@^4.4.10, tar@^4.4.8: teeny-request@^3.11.3: version "3.11.3" - resolved "https://registry.yarnpkg.com/teeny-request/-/teeny-request-3.11.3.tgz#335c629f7645e5d6599362df2f3230c4cbc23a55" + resolved "https://registry.npmjs.org/teeny-request/-/teeny-request-3.11.3.tgz#335c629f7645e5d6599362df2f3230c4cbc23a55" integrity sha512-CKncqSF7sH6p4rzCgkb/z/Pcos5efl0DmolzvlqRQUNcpRIruOhY9+T1FsIlyEbfWd7MsFpodROOwHYh2BaXzw== dependencies: https-proxy-agent "^2.2.1" @@ -10253,12 +10323,12 @@ temp-write@^3.4.0: ternary@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/ternary/-/ternary-1.0.0.tgz#45702725608c9499d46a9610e9b0e49ff26f789e" + resolved "https://registry.npmjs.org/ternary/-/ternary-1.0.0.tgz#45702725608c9499d46a9610e9b0e49ff26f789e" integrity sha1-RXAnJWCMlJnUapYQ6bDkn/JveJ4= terser@^3.7.5: version "3.17.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-3.17.0.tgz#f88ffbeda0deb5637f9d24b0da66f4e15ab10cb2" + resolved "https://registry.npmjs.org/terser/-/terser-3.17.0.tgz#f88ffbeda0deb5637f9d24b0da66f4e15ab10cb2" integrity sha512-/FQzzPJmCpjAH9Xvk2paiWrFq+5M6aVOf+2KRbwhByISDX/EujxsK+BAvrhb6H+2rtrLCHK9N01wO014vrIwVQ== dependencies: commander "^2.19.0" @@ -10267,7 +10337,7 @@ terser@^3.7.5: test-exclude@^5.2.3: version "5.2.3" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.2.3.tgz#c3d3e1e311eb7ee405e092dac10aefd09091eac0" + resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz#c3d3e1e311eb7ee405e092dac10aefd09091eac0" integrity sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g== dependencies: glob "^7.1.3" @@ -10287,7 +10357,7 @@ text-extensions@^2.0.0: text-table@^0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= thenify-all@^1.0.0: @@ -10306,7 +10376,7 @@ thenify-all@^1.0.0: throat@^4.0.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" + resolved "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" integrity sha1-iQN8vJLFarGJJua6TLsgDhVnKmo= through2@^2.0.0, through2@^2.0.2: @@ -10326,7 +10396,7 @@ through2@^3.0.0: through2@~0.4.0: version "0.4.2" - resolved "https://registry.yarnpkg.com/through2/-/through2-0.4.2.tgz#dbf5866031151ec8352bb6c4db64a2292a840b9b" + resolved "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz#dbf5866031151ec8352bb6c4db64a2292a840b9b" integrity sha1-2/WGYDEVHsg1K7bE22SiKSqEC5s= dependencies: readable-stream "~1.0.17" @@ -10339,7 +10409,7 @@ through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6, through@~2.3.4: timers-browserify@^1.0.1: version "1.4.2" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" + resolved "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" integrity sha1-ycWLV1voQHN1y14kYtrO50NZ9B0= dependencies: process "~0.11.0" @@ -10353,17 +10423,18 @@ tmp@^0.0.33: tmpl@1.0.x: version "1.0.4" - resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" + resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE= to-arraybuffer@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + resolved "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= to-fast-properties@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= to-object-path@^0.3.0: version "0.3.0" @@ -10392,7 +10463,7 @@ to-regex@^3.0.1, to-regex@^3.0.2: toggle-selection@^1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32" + resolved "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32" integrity sha1-bkWxJj8gF/oKzH2J14sVuL932jI= toidentifier@1.0.0: @@ -10402,7 +10473,7 @@ toidentifier@1.0.0: tough-cookie@^2.3.3, tough-cookie@^2.3.4, tough-cookie@^2.5.0: version "2.5.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== dependencies: psl "^1.1.28" @@ -10425,7 +10496,7 @@ tr46@^1.0.1: transformify@~0.1.1: version "0.1.2" - resolved "https://registry.yarnpkg.com/transformify/-/transformify-0.1.2.tgz#9a4f42a154433dd727b80575428a3c9e5489ebf1" + resolved "https://registry.npmjs.org/transformify/-/transformify-0.1.2.tgz#9a4f42a154433dd727b80575428a3c9e5489ebf1" integrity sha1-mk9CoVRDPdcnuAV1Qoo8nlSJ6/E= dependencies: readable-stream "~1.1.9" @@ -10447,7 +10518,24 @@ trim-off-newlines@^1.0.0: trim-right@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + resolved "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= + +ts-jest@^24.1.0: + version "24.1.0" + resolved "https://registry.npmjs.org/ts-jest/-/ts-jest-24.1.0.tgz#2eaa813271a2987b7e6c3fefbda196301c131734" + integrity sha512-HEGfrIEAZKfu1pkaxB9au17b1d9b56YZSqz5eCVE8mX68+5reOvlM93xGOzzCREIov9mdH7JBG+s0UyNAqr0tQ== + dependencies: + bs-logger "0.x" + buffer-from "1.x" + fast-json-stable-stringify "2.x" + json5 "2.x" + lodash.memoize "4.x" + make-error "1.x" + mkdirp "0.x" + resolve "1.x" + semver "^5.5" + yargs-parser "10.x" tslib@^1.9.0: version "1.10.0" @@ -10456,7 +10544,7 @@ tslib@^1.9.0: tty-browserify@0.0.1: version "0.0.1" - resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811" + resolved "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811" integrity sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw== tunnel-agent@^0.6.0: @@ -10473,18 +10561,19 @@ tweetnacl@^0.14.3, tweetnacl@~0.14.0: type-check@~0.3.2: version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= dependencies: prelude-ls "~1.1.2" type-detect@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-3.0.0.tgz#46d0cc8553abb7b13a352b0d6dea2fd58f2d9b55" + resolved "https://registry.npmjs.org/type-detect/-/type-detect-3.0.0.tgz#46d0cc8553abb7b13a352b0d6dea2fd58f2d9b55" integrity sha1-RtDMhVOrt7E6NSsNbeov1Y8tm1U= -type-detect@^4.0.0: +type-detect@^4.0.0, type-detect@^4.0.5: version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== type-fest@^0.3.0: @@ -10497,15 +10586,7 @@ type-fest@^0.6.0: resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== -type-is@~1.6.14: - version "1.6.15" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" - integrity sha1-yrEPtJCeRByChC6v4a1kbIGARBA= - dependencies: - media-typer "0.3.0" - mime-types "~2.1.15" - -type-is@~1.6.17, type-is@~1.6.18: +type-is@~1.6.14, type-is@~1.6.17, type-is@~1.6.18: version "1.6.18" resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== @@ -10513,9 +10594,10 @@ type-is@~1.6.17, type-is@~1.6.18: media-typer "0.3.0" mime-types "~2.1.24" -typedarray@^0.0.6, typedarray@~0.0.5: +typedarray@^0.0.6: version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= typescript@^3.6.3: version "3.6.3" @@ -10523,18 +10605,18 @@ typescript@^3.6.3: integrity sha512-N7bceJL1CtRQ2RiG0AQME13ksR7DiuQh/QehubYcghzv20tnh+MQnQIuJddTmsbqYj+dztchykemz0zFzlvdQw== ua-parser-js@^0.7.18: - version "0.7.19" - resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.19.tgz#94151be4c0a7fb1d001af7022fdaca4642659e4b" - integrity sha512-T3PVJ6uz8i0HzPxOF9SWzWAlfN/DavlpQqepn22xgve/5QecC+XMCAtmUNnY7C9StehaV6exjUCI801lOI7QlQ== + version "0.7.20" + resolved "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.20.tgz#7527178b82f6a62a0f243d1f94fd30e3e3c21098" + integrity sha512-8OaIKfzL5cpx8eCMAhhvTlft8GYF8b2eQr6JkCyVdrgjcytyOmPCXrqXFcUnhonRpLlh5yxEZVohm6mzaowUOw== uc.micro@^1.0.1, uc.micro@^1.0.5: version "1.0.6" - resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" + resolved "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== uglify-js@3.5.11: version "3.5.11" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.5.11.tgz#833442c0aa29b3a7d34344c7c63adaa3f3504f6a" + resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.5.11.tgz#833442c0aa29b3a7d34344c7c63adaa3f3504f6a" integrity sha512-izPJg8RsSyqxbdnqX36ExpbH3K7tDBsAU/VfNv89VkMFy3z39zFjunQGsSHOlGlyIfGLGprGeosgQno3bo2/Kg== dependencies: commander "~2.20.0" @@ -10550,7 +10632,7 @@ uglify-js@^3.1.4: uglifyify@5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/uglifyify/-/uglifyify-5.0.1.tgz#70b1d8b413c410348c8e35e7f8bd1330a422d5f6" + resolved "https://registry.npmjs.org/uglifyify/-/uglifyify-5.0.1.tgz#70b1d8b413c410348c8e35e7f8bd1330a422d5f6" integrity sha512-PO44rgExvwj3rkK0UzenHVnPU18drBy9x9HOUmgkuRh6K2KIsDqrB5LqxGtjybgGTOS1JeP8SBc+TN5rhiva6w== dependencies: convert-source-map "~1.1.0" @@ -10570,18 +10652,29 @@ umask@^1.1.0: integrity sha1-8pzr8B31F5ErtY/5xOUP3o4zMg0= umd@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/umd/-/umd-3.0.1.tgz#8ae556e11011f63c2596708a8837259f01b3d60e" - integrity sha1-iuVW4RAR9jwllnCKiDclnwGz1g4= + version "3.0.3" + resolved "https://registry.npmjs.org/umd/-/umd-3.0.3.tgz#aa9fe653c42b9097678489c01000acb69f0b26cf" + integrity sha512-4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow== + +undeclared-identifiers@^1.1.2: + version "1.1.3" + resolved "https://registry.npmjs.org/undeclared-identifiers/-/undeclared-identifiers-1.1.3.tgz#9254c1d37bdac0ac2b52de4b6722792d2a91e30f" + integrity sha512-pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw== + dependencies: + acorn-node "^1.3.0" + dash-ast "^1.0.0" + get-assigned-identifiers "^1.2.0" + simple-concat "^1.0.0" + xtend "^4.0.1" unicode-canonical-property-names-ecmascript@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" + resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== unicode-match-property-ecmascript@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" + resolved "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== dependencies: unicode-canonical-property-names-ecmascript "^1.0.4" @@ -10589,12 +10682,12 @@ unicode-match-property-ecmascript@^1.0.4: unicode-match-property-value-ecmascript@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" + resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g== unicode-property-aliases-ecmascript@^1.0.4: version "1.0.5" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" + resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw== union-value@^1.0.0: @@ -10621,12 +10714,12 @@ unique-slug@^2.0.0: dependencies: imurmurhash "^0.1.4" -universal-user-agent@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-3.0.0.tgz#4cc88d68097bffd7ac42e3b7c903e7481424b4b9" - integrity sha512-T3siHThqoj5X0benA5H0qcDnrKGXzU8TKoX15x/tQHw1hQBvIEBHjxQ2klizYsqBOO/Q+WuxoQUihadeeqDnoA== +universal-user-agent@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-4.0.0.tgz#27da2ec87e32769619f68a14996465ea1cb9df16" + integrity sha512-eM8knLpev67iBDizr/YtqkJsF3GK8gzDc6st/WKzrTuPtcsOKW/0IdL4cnMBsU69pOx0otavLWBDGTwg+dB0aA== dependencies: - os-name "^3.0.0" + os-name "^3.1.0" universalify@^0.1.0: version "0.1.2" @@ -10635,7 +10728,7 @@ universalify@^0.1.0: unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= unset-value@^1.0.0: @@ -10647,9 +10740,9 @@ unset-value@^1.0.0: isobject "^3.0.0" upath@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.2.tgz#3db658600edaeeccbe6db5e684d67ee8c2acd068" - integrity sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q== + version "1.2.0" + resolved "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" + integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== uri-js@^4.2.2: version "4.2.2" @@ -10663,14 +10756,9 @@ urix@^0.1.0: resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= -url-template@^2.0.8: - version "2.0.8" - resolved "https://registry.npmjs.org/url-template/-/url-template-2.0.8.tgz#fc565a3cccbff7730c775f5641f9555791439f21" - integrity sha1-/FZaPMy/93MMd19WQflVV5FDnyE= - url@~0.11.0: version "0.11.0" - resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + resolved "https://registry.npmjs.org/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= dependencies: punycode "1.3.2" @@ -10678,7 +10766,7 @@ url@~0.11.0: urlgrey@^0.4.4: version "0.4.4" - resolved "https://registry.yarnpkg.com/urlgrey/-/urlgrey-0.4.4.tgz#892fe95960805e85519f1cd4389f2cb4cbb7652f" + resolved "https://registry.npmjs.org/urlgrey/-/urlgrey-0.4.4.tgz#892fe95960805e85519f1cd4389f2cb4cbb7652f" integrity sha1-iS/pWWCAXoVRnxzUOJ8stMu3ZS8= use@^3.1.0: @@ -10700,22 +10788,29 @@ util-promisify@^2.1.0: util.promisify@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" + resolved "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== dependencies: define-properties "^1.1.2" object.getownpropertydescriptors "^2.0.3" -util@0.10.3, util@~0.10.1: +util@0.10.3: version "0.10.3" - resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + resolved "https://registry.npmjs.org/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= dependencies: inherits "2.0.1" +util@~0.10.1: + version "0.10.4" + resolved "https://registry.npmjs.org/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" + integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== + dependencies: + inherits "2.0.3" + utils-merge@1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" + resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" integrity sha1-ApT7kiu5N1FTVBxPcJYjHyh8ivg= utils-merge@1.0.1: @@ -10730,7 +10825,7 @@ uuid@^3.0.1, uuid@^3.3.2: v8flags@^3.1.1: version "3.1.3" - resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.1.3.tgz#fc9dc23521ca20c5433f81cc4eb9b3033bb105d8" + resolved "https://registry.npmjs.org/v8flags/-/v8flags-3.1.3.tgz#fc9dc23521ca20c5433f81cc4eb9b3033bb105d8" integrity sha512-amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w== dependencies: homedir-polyfill "^1.0.1" @@ -10750,12 +10845,7 @@ validate-npm-package-name@^3.0.0: dependencies: builtins "^1.0.3" -vary@~1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" - integrity sha1-Z1Neu2lMHVIldFeYRmUyP1h+jTc= - -vary@~1.1.2: +vary@~1.1.0, vary@~1.1.2: version "1.1.2" resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= @@ -10771,45 +10861,55 @@ verror@1.10.0: vm-browserify@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.0.tgz#bd76d6a23323e2ca8ffa12028dc04559c75f9019" + resolved "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.0.tgz#bd76d6a23323e2ca8ffa12028dc04559c75f9019" integrity sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw== -vscode-jsonrpc@^3.3.0, vscode-jsonrpc@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/vscode-jsonrpc/-/vscode-jsonrpc-3.4.1.tgz#e2e0b9e121f71a2b5448058a34a3aef8376a5e91" +vscode-jsonrpc@3.5.0: + version "3.5.0" + resolved "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.5.0.tgz#87239d9e166b2d7352245b8a813597804c1d63aa" + integrity sha1-hyOdnhZrLXNSJFuKgTWXgEwdY6o= + +vscode-jsonrpc@^3.3.0: + version "3.6.2" + resolved "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.6.2.tgz#3b5eef691159a15556ecc500e9a8a0dd143470c8" + integrity sha512-T24Jb5V48e4VgYliUXMnZ379ItbrXgOimweKaJshD84z+8q7ZOZjJan0MeDe+Ugb+uqERDVV8SBmemaGMSMugA== -vscode-languageserver-protocol@^3.4.1: - version "3.4.4" - resolved "https://registry.yarnpkg.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.4.4.tgz#0387bb49bd0f805e9048c695997dbd430d6eca28" +vscode-languageserver-protocol@3.5.1: + version "3.5.1" + resolved "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.5.1.tgz#5144a3a9eeccbd83fe2745bd4ed75fad6cc45f0d" + integrity sha512-1fPDIwsAv1difCV+8daOrJEGunClNJWqnUHq/ncWrjhitKWXgGmRCjlwZ3gDUTt54yRcvXz1PXJDaRNvNH6pYA== dependencies: - vscode-jsonrpc "^3.4.1" - vscode-languageserver-types "^3.4.0" + vscode-jsonrpc "3.5.0" + vscode-languageserver-types "3.5.0" -vscode-languageserver-types@^3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.4.0.tgz#5043ae47ee4ac16af07bb3d0ca561235e0c0d2fa" +vscode-languageserver-types@3.5.0: + version "3.5.0" + resolved "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.5.0.tgz#e48d79962f0b8e02de955e3f524908e2b19c0374" + integrity sha1-5I15li8LjgLelV4/UkkI4rGcA3Q= vscode-languageserver@^3.3.0: - version "3.4.3" - resolved "https://registry.yarnpkg.com/vscode-languageserver/-/vscode-languageserver-3.4.3.tgz#83fea96bc5e094549a0a5ce3ef76b53d7ad40508" + version "3.5.1" + resolved "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-3.5.1.tgz#e0044b7df4d2447ce12632dfc98f1ab0afacbdff" + integrity sha512-RYUKn0DgHTFcS8kS4VaNCjNMaQXYqiXdN9bKrFjXzu5RPKfjIYcoh47oVWwZj4L3R/DPB0Se7HPaDatvYY2XgQ== dependencies: - vscode-languageserver-protocol "^3.4.1" + vscode-languageserver-protocol "3.5.1" vscode-uri "^1.0.1" vscode-uri@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-1.0.1.tgz#11a86befeac3c4aa3ec08623651a3c81a6d0bbc8" + version "1.0.8" + resolved "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.8.tgz#9769aaececae4026fb6e22359cb38946580ded59" + integrity sha512-obtSWTlbJ+a+TFRYGaUumtVwb+InIUVI0Lu0VBUAPmj2cU5JutEXg3xUE0c2J5Tcy7h2DEKVJBFi+Y9ZSFzzPQ== w3c-hr-time@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" + resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" integrity sha1-gqwr/2PZUOqeMYmlimViX+3xkEU= dependencies: browser-process-hrtime "^0.1.2" w3c-xmlserializer@^1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz#30485ca7d70a6fd052420a3d12fd90e6339ce794" + resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz#30485ca7d70a6fd052420a3d12fd90e6339ce794" integrity sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg== dependencies: domexception "^1.0.1" @@ -10818,19 +10918,19 @@ w3c-xmlserializer@^1.1.2: walker@^1.0.7, walker@~1.0.5: version "1.0.7" - resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" + resolved "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= dependencies: makeerror "1.0.x" watch@~0.10.0: version "0.10.0" - resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" + resolved "https://registry.npmjs.org/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" integrity sha1-d3mLLaD5kQ1ZXxrOWwwiWFIfIdw= watchify@3.11.1: version "3.11.1" - resolved "https://registry.yarnpkg.com/watchify/-/watchify-3.11.1.tgz#8e4665871fff1ef64c0430d1a2c9d084d9721881" + resolved "https://registry.npmjs.org/watchify/-/watchify-3.11.1.tgz#8e4665871fff1ef64c0430d1a2c9d084d9721881" integrity sha512-WwnUClyFNRMB2NIiHgJU9RQPQNqVeFk7OmZaWf5dC5EnNa0Mgr7imBydbaJ7tGTuPM2hz1Cb4uiBvK9NVxMfog== dependencies: anymatch "^2.0.0" @@ -10855,29 +10955,29 @@ webidl-conversions@^4.0.2: whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3, whatwg-encoding@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" + resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== dependencies: iconv-lite "0.4.24" whatwg-fetch@2.0.4: version "2.0.4" - resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" + resolved "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" integrity sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng== whatwg-fetch@>=0.10.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb" + resolved "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb" integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q== whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" + resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== whatwg-url@^6.4.1: version "6.5.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ== dependencies: lodash.sortby "^4.7.0" @@ -10895,21 +10995,22 @@ whatwg-url@^7.0.0: which-module@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" + resolved "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" + integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= which-module@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= -which@1, which@^1.2.9, which@^1.3.0, which@^1.3.1: +which@1, which@1.3.1, which@^1.2.9, which@^1.3.0, which@^1.3.1: version "1.3.1" resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== dependencies: isexe "^2.0.0" -wide-align@^1.1.0: +wide-align@1.1.3, wide-align@^1.1.0: version "1.1.3" resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== @@ -10930,7 +11031,8 @@ wordwrap@~0.0.2: wordwrap@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= wrap-ansi@^2.0.0: version "2.1.0" @@ -10940,6 +11042,15 @@ wrap-ansi@^2.0.0: string-width "^1.0.1" strip-ansi "^3.0.1" +wrap-ansi@^5.1.0: + version "5.1.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" + integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== + dependencies: + ansi-styles "^3.2.0" + string-width "^3.0.0" + strip-ansi "^5.0.0" + wrappy@1: version "1.0.2" resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" @@ -10947,7 +11058,7 @@ wrappy@1: write-file-atomic@2.4.1: version "2.4.1" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.1.tgz#d0b05463c188ae804396fd5ab2a370062af87529" + resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz#d0b05463c188ae804396fd5ab2a370062af87529" integrity sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg== dependencies: graceful-fs "^4.1.11" @@ -10997,54 +11108,51 @@ write-pkg@^3.1.0: write@1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" + resolved "https://registry.npmjs.org/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== dependencies: mkdirp "^0.5.1" ws@^5.2.0: version "5.2.2" - resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" + resolved "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA== dependencies: async-limiter "~1.0.0" ws@^6.1.2: version "6.2.1" - resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb" + resolved "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb" integrity sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA== dependencies: async-limiter "~1.0.0" xml-name-validator@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" + resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== -xmlchars@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-1.3.1.tgz#1dda035f833dbb4f86a0c28eaa6ca769214793cf" - integrity sha512-tGkGJkN8XqCod7OT+EvGYK5Z4SfDQGD30zAa58OcnAa0RRWgzUEK72tkXhsX1FZd+rgnhRxFtmO+ihkp8LHSkw== +xmlchars@^2.1.1: + version "2.2.0" + resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" + integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== -xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" +xtend@^4.0.0, xtend@^4.0.1, xtend@^4.0.2, xtend@~4.0.0, xtend@~4.0.1: + version "4.0.2" + resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== xtend@~2.1.1: version "2.1.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b" + resolved "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b" integrity sha1-bv7MKk2tjmlixJAbM3znuoe10os= dependencies: object-keys "~0.4.0" -xtend@~4.0.1: - version "4.0.2" - resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - y18n@^3.2.1: version "3.2.1" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + resolved "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= "y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: version "4.0.0" @@ -11056,24 +11164,21 @@ yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: resolved "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== -<<<<<<< HEAD +yargs-parser@10.x, yargs-parser@^10.0.0: + version "10.1.0" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" + integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ== + dependencies: + camelcase "^4.1.0" + yargs-parser@13.0.0: version "13.0.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.0.0.tgz#3fc44f3e76a8bdb1cc3602e860108602e5ccde8b" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.0.0.tgz#3fc44f3e76a8bdb1cc3602e860108602e5ccde8b" integrity sha512-w2LXjoL8oRdRQN+hOyppuXs+V/fVAYtpcrRxZuF7Kt/Oc+Jr2uAcVntaUTNT6w5ihoWfFDpNY8CPx1QskxZ/pw== dependencies: camelcase "^5.0.0" decamelize "^1.2.0" -yargs-parser@^10.0.0: - version "10.1.0" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" - integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ== - dependencies: - camelcase "^4.1.0" - -======= ->>>>>>> Convert GLS tests to jest, migrate graphiql tests from chai expect to jest expect yargs-parser@^11.1.1: version "11.1.1" resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" @@ -11082,15 +11187,50 @@ yargs-parser@^11.1.1: camelcase "^5.0.0" decamelize "^1.2.0" +yargs-parser@^13.0.0, yargs-parser@^13.1.1: + version "13.1.1" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" + integrity sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + yargs-parser@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" + integrity sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo= dependencies: camelcase "^3.0.0" -yargs@^12.0.1, yargs@^12.0.2: +yargs-unparser@1.5.0: + version "1.5.0" + resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.5.0.tgz#f2bb2a7e83cbc87bb95c8e572828a06c9add6e0d" + integrity sha512-HK25qidFTCVuj/D1VfNiEndpLIeJN78aqgR23nL3y4N0U/91cOAzqfHlF8n2BvoNDcZmJKin3ddNSvOxSr8flw== + dependencies: + flat "^4.1.0" + lodash "^4.17.11" + yargs "^12.0.5" + +yargs@13.2.2: + version "13.2.2" + resolved "https://registry.npmjs.org/yargs/-/yargs-13.2.2.tgz#0c101f580ae95cea7f39d927e7770e3fdc97f993" + integrity sha512-WyEoxgyTD3w5XRpAQNYUB9ycVH/PQrToaTXdYXRdOXvEy1l19br+VJsc0vcO8PTGg5ro/l/GY7F/JMEBmI0BxA== + dependencies: + cliui "^4.0.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + os-locale "^3.1.0" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^13.0.0" + +yargs@^12.0.1, yargs@^12.0.5: version "12.0.5" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" + resolved "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== dependencies: cliui "^4.0.0" @@ -11106,9 +11246,26 @@ yargs@^12.0.1, yargs@^12.0.2: y18n "^3.2.1 || ^4.0.0" yargs-parser "^11.1.1" +yargs@^13.3.0: + version "13.3.0" + resolved "https://registry.npmjs.org/yargs/-/yargs-13.3.0.tgz#4c657a55e07e5f2cf947f8a366567c04a0dedc83" + integrity sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA== + dependencies: + cliui "^5.0.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^13.1.1" + "yargs@^3.32.0 || ^7.0.0": version "7.1.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" + resolved "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" + integrity sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg= dependencies: camelcase "^3.0.0" cliui "^3.2.0" From f8b89ae2e7b459195dfd0a5131838e0181536d2d Mon Sep 17 00:00:00 2001 From: Nigel Schuster Date: Sat, 28 Sep 2019 11:01:47 -0500 Subject: [PATCH 3/9] chore: make eslint work with typescript --- .eslintrc.js | 47 ++++++++++------ package.json | 5 +- .../src/getHoverInformation.ts | 2 +- yarn.lock | 54 ++++++++++++++++++- 4 files changed, 90 insertions(+), 18 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 8f03aaa0004..7bf8f397e4c 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -261,21 +261,6 @@ module.exports = { 'dependencies/no-unresolved': 0, 'dependencies/require-json-ext': 1, - // flowtype (https://github.com/gajus/eslint-plugin-flowtype) - 'flowtype/boolean-style': 1, - 'flowtype/define-flow-type': 1, - 'flowtype/no-dupe-keys': 0, - 'flowtype/no-primitive-constructor-types': 1, - 'flowtype/no-weak-types': 0, - 'flowtype/require-parameter-type': 0, - 'flowtype/require-return-type': 0, - 'flowtype/require-valid-file-annotation': 0, - 'flowtype/require-variable-type': 0, - 'flowtype/sort-keys': 0, - 'flowtype/type-id-match': 0, - 'flowtype/use-flow-type': 1, - 'flowtype/valid-syntax': 0, - // prefer-object-spread (https://github.com/bryanrsmith/eslint-plugin-prefer-object-spread) 'prefer-object-spread/prefer-object-spread': 1, }, @@ -286,4 +271,36 @@ module.exports = { 'flowtype', 'prefer-object-spread', ], + + overrides: [ + // Rules for Flow only + { + files: ["*.js", "*.jsx"], + rules: { + // flowtype (https://github.com/gajus/eslint-plugin-flowtype) + 'flowtype/boolean-style': 1, + 'flowtype/define-flow-type': 1, + 'flowtype/no-dupe-keys': 0, + 'flowtype/no-primitive-constructor-types': 1, + 'flowtype/no-weak-types': 0, + 'flowtype/require-parameter-type': 0, + 'flowtype/require-return-type': 0, + 'flowtype/require-valid-file-annotation': 0, + 'flowtype/require-variable-type': 0, + 'flowtype/sort-keys': 0, + 'flowtype/type-id-match': 0, + 'flowtype/use-flow-type': 1, + 'flowtype/valid-syntax': 0, + }, + }, + + // Rules for TypeScript only + { + files: ["*.ts", "*.tsx"], + parser: "@typescript-eslint/parser", + rules: { + "no-unused-vars": "off", + }, + }, + ] }; diff --git a/package.json b/package.json index 8fd5fdac6fa..ef0eb880779 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "test": "yarn run lint && yarn run check && yarn run build && yarn run testonly", "testonly": "jest && lerna run test --scope codemirror-graphql", "t": "yarn run testonly", - "lint": "eslint packages/**/src || (printf '\\033[33mTry: \\033[7m yarn run lint -- --fix \\033[0m\\n' && exit 1)", + "lint": "eslint 'packages/**/src/**/*.{ts,js,jsx,tsx,json}' || (printf '\\033[33mTry: \\033[7m yarn run lint -- --fix \\033[0m\\n' && exit 1)", "lint:fix": "eslint 'packages/*/src/**/*.{ts,js,jsx,tsx,json}' --fix", "lint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check", "check": "flow check --show-all-errors", @@ -72,5 +72,8 @@ "prettier": "^1.18.2", "ts-jest": "^24.1.0", "typescript": "^3.6.3" + }, + "dependencies": { + "@typescript-eslint/parser": "^2.3.1" } } diff --git a/packages/graphql-language-service-interface/src/getHoverInformation.ts b/packages/graphql-language-service-interface/src/getHoverInformation.ts index 682be41fc14..cfb3e465aa7 100644 --- a/packages/graphql-language-service-interface/src/getHoverInformation.ts +++ b/packages/graphql-language-service-interface/src/getHoverInformation.ts @@ -202,7 +202,7 @@ function renderDeprecation( return; } - const reason = def['deprecationReason'] ? def.deprecationReason : null; + const reason = def.deprecationReason ? def.deprecationReason : null; if (!reason) { return; } diff --git a/yarn.lock b/yarn.lock index 1047dc7aea2..b51e145d3e8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1962,6 +1962,11 @@ dependencies: "@babel/types" "^7.3.0" +"@types/eslint-visitor-keys@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" + integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== + "@types/events@*": version "3.0.0" resolved "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" @@ -2008,6 +2013,11 @@ dependencies: "@types/jest-diff" "*" +"@types/json-schema@^7.0.3": + version "7.0.3" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.3.tgz#bdfd69d61e464dcc81b25159c270d75a73c1a636" + integrity sha512-Il2DtDVRGDcqjDtE+rF8iqg1CArehSK84HZJCT7AMITlyXRBpuPhqGLDQMowraqqu1coEaimg4ZOqggt6L6L+A== + "@types/minimatch@*": version "3.0.3" resolved "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" @@ -2045,6 +2055,35 @@ dependencies: "@types/yargs-parser" "*" +"@typescript-eslint/experimental-utils@2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.3.1.tgz#92f2531d3e7c22e64a2cc10cfe89935deaf00f7c" + integrity sha512-FaZEj73o4h6Wd0Lg+R4pZiJGdR0ZYbJr+O2+RbQ1aZjX8bZcfkVDtD+qm74Dv77rfSKkDKE64UTziLBo9UYHQA== + dependencies: + "@types/json-schema" "^7.0.3" + "@typescript-eslint/typescript-estree" "2.3.1" + eslint-scope "^5.0.0" + +"@typescript-eslint/parser@^2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.3.1.tgz#f2b93b614d9b338825c44e75552a433e2ebf8c33" + integrity sha512-ZlWdzhCJ2iZnSp/VBAJ/sowFbyHycIux8t0UEH0JsKgQvfSf7949hLYFMwTXdCMeEnpP1zRTHimrR+YHzs8LIw== + dependencies: + "@types/eslint-visitor-keys" "^1.0.0" + "@typescript-eslint/experimental-utils" "2.3.1" + "@typescript-eslint/typescript-estree" "2.3.1" + eslint-visitor-keys "^1.1.0" + +"@typescript-eslint/typescript-estree@2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.3.1.tgz#62c64f149948473d06a129dc33b4fc76e6c051f9" + integrity sha512-9SFhUgFuePJBB6jlLkOPPhMkZNiDCr+S8Ft7yAkkP2c5x5bxPhG3pe/exMiQaF8IGyVMDW6Ul0q4/cZ+uF3uog== + dependencies: + glob "^7.1.4" + is-glob "^4.0.1" + lodash.unescape "4.0.1" + semver "^6.3.0" + "@zkochan/cmd-shim@^3.1.0": version "3.1.0" resolved "https://registry.npmjs.org/@zkochan/cmd-shim/-/cmd-shim-3.1.0.tgz#2ab8ed81f5bb5452a85f25758eb9b8681982fd2e" @@ -4403,6 +4442,14 @@ eslint-scope@^4.0.3: esrecurse "^4.1.0" estraverse "^4.1.1" +eslint-scope@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.0.0.tgz#e87c8887c73e8d1ec84f1ca591645c358bfc8fb9" + integrity sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw== + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + eslint-utils@^1.3.1: version "1.4.2" resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.2.tgz#166a5180ef6ab7eb462f162fd0e6f2463d7309ab" @@ -4410,7 +4457,7 @@ eslint-utils@^1.3.1: dependencies: eslint-visitor-keys "^1.0.0" -eslint-visitor-keys@^1.0.0: +eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0: version "1.1.0" resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== @@ -7169,6 +7216,11 @@ lodash.templatesettings@^4.0.0: dependencies: lodash._reinterpolate "^3.0.0" +lodash.unescape@4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" + integrity sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw= + lodash.uniq@^4.5.0: version "4.5.0" resolved "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" From ffb6170590a3973e7b77167d6b56decbfad3aa7b Mon Sep 17 00:00:00 2001 From: Nigel Schuster Date: Mon, 30 Sep 2019 11:13:46 -0400 Subject: [PATCH 4/9] chore: add flowtypes for TS packages --- .../src/index.js.flow | 64 ++++ .../src/index.js.flow | 334 ++++++++++++++++++ .../src/index.js.flow | 29 ++ 3 files changed, 427 insertions(+) create mode 100644 packages/graphql-language-service-interface/src/index.js.flow create mode 100644 packages/graphql-language-service-types/src/index.js.flow create mode 100644 packages/graphql-language-service-utils/src/index.js.flow diff --git a/packages/graphql-language-service-interface/src/index.js.flow b/packages/graphql-language-service-interface/src/index.js.flow new file mode 100644 index 00000000000..fae1875ff4f --- /dev/null +++ b/packages/graphql-language-service-interface/src/index.js.flow @@ -0,0 +1,64 @@ +/** + * Copyright (c) 2019 GraphQL Contributors + * All rights reserved. + * + * This source code is licensed under the license found in the + * LICENSE file in the root directory of this source tree. + * + * @flow + */ + +import type { + Outline, + CustomValidationRule, + Diagnostic, + ContextToken, + Position, + DefinitionQueryResult, + Uri, + GraphQLCache, + CompletionItem, +} from 'graphql-language-service-types'; +import type { GraphQLSchema } from 'graphql'; +import type { Hover } from 'vscode-languageserver-types'; + +declare export function getOutline(queryText: string): ?Outline; +declare export function getDiagnostics( + query: string, + schema: ?GraphQLSchema, + customRules?: Array, + isRelayCompatMode?: boolean, +): Array; +declare export function getAutocompleteSuggestions( + schema: GraphQLSchema, + queryText: string, + cursor: Position, + contextToken?: ContextToken, +): Array; +declare export class GraphQLLanguageService { + constructor(cache: GraphQLCache): GraphQLLanguageService; + + getDefinition( + query: string, + position: Position, + filePath: Uri, + ): Promise; + + getDiagnostics( + query: string, + uri: Uri, + isRelayCompatMode?: boolean, + ): Promise>; + + getHoverInformation( + query: string, + position: Position, + filePath: Uri, + ): Promise; + + getAutocompleteSuggestions( + query: string, + position: Position, + filePath: Uri, + ): Promise>; +} diff --git a/packages/graphql-language-service-types/src/index.js.flow b/packages/graphql-language-service-types/src/index.js.flow new file mode 100644 index 00000000000..29d74483ad3 --- /dev/null +++ b/packages/graphql-language-service-types/src/index.js.flow @@ -0,0 +1,334 @@ +/** + * Copyright (c) 2019 GraphQL Contributors + * All rights reserved. + * + * This source code is licensed under the license found in the + * LICENSE file in the root directory of this source tree. + * + * @flow + */ + +import type { GraphQLSchema } from 'graphql'; +import type { + ASTNode, + DocumentNode, + FragmentDefinitionNode, + NamedTypeNode, + TypeDefinitionNode, +} from 'graphql/language'; +import type { ValidationContext } from 'graphql/validation'; +import type { + GraphQLArgument, + GraphQLEnumValue, + GraphQLField, + GraphQLInputField, + GraphQLType, +} from 'graphql/type/definition'; +import type { GraphQLDirective } from 'graphql/type/directives'; + +export type { GraphQLConfig, GraphQLProjectConfig } from 'graphql-config'; +import type { GraphQLConfig, GraphQLProjectConfig } from 'graphql-config'; + +export type TokenPattern = string | ((char: string) => boolean) | RegExp; + +export interface CharacterStream { + getStartOfToken: () => number; + getCurrentPosition: () => number; + eol: () => boolean; + sol: () => boolean; + peek: () => string | null; + next: () => string; + eat: (pattern: TokenPattern) => string | void; + eatWhile: (match: TokenPattern) => boolean; + eatSpace: () => boolean; + skipToEnd: () => void; + skipTo: (position: number) => void; + match: ( + pattern: TokenPattern, + consume: ?boolean, + caseFold: ?boolean, + ) => Array | boolean; + backUp: (num: number) => void; + column: () => number; + indentation: () => number; + current: () => string; +} + +// Cache and config-related. +export type GraphQLConfiguration = GraphQLProjectConfiguration & { + projects?: { + [projectName: string]: GraphQLProjectConfiguration, + }, +}; + +export type GraphQLProjectConfiguration = { + // The name for this project configuration. + // If not supplied, the object key can be used for the project name. + name?: string, + schemaPath?: string, // a file with schema IDL + + // For multiple applications with overlapping files, + // these configuration options may be helpful + includes?: Array, + excludes?: Array, + + // If you'd like to specify any other configurations, + // we provide a reserved namespace for it + extensions?: GraphQLConfigurationExtension, +}; + +export type GraphQLConfigurationExtension = { + [name: string]: mixed, +}; + +export interface GraphQLCache { + getGraphQLConfig: () => GraphQLConfig; + + getObjectTypeDependencies: ( + query: string, + fragmentDefinitions: ?Map, + ) => Promise>; + + getObjectTypeDependenciesForAST: ( + parsedQuery: ASTNode, + fragmentDefinitions: Map, + ) => Promise>; + + getObjectTypeDefinitions: ( + graphQLConfig: GraphQLProjectConfig, + ) => Promise>; + + +updateObjectTypeDefinition: ( + rootDir: Uri, + filePath: Uri, + contents: Array, + ) => Promise; + + +updateObjectTypeDefinitionCache: ( + rootDir: Uri, + filePath: Uri, + exists: boolean, + ) => Promise; + + getFragmentDependencies: ( + query: string, + fragmentDefinitions: ?Map, + ) => Promise>; + + getFragmentDependenciesForAST: ( + parsedQuery: ASTNode, + fragmentDefinitions: Map, + ) => Promise>; + + getFragmentDefinitions: ( + graphQLConfig: GraphQLProjectConfig, + ) => Promise>; + + +updateFragmentDefinition: ( + rootDir: Uri, + filePath: Uri, + contents: Array, + ) => Promise; + + +updateFragmentDefinitionCache: ( + rootDir: Uri, + filePath: Uri, + exists: boolean, + ) => Promise; + + getSchema: ( + appName: ?string, + queryHasExtensions?: ?boolean, + ) => Promise; + + handleWatchmanSubscribeEvent: ( + rootDir: string, + projectConfig: GraphQLProjectConfig, + ) => (result: Object) => void; +} + +// online-parser related +export interface Position { + line: number; + character: number; + lessThanOrEqualTo: (position: Position) => boolean; +} + +export interface Range { + start: Position; + end: Position; + containsPosition: (position: Position) => boolean; +} + +export type CachedContent = { + query: string, + range: ?Range, +}; + +export type ParseRule = + | ((token: Token, stream: CharacterStream) => ?string) + | Array; + +export type Token = { + kind: string, + value: string, +}; + +export type Rule = { + style?: string, + match?: (token: Token) => boolean, + update?: (state: State, token: Token) => void, + separator?: string | Rule, + isList?: boolean, + ofRule?: Rule | string, +}; + +export type State = { + level: number, + levels?: Array, + prevState: ?State, + rule: ?ParseRule, + kind: ?string, + name: ?string, + type: ?string, + step: number, + needsSeperator: boolean, + needsAdvance?: boolean, + indentLevel?: number, +}; + +// GraphQL Language Service related types +export type Uri = string; + +export type GraphQLFileMetadata = { + filePath: Uri, + size: number, + mtime: number, +}; + +export type GraphQLFileInfo = { + filePath: Uri, + content: string, + asts: Array, + size: number, + mtime: number, +}; + +export type ContextToken = { + start: number, + end: number, + string: string, + state: State, + style: string, +}; + +export type TypeInfo = { + type: ?GraphQLType, + parentType: ?GraphQLType, + inputType: ?GraphQLType, + directiveDef: ?GraphQLDirective, + fieldDef: ?GraphQLField<*, *>, + enumValue: ?GraphQLEnumValue, + argDef: ?GraphQLArgument, + argDefs: ?Array, + objectFieldDefs: ?GraphQLInputField, +}; + +export type FragmentInfo = { + filePath?: Uri, + content: string, + definition: FragmentDefinitionNode, +}; + +export type NamedTypeInfo = { + filePath?: Uri, + content: string, + definition: NamedTypeNode, +}; + +export type ObjectTypeInfo = { + filePath?: Uri, + content: string, + definition: TypeDefinitionNode, +}; + +export type CustomValidationRule = (context: ValidationContext) => Object; + +export type Diagnostic = { + range: Range, + severity?: number, + code?: number | string, + source?: string, + message: string, +}; + +export type CompletionItem = { + label: string, + kind?: number, + detail?: string, + documentation?: ?string, + // GraphQL Deprecation information + isDeprecated?: ?boolean, + deprecationReason?: ?string, +}; + +// Below are basically a copy-paste from Nuclide rpc types for definitions. + +// Definitions/hyperlink +export type Definition = { + path: Uri, + position: Position, + range?: Range, + id?: string, + name?: string, + language: string, + projectRoot?: Uri, +}; +export type DefinitionQueryResult = { + queryRange: Array, + definitions: Array, +}; + +// Outline view +export type TokenKind = + | 'keyword' + | 'class-name' + | 'constructor' + | 'method' + | 'param' + | 'string' + | 'whitespace' + | 'plain' + | 'type'; +export type TextToken = { + kind: TokenKind, + value: string, +}; +export type TokenizedText = Array; +export type OutlineTree = { + // Must be one or the other. If both are present, tokenizedText is preferred. + plainText?: string, + tokenizedText?: TokenizedText, + representativeName?: string, + + startPosition: Position, + endPosition?: Position, + children: Array, +}; +export type Outline = { + outlineTrees: Array, +}; + +export interface DidChangeWatchedFilesParams { + changes: FileEvent[]; +} +export interface FileEvent { + uri: string; + type: FileChangeType; +} +export const FileChangeTypeKind = { + Created: 1, + Changed: 2, + Deleted: 3, +}; +export type FileChangeType = $Values; diff --git a/packages/graphql-language-service-utils/src/index.js.flow b/packages/graphql-language-service-utils/src/index.js.flow new file mode 100644 index 00000000000..8142010c64a --- /dev/null +++ b/packages/graphql-language-service-utils/src/index.js.flow @@ -0,0 +1,29 @@ +/** + * Copyright (c) 2019 GraphQL Contributors + * All rights reserved. + * + * This source code is licensed under the license found in the + * LICENSE file in the root directory of this source tree. + * + * @flow + */ + +import type { Location } from 'graphql/language'; +import type { + Range as RangeInterface, + Position as PositionInterface, +} from 'graphql-language-service-types'; + +declare export function getASTNodeAtPosition(): void; +declare export class Position implements PositionInterface { + line: number; + character: number; + constructor(row: number, column: number): Position; + lessThanOrEqualTo: (position: PositionInterface) => boolean; +} +declare export class Range implements RangeInterface { + start: PositionInterface; + end: PositionInterface; + constructor(start: Position, end: Position): Range; + containsPosition: (position: PositionInterface) => boolean; +} From b5b8447df972cdfe61de70fb89e28c3f9abea12b Mon Sep 17 00:00:00 2001 From: Nigel Schuster Date: Mon, 30 Sep 2019 11:56:05 -0400 Subject: [PATCH 5/9] chore: ignore some TS errors in tests --- .../__tests__/GraphQLLanguageService-test.ts | 16 +++++++------ .../src/__tests__/getDefinition-test.ts | 6 ++++- .../src/__tests__/getOutline-test.ts | 23 +++++++++++++++++-- .../src/__tests__/Range-test.ts | 3 +++ .../__tests__/getASTNodeAtPosition-test.ts | 2 ++ .../__tests__/validateWithCustomRules-test.ts | 14 ++++++++--- 6 files changed, 51 insertions(+), 13 deletions(-) diff --git a/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.ts b/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.ts index a8afd0f14f2..a53668de40d 100644 --- a/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.ts +++ b/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.ts @@ -7,7 +7,7 @@ * */ - import { Position } from 'graphql-language-service-types' +import { Position } from 'graphql-language-service-types'; import { join } from 'path'; import * as fs from 'fs'; import { buildSchema } from 'graphql'; @@ -23,10 +23,13 @@ const MOCK_CONFIG = { describe('GraphQLLanguageService', () => { const mockCache: any = { getSchema() { - const schemaSDL = fs.readFileSync(join(__dirname, '__schema__/StarWarsSchema.graphql'), 'utf8'); + const schemaSDL = fs.readFileSync( + join(__dirname, '__schema__/StarWarsSchema.graphql'), + 'utf8', + ); const schemaJS = buildSchema(schemaSDL); - return new Promise((resolve, reject) => resolve(schemaJS)); + return new Promise((resolve, _reject) => resolve(schemaJS)); }, getGraphQLConfig() { @@ -84,17 +87,16 @@ describe('GraphQLLanguageService', () => { ); expect(diagnostics.length).toEqual(1); const diagnostic = diagnostics[0]; - expect(diagnostic.message).toEqual( - 'Syntax Error: Unexpected Name "qeury"', - ); + expect(diagnostic.message).toEqual('Syntax Error: Unexpected Name "qeury"'); }); it('runs definition service as expected', async () => { const definitionQueryResult = await languageService.getDefinition( 'type Query { hero(episode: Episode): Character }', - { line: 0, character: 28 }, + new Position(0, 28), './queries/definitionQuery.graphql', ); + // @ts-ignore expect(definitionQueryResult.definitions.length).toEqual(1); }); diff --git a/packages/graphql-language-service-interface/src/__tests__/getDefinition-test.ts b/packages/graphql-language-service-interface/src/__tests__/getDefinition-test.ts index 9b4c558c66c..707df067f74 100644 --- a/packages/graphql-language-service-interface/src/__tests__/getDefinition-test.ts +++ b/packages/graphql-language-service-interface/src/__tests__/getDefinition-test.ts @@ -19,12 +19,13 @@ describe('getDefinition', () => { const query = `type Query { hero(episode: Episode): Character } - + type Episode { id: ID! } `; const parsedQuery = parse(query); + // @ts-ignore const namedTypeDefinition = parsedQuery.definitions[0].fields[0].type; const result = await getDefinitionQueryResultForNamedType( @@ -35,6 +36,7 @@ describe('getDefinition', () => { [ { + // @ts-ignore file: 'someFile', content: query, definition: { @@ -58,6 +60,7 @@ describe('getDefinition', () => { fragment Duck on Duck { cuack }`; + // @ts-ignore const fragmentSpread = parse(query).definitions[0].selectionSet .selections[0]; const fragmentDefinition = parse(fragment).definitions[0]; @@ -68,6 +71,7 @@ describe('getDefinition', () => { { file: 'someFile', content: fragment, + // @ts-ignore definition: fragmentDefinition, }, ], diff --git a/packages/graphql-language-service-interface/src/__tests__/getOutline-test.ts b/packages/graphql-language-service-interface/src/__tests__/getOutline-test.ts index 331c6b7c8e2..a8da25c6907 100644 --- a/packages/graphql-language-service-interface/src/__tests__/getOutline-test.ts +++ b/packages/graphql-language-service-interface/src/__tests__/getOutline-test.ts @@ -14,38 +14,57 @@ describe('getOutline()', () => { const query = `query test { name }`; + // @ts-ignore const tree = getOutline(query).outlineTrees; expect(tree).not.toBeUndefined; expect(tree.length).toEqual(1); + // @ts-ignore expect(tree[0].startPosition.line).toEqual(0); + // @ts-ignore expect(tree[0].startPosition.character).toEqual(0); + // @ts-ignore expect(tree[0].endPosition.line).toEqual(2); + // @ts-ignore expect(tree[0].endPosition.character).toEqual(5); + // @ts-ignore expect(tree[0].representativeName).toEqual('test'); + // @ts-ignore expect(tree[0].tokenizedText.length).toEqual(3); + // @ts-ignore expect(tree[0].tokenizedText[0]).toEqual({ kind: 'keyword', value: 'query', }); + // @ts-ignore expect(tree[0].tokenizedText[1]).toEqual({ kind: 'whitespace', value: ' ', }); + // @ts-ignore expect(tree[0].tokenizedText[2]).toEqual({ kind: 'class-name', value: 'test', }); + // @ts-ignore expect(tree[0].children.length).toEqual(1); + // @ts-ignore expect(tree[0].children[0].children.length).toEqual(0); + // @ts-ignore expect(tree[0].children[0].startPosition.line).toEqual(1); + // @ts-ignore expect(tree[0].children[0].startPosition.character).toEqual(6); + // @ts-ignore expect(tree[0].children[0].endPosition.line).toEqual(1); + // @ts-ignore expect(tree[0].children[0].endPosition.character).toEqual(10); + // @ts-ignore expect(tree[0].children[0].representativeName).toEqual('name'); + // @ts-ignore expect(tree[0].children[0].tokenizedText.length).toEqual(1); + // @ts-ignore expect(tree[0].children[0].tokenizedText[0]).toEqual({ kind: 'plain', - value: 'name' }); - + value: 'name', + }); }); }); diff --git a/packages/graphql-language-service-utils/src/__tests__/Range-test.ts b/packages/graphql-language-service-utils/src/__tests__/Range-test.ts index 8a558859e30..2ddad623ea3 100644 --- a/packages/graphql-language-service-utils/src/__tests__/Range-test.ts +++ b/packages/graphql-language-service-utils/src/__tests__/Range-test.ts @@ -17,8 +17,11 @@ const text = `query test { const absRange: Location = { start: 15, end: 18, + // @ts-ignore startToken: null, + // @ts-ignore endToken: null, + // @ts-ignore source: null, }; // position of 'name' attribute in the test query diff --git a/packages/graphql-language-service-utils/src/__tests__/getASTNodeAtPosition-test.ts b/packages/graphql-language-service-utils/src/__tests__/getASTNodeAtPosition-test.ts index 1575fe051b5..10ca7b6f627 100644 --- a/packages/graphql-language-service-utils/src/__tests__/getASTNodeAtPosition-test.ts +++ b/packages/graphql-language-service-utils/src/__tests__/getASTNodeAtPosition-test.ts @@ -27,6 +27,7 @@ describe('getASTNodeAtPosition', () => { const node = getASTNodeAtPosition(doc, ast, point); expect(node).not.toBeUndefined; if (node != null) { + // @ts-ignore expect(node.name.value).toEqual('field'); } }); @@ -45,6 +46,7 @@ describe('getASTNodeAtPosition', () => { const node = getASTNodeAtPosition(doc, ast, point); expect(node).not.toBeUndefined; if (node != null) { + // @ts-ignore expect(node.name.value).toEqual('field'); } }); diff --git a/packages/graphql-language-service-utils/src/__tests__/validateWithCustomRules-test.ts b/packages/graphql-language-service-utils/src/__tests__/validateWithCustomRules-test.ts index 88a5ad9351d..4676bae5bc1 100644 --- a/packages/graphql-language-service-utils/src/__tests__/validateWithCustomRules-test.ts +++ b/packages/graphql-language-service-utils/src/__tests__/validateWithCustomRules-test.ts @@ -7,7 +7,14 @@ */ import { readFileSync } from 'fs'; -import { GraphQLError, buildSchema, parse, GraphQLSchema } from 'graphql'; +import { + GraphQLError, + buildSchema, + parse, + GraphQLSchema, + ValidationContext, + ArgumentNode, +} from 'graphql'; import { join } from 'path'; import { validateWithCustomRules } from '../validateWithCustomRules'; @@ -23,8 +30,9 @@ describe('validateWithCustomRules', () => { it('validates with custom rules defined', () => { const invalidAST = parse('query { human(id: "a") { name } }'); const customRules = [ - context => ({ - Argument(node) { + (context: ValidationContext) => ({ + Argument(node: ArgumentNode) { + // @ts-ignore if (!/^\d+$/.test(node.value.value)) { context.reportError( new GraphQLError( From da4619f4368779c59547e080633ee7551a1f6e2b Mon Sep 17 00:00:00 2001 From: Nigel Schuster Date: Wed, 2 Oct 2019 11:16:28 -0400 Subject: [PATCH 6/9] chore: fix failing tests --- .gitignore | 1 + package.json | 2 +- packages/graphiql/src/components/GraphiQL.js | 5 +- packages/graphiql/src/utility/QueryStore.js | 2 +- packages/graphiql/src/utility/commonKeys.js | 4 +- packages/graphiql/src/utility/find.js | 4 +- packages/graphiql/src/utility/mergeAst.js | 4 +- .../__tests__/GraphQLLanguageService-test.ts | 2 +- .../getAutocompleteSuggestions-test.ts | 365 +- .../src/__tests__/getDiagnostics-test.ts | 13 +- .../src/__tests__/getHoverInformation-test.ts | 5 +- .../src/getHoverInformation.ts | 4 +- .../tsconfig.tsbuildinfo | 3641 ----------------- .../tsconfig.tsbuildinfo | 3419 ---------------- .../src/__tests__/GraphQLCache-test.js | 42 +- .../tsconfig.tsbuildinfo | 3353 --------------- .../tsconfig.tsbuildinfo | 3412 --------------- 17 files changed, 235 insertions(+), 14043 deletions(-) delete mode 100644 packages/graphql-language-service-interface/tsconfig.tsbuildinfo delete mode 100644 packages/graphql-language-service-parser/tsconfig.tsbuildinfo delete mode 100644 packages/graphql-language-service-types/tsconfig.tsbuildinfo delete mode 100644 packages/graphql-language-service-utils/tsconfig.tsbuildinfo diff --git a/.gitignore b/.gitignore index f3035f58aca..0523505c6ce 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ dist node_modules/ npm-debug.log lerna-debug.log +**/tsconfig.tsbuildinfo diff --git a/package.json b/package.json index ef0eb880779..297d2bebfb6 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ } }, "scripts": { - "build": "lerna run build", + "build": "tsc --build && lerna run build", "test": "yarn run lint && yarn run check && yarn run build && yarn run testonly", "testonly": "jest && lerna run test --scope codemirror-graphql", "t": "yarn run testonly", diff --git a/packages/graphiql/src/components/GraphiQL.js b/packages/graphiql/src/components/GraphiQL.js index f26637e5289..8d8c11cf354 100644 --- a/packages/graphiql/src/components/GraphiQL.js +++ b/packages/graphiql/src/components/GraphiQL.js @@ -122,7 +122,10 @@ export class GraphiQL extends React.Component { } // initial variable editor pane open - const variableEditorOpen = props.defaultVariableEditorOpen !== undefined ? props.defaultVariableEditorOpen : Boolean(variables); + const variableEditorOpen = + props.defaultVariableEditorOpen !== undefined + ? props.defaultVariableEditorOpen + : Boolean(variables); // Initialize state this.state = { diff --git a/packages/graphiql/src/utility/QueryStore.js b/packages/graphiql/src/utility/QueryStore.js index c35f570acfe..18717aa9078 100644 --- a/packages/graphiql/src/utility/QueryStore.js +++ b/packages/graphiql/src/utility/QueryStore.js @@ -5,7 +5,7 @@ * LICENSE file in the root directory of this source tree. */ - export default class QueryStore { +export default class QueryStore { constructor(key, storage) { this.key = key; this.storage = storage; diff --git a/packages/graphiql/src/utility/commonKeys.js b/packages/graphiql/src/utility/commonKeys.js index 40b351266c4..4b2faed2c1e 100644 --- a/packages/graphiql/src/utility/commonKeys.js +++ b/packages/graphiql/src/utility/commonKeys.js @@ -1,7 +1,7 @@ -let isMacOs = false +let isMacOs = false; if (typeof window === 'object') { - isMacOs = window.navigator.platform === 'MacIntel'; + isMacOs = window.navigator.platform === 'MacIntel'; } const commonKeys = { diff --git a/packages/graphiql/src/utility/find.js b/packages/graphiql/src/utility/find.js index 3e7297a7c8c..3ec90f89627 100644 --- a/packages/graphiql/src/utility/find.js +++ b/packages/graphiql/src/utility/find.js @@ -3,9 +3,9 @@ * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - * + * * @flow - * + * */ export default function find( diff --git a/packages/graphiql/src/utility/mergeAst.js b/packages/graphiql/src/utility/mergeAst.js index 259492eb67a..9459f106f6f 100644 --- a/packages/graphiql/src/utility/mergeAst.js +++ b/packages/graphiql/src/utility/mergeAst.js @@ -38,12 +38,12 @@ export function mergeAst(queryAst) { return elem.kind === Kind.FRAGMENT_DEFINITION; }) .forEach(frag => { - const copyFragment = ({...frag}); + const copyFragment = { ...frag }; copyFragment.kind = Kind.INLINE_FRAGMENT; fragments[frag.name.value] = copyFragment; }); - const copyAst = ({...queryAst}); + const copyAst = { ...queryAst }; copyAst.definitions = queryAst.definitions .filter(elem => { return elem.kind !== Kind.FRAGMENT_DEFINITION; diff --git a/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.ts b/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.ts index a53668de40d..08c9083a94e 100644 --- a/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.ts +++ b/packages/graphql-language-service-interface/src/__tests__/GraphQLLanguageService-test.ts @@ -93,7 +93,7 @@ describe('GraphQLLanguageService', () => { it('runs definition service as expected', async () => { const definitionQueryResult = await languageService.getDefinition( 'type Query { hero(episode: Episode): Character }', - new Position(0, 28), + { line: 0, character: 28 } as Position, './queries/definitionQuery.graphql', ); // @ts-ignore diff --git a/packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.ts b/packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.ts index f6831528aa7..e920898e8ee 100644 --- a/packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.ts +++ b/packages/graphql-language-service-interface/src/__tests__/getAutocompleteSuggestions-test.ts @@ -20,153 +20,163 @@ describe('getAutocompleteSuggestions', () => { let schema: GraphQLSchema; beforeEach(async () => { const schemaIDL = fs.readFileSync( - path.join(__dirname, '__schema__/StarWarsSchema.graphql'), - 'utf8'); + path.join(__dirname, '__schema__/StarWarsSchema.graphql'), + 'utf8', + ); schema = buildSchema(schemaIDL); }); // Returns a soreted autocomplete suggestions in an increasing order. function testSuggestions( - query: string, - point: Position) - : Array { - return getAutocompleteSuggestions(schema, query, point). - filter( - field => !['__schema', '__type'].some(name => name === field.label)). - - sort((a, b) => a.label.localeCompare(b.label)). - map(suggestion => { - const response = { label: suggestion.label }; - if (suggestion.detail) { - Object.assign(response, { - detail: String(suggestion.detail) }); - - } - return response; - }); + query: string, + point: Position, + ): Array { + return getAutocompleteSuggestions(schema, query, point) + .filter( + field => !['__schema', '__type'].some(name => name === field.label), + ) + .sort((a, b) => a.label.localeCompare(b.label)) + .map(suggestion => { + const response = { label: suggestion.label }; + if (suggestion.detail) { + Object.assign(response, { + detail: String(suggestion.detail), + }); + } + return response; + }); } it('provides correct sortText response', () => { - const result = getAutocompleteSuggestions(schema, `{ h`, new Position(0, 3)). - map(({ sortText, label, detail }) => ({ sortText, label, detail })); - expect(result).toEqual([{ - sortText: '0hero', - label: 'hero', - detail: 'Character' }, - - { - sortText: '1human', - label: 'human', - detail: 'Human' }, - - { - sortText: '6__schema', - label: '__schema', - detail: '__Schema!' }]); - + const result = getAutocompleteSuggestions( + schema, + `{ h`, + new Position(0, 3), + ).map(({ sortText, label, detail }) => ({ sortText, label, detail })); + expect(result).toEqual([ + { + sortText: '0hero', + label: 'hero', + detail: 'Character', + }, + + { + sortText: '1human', + label: 'human', + detail: 'Human', + }, + + { + sortText: '6__schema', + label: '__schema', + detail: '__Schema!', + }, + ]); }); it('provides correct initial keywords', () => { expect(testSuggestions('', new Position(0, 0))).toEqual([ - { label: '{' }, - { label: 'fragment' }, - { label: 'mutation' }, - { label: 'query' }, - { label: 'subscription' }]); - + { label: '{' }, + { label: 'fragment' }, + { label: 'mutation' }, + { label: 'query' }, + { label: 'subscription' }, + ]); expect(testSuggestions('q', new Position(0, 1))).toEqual([ - { label: '{' }, - { label: 'query' }]); - + { label: '{' }, + { label: 'query' }, + ]); }); it('provides correct suggestions at where the cursor is', () => { // Below should provide initial keywords expect(testSuggestions(' {}', new Position(0, 0))).toEqual([ - { label: '{' }, - { label: 'fragment' }, - { label: 'mutation' }, - { label: 'query' }, - { label: 'subscription' }]); + { label: '{' }, + { label: 'fragment' }, + { label: 'mutation' }, + { label: 'query' }, + { label: 'subscription' }, + ]); // Below should provide root field names expect(testSuggestions(' {}', new Position(0, 2))).toEqual([ - { label: '__typename', detail: 'String!' }, - { label: 'droid', detail: 'Droid' }, - { label: 'hero', detail: 'Character' }, - { label: 'human', detail: 'Human' }, - { label: 'inputTypeTest', detail: 'TestType' }]); - + { label: '__typename', detail: 'String!' }, + { label: 'droid', detail: 'Droid' }, + { label: 'hero', detail: 'Character' }, + { label: 'human', detail: 'Human' }, + { label: 'inputTypeTest', detail: 'TestType' }, + ]); // Test for query text with empty lines expect( - testSuggestions( - ` + testSuggestions( + ` query name { ...testFragment } `, - new Position(2, 0))). - - toEqual([ - { label: '__typename', detail: 'String!' }, - { label: 'droid', detail: 'Droid' }, - { label: 'hero', detail: 'Character' }, - { label: 'human', detail: 'Human' }, - { label: 'inputTypeTest', detail: 'TestType' }]); - + new Position(2, 0), + ), + ).toEqual([ + { label: '__typename', detail: 'String!' }, + { label: 'droid', detail: 'Droid' }, + { label: 'hero', detail: 'Character' }, + { label: 'human', detail: 'Human' }, + { label: 'inputTypeTest', detail: 'TestType' }, + ]); }); it('provides correct field name suggestions', () => { const result = testSuggestions('{ ', new Position(0, 2)); expect(result).toEqual([ - { label: '__typename', detail: 'String!' }, - { label: 'droid', detail: 'Droid' }, - { label: 'hero', detail: 'Character' }, - { label: 'human', detail: 'Human' }, - { label: 'inputTypeTest', detail: 'TestType' }]); - + { label: '__typename', detail: 'String!' }, + { label: 'droid', detail: 'Droid' }, + { label: 'hero', detail: 'Character' }, + { label: 'human', detail: 'Human' }, + { label: 'inputTypeTest', detail: 'TestType' }, + ]); }); it('provides correct field name suggestions after filtered', () => { const result = testSuggestions('{ h ', new Position(0, 3)); expect(result).toEqual([ - { label: 'hero', detail: 'Character' }, - { label: 'human', detail: 'Human' }]); - + { label: 'hero', detail: 'Character' }, + { label: 'human', detail: 'Human' }, + ]); }); it('provides correct field name suggestions with alias', () => { const result = testSuggestions( - '{ alias: human(id: "1") { ', - new Position(0, 26)); - + '{ alias: human(id: "1") { ', + new Position(0, 26), + ); expect(result).toEqual([ - { label: '__typename', detail: 'String!' }, - { label: 'appearsIn', detail: '[Episode]' }, - { label: 'friends', detail: '[Character]' }, - { label: 'id', detail: 'String!' }, - { label: 'name', detail: 'String' }, - { label: 'secretBackstory', detail: 'String' }]); - + { label: '__typename', detail: 'String!' }, + { label: 'appearsIn', detail: '[Episode]' }, + { label: 'friends', detail: '[Character]' }, + { label: 'id', detail: 'String!' }, + { label: 'name', detail: 'String' }, + { label: 'secretBackstory', detail: 'String' }, + ]); }); it('provides correct field suggestions for fragments', () => { const result = testSuggestions( - 'fragment test on Human { ', - new Position(0, 25)); + 'fragment test on Human { ', + new Position(0, 25), + ); expect(result).toEqual([ - { label: '__typename', detail: 'String!' }, - { label: 'appearsIn', detail: '[Episode]' }, - { label: 'friends', detail: '[Character]' }, - { label: 'id', detail: 'String!' }, - { label: 'name', detail: 'String' }, - { label: 'secretBackstory', detail: 'String' }]); - + { label: '__typename', detail: 'String!' }, + { label: 'appearsIn', detail: '[Episode]' }, + { label: 'friends', detail: '[Character]' }, + { label: 'id', detail: 'String!' }, + { label: 'name', detail: 'String' }, + { label: 'secretBackstory', detail: 'String' }, + ]); }); it('provides correct argument suggestions', () => { @@ -182,51 +192,46 @@ query name { it('provides correct typeCondition suggestions', () => { const suggestionsOnQuery = testSuggestions('{ ... on ', new Position(0, 9)); expect( - suggestionsOnQuery.filter(({ label }) => !label.startsWith('__'))). - toEqual([{ label: 'Query' }]); + suggestionsOnQuery.filter(({ label }) => !label.startsWith('__')), + ).toEqual([{ label: 'Query' }]); const suggestionsOnCompositeType = testSuggestions( - '{ hero(episode: JEDI) { ... on } }', - new Position(0, 31)); + '{ hero(episode: JEDI) { ... on } }', + new Position(0, 31), + ); expect(suggestionsOnCompositeType).toEqual([ - { label: 'Character' }, - { label: 'Droid' }, - { label: 'Human' }]); - + { label: 'Character' }, + { label: 'Droid' }, + { label: 'Human' }, + ]); expect( - testSuggestions( - 'fragment Foo on Character { ... on }', - new Position(0, 35))). - - toEqual([ - { label: 'Character' }, - { label: 'Droid' }, - { label: 'Human' }]); - + testSuggestions( + 'fragment Foo on Character { ... on }', + new Position(0, 35), + ), + ).toEqual([{ label: 'Character' }, { label: 'Droid' }, { label: 'Human' }]); }); it('provides correct typeCondition suggestions on fragment', () => { const result = testSuggestions('fragment Foo on {}', new Position(0, 16)); - expect(result.filter(({ label }) => !label.startsWith('__'))).toEqual( - [ - { label: 'Character' }, - { label: 'Droid' }, - { label: 'Human' }, - { label: 'Query' }, - { label: 'TestType' }]); - - + expect(result.filter(({ label }) => !label.startsWith('__'))).toEqual([ + { label: 'Character' }, + { label: 'Droid' }, + { label: 'Human' }, + { label: 'Query' }, + { label: 'TestType' }, + ]); }); it('provides correct ENUM suggestions', () => { const result = testSuggestions('{ hero(episode: ', new Position(0, 16)); expect(result).toEqual([ - { label: 'EMPIRE', detail: 'Episode' }, - { label: 'JEDI', detail: 'Episode' }, - { label: 'NEWHOPE', detail: 'Episode' }]); - + { label: 'EMPIRE', detail: 'Episode' }, + { label: 'JEDI', detail: 'Episode' }, + { label: 'NEWHOPE', detail: 'Episode' }, + ]); }); it('provides fragment name suggestion', () => { @@ -234,88 +239,86 @@ query name { // Test on concrete types expect( - testSuggestions( - `${fragmentDef} query { human(id: "1") { ...`, - new Position(0, 57))). - - toEqual([{ label: 'Foo', detail: 'Human' }]); + testSuggestions( + `${fragmentDef} query { human(id: "1") { ...`, + new Position(0, 57), + ), + ).toEqual([{ label: 'Foo', detail: 'Human' }]); expect( - testSuggestions( - `query { human(id: "1") { ... }} ${fragmentDef}`, - new Position(0, 28))). - - toEqual([{ label: 'Foo', detail: 'Human' }]); + testSuggestions( + `query { human(id: "1") { ... }} ${fragmentDef}`, + new Position(0, 28), + ), + ).toEqual([{ label: 'Foo', detail: 'Human' }]); // Test on abstract type expect( - testSuggestions( - `${fragmentDef} query { hero(episode: JEDI) { ...`, - new Position(0, 62))). - - toEqual([{ label: 'Foo', detail: 'Human' }]); + testSuggestions( + `${fragmentDef} query { hero(episode: JEDI) { ...`, + new Position(0, 62), + ), + ).toEqual([{ label: 'Foo', detail: 'Human' }]); }); it('provides correct directive suggestions', () => { expect(testSuggestions('{ test @', new Position(0, 8))).toEqual([ - { label: 'include' }, - { label: 'skip' }, - { label: 'test' }]); + { label: 'include' }, + { label: 'skip' }, + { label: 'test' }, + ]); expect( - testSuggestions('{ aliasTest: test @ }', new Position(0, 19))). - toEqual([ - { label: 'include' }, - { label: 'skip' }, - { label: 'test' }]); + testSuggestions('{ aliasTest: test @ }', new Position(0, 19)), + ).toEqual([{ label: 'include' }, { label: 'skip' }, { label: 'test' }]); expect(testSuggestions('query @', new Position(0, 7))).toEqual([]); }); it('provides correct testInput suggestions', () => { expect( - testSuggestions('{ inputTypeTest(args: {', new Position(0, 23))). - toEqual([ - { label: 'key', detail: 'String!' }, - { label: 'value', detail: 'Int' }]); - + testSuggestions('{ inputTypeTest(args: {', new Position(0, 23)), + ).toEqual([ + { label: 'key', detail: 'String!' }, + { label: 'value', detail: 'Int' }, + ]); }); it('provides correct field name suggestion inside inline fragment', () => { expect( - testSuggestions( - 'fragment Foo on Character { ... on Human { }}', - new Position(0, 42))). - - toEqual([ - { label: '__typename', detail: 'String!' }, - { label: 'appearsIn', detail: '[Episode]' }, - { label: 'friends', detail: '[Character]' }, - { label: 'id', detail: 'String!' }, - { label: 'name', detail: 'String' }, - { label: 'secretBackstory', detail: 'String' }]); - + testSuggestions( + 'fragment Foo on Character { ... on Human { }}', + new Position(0, 42), + ), + ).toEqual([ + { label: '__typename', detail: 'String!' }, + { label: 'appearsIn', detail: '[Episode]' }, + { label: 'friends', detail: '[Character]' }, + { label: 'id', detail: 'String!' }, + { label: 'name', detail: 'String' }, + { label: 'secretBackstory', detail: 'String' }, + ]); // Typeless inline fragment assumes the type automatically expect( - testSuggestions('fragment Foo on Droid { ... { ', new Position(0, 30))). - toEqual([ - { label: '__typename', detail: 'String!' }, - { label: 'appearsIn', detail: '[Episode]' }, - { label: 'friends', detail: '[Character]' }, - { label: 'id', detail: 'String!' }, - { label: 'name', detail: 'String' }, - { label: 'primaryFunction', detail: 'String' }, - { label: 'secretBackstory', detail: 'String' }]); - + testSuggestions('fragment Foo on Droid { ... { ', new Position(0, 30)), + ).toEqual([ + { label: '__typename', detail: 'String!' }, + { label: 'appearsIn', detail: '[Episode]' }, + { label: 'friends', detail: '[Character]' }, + { label: 'id', detail: 'String!' }, + { label: 'name', detail: 'String' }, + { label: 'primaryFunction', detail: 'String' }, + { label: 'secretBackstory', detail: 'String' }, + ]); }); it('provides correct directive suggestions on definitions', () => - expect(testSuggestions('type Type @', new Position(0, 11))).toEqual([ - { label: 'onAllDefs' }])); - + expect(testSuggestions('type Type @', new Position(0, 11))).toEqual([ + { label: 'onAllDefs' }, + ])); it('provides correct directive suggestions on args definitions', () => - expect( - testSuggestions('type Type { field(arg: String @', new Position(0, 31))). - toEqual([{ label: 'onAllDefs' }, { label: 'onArg' }])); + expect( + testSuggestions('type Type { field(arg: String @', new Position(0, 31)), + ).toEqual([{ label: 'onAllDefs' }, { label: 'onArg' }])); }); diff --git a/packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts b/packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts index 38b18b79dc8..4d4fb52f757 100644 --- a/packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts +++ b/packages/graphql-language-service-interface/src/__tests__/getDiagnostics-test.ts @@ -18,8 +18,9 @@ describe('getDiagnostics', () => { let schema: GraphQLSchema; beforeEach(async () => { const schemaIDL = fs.readFileSync( - path.join(__dirname, '__schema__/StarWarsSchema.graphql'), - 'utf8'); + path.join(__dirname, '__schema__/StarWarsSchema.graphql'), + 'utf8', + ); schema = buildSchema(schemaIDL); }); @@ -60,7 +61,7 @@ describe('getDiagnostics', () => { it('catches a syntax error in the SDL', () => { const errors = getDiagnostics( - ` + ` type Human implements Character { field_without_type_is_a_syntax_error id: String! @@ -79,9 +80,9 @@ describe('getDiagnostics', () => { // and then run diagnostics with the schema it('returns no errors after parsing kitchen-sink query', () => { const kitchenSink = fs.readFileSync( - path.join(__dirname, '/kitchen-sink.graphql'), - 'utf8'); - + path.join(__dirname, '/kitchen-sink.graphql'), + 'utf8', + ); const errors = getDiagnostics(kitchenSink); expect(errors).toHaveLength(0); diff --git a/packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts b/packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts index 85ea75ca804..99506bc7a20 100644 --- a/packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts +++ b/packages/graphql-language-service-interface/src/__tests__/getHoverInformation-test.ts @@ -21,8 +21,9 @@ describe('getHoverInformation', () => { let schema: GraphQLSchema; beforeEach(async () => { const schemaIDL = fs.readFileSync( - path.join(__dirname, '__schema__/HoverTestSchema.graphql'), - 'utf8'); + path.join(__dirname, '__schema__/HoverTestSchema.graphql'), + 'utf8', + ); schema = buildSchema(schemaIDL); }); diff --git a/packages/graphql-language-service-interface/src/getHoverInformation.ts b/packages/graphql-language-service-interface/src/getHoverInformation.ts index cfb3e465aa7..c748ff455bc 100644 --- a/packages/graphql-language-service-interface/src/getHoverInformation.ts +++ b/packages/graphql-language-service-interface/src/getHoverInformation.ts @@ -20,9 +20,9 @@ import { GraphQLField, GraphQLFieldConfig, } from 'graphql'; -import { ContextToken, AllTypeInfo } from 'graphql-language-service-types'; +import { ContextToken, AllTypeInfo, Position } from 'graphql-language-service-types'; -import { Hover, Position } from 'vscode-languageserver-types'; +import { Hover } from 'vscode-languageserver-types'; import { getTokenAtPosition, getTypeInfo } from './getAutocompleteSuggestions'; export function getHoverInformation( diff --git a/packages/graphql-language-service-interface/tsconfig.tsbuildinfo b/packages/graphql-language-service-interface/tsconfig.tsbuildinfo deleted file mode 100644 index 80376425b8c..00000000000 --- a/packages/graphql-language-service-interface/tsconfig.tsbuildinfo +++ /dev/null @@ -1,3641 +0,0 @@ -{ - "program": { - "fileInfos": { - "../../node_modules/typescript/lib/lib.es5.d.ts": { - "version": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1", - "signature": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1" - }, - "../../node_modules/typescript/lib/lib.es2015.d.ts": { - "version": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96", - "signature": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96" - }, - "../../node_modules/typescript/lib/lib.es2016.d.ts": { - "version": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1", - "signature": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1" - }, - "../../node_modules/typescript/lib/lib.es2017.d.ts": { - "version": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743", - "signature": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743" - }, - "../../node_modules/typescript/lib/lib.es2018.d.ts": { - "version": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091", - "signature": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091" - }, - "../../node_modules/typescript/lib/lib.dom.d.ts": { - "version": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f", - "signature": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f" - }, - "../../node_modules/typescript/lib/lib.es2015.core.d.ts": { - "version": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f", - "signature": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f" - }, - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": { - "version": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0", - "signature": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0" - }, - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": { - "version": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122", - "signature": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122" - }, - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": { - "version": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210", - "signature": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210" - }, - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": { - "version": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2", - "signature": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2" - }, - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": { - "version": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe", - "signature": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe" - }, - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": { - "version": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976", - "signature": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976" - }, - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": { - "version": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230", - "signature": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230" - }, - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": { - "version": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303", - "signature": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303" - }, - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": { - "version": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0", - "signature": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0" - }, - "../../node_modules/typescript/lib/lib.es2017.object.d.ts": { - "version": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4", - "signature": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4" - }, - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": { - "version": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f", - "signature": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f" - }, - "../../node_modules/typescript/lib/lib.es2017.string.d.ts": { - "version": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c", - "signature": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c" - }, - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": { - "version": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6", - "signature": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6" - }, - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": { - "version": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46", - "signature": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46" - }, - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": { - "version": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0", - "signature": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0" - }, - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": { - "version": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10", - "signature": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10" - }, - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": { - "version": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0", - "signature": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0" - }, - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": { - "version": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62", - "signature": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62" - }, - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": { - "version": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8", - "signature": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8" - }, - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": { - "version": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8", - "signature": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8" - }, - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": { - "version": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8", - "signature": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8" - }, - "../../node_modules/graphql/version.d.ts": { - "version": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2", - "signature": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2" - }, - "../../node_modules/graphql/tsutils/Maybe.d.ts": { - "version": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392", - "signature": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392" - }, - "../../node_modules/graphql/language/source.d.ts": { - "version": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd", - "signature": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd" - }, - "../../node_modules/graphql/language/tokenKind.d.ts": { - "version": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78", - "signature": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78" - }, - "../../node_modules/graphql/language/ast.d.ts": { - "version": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937", - "signature": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937" - }, - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": { - "version": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717", - "signature": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717" - }, - "../../node_modules/graphql/jsutils/Path.d.ts": { - "version": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b", - "signature": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b" - }, - "../../node_modules/graphql/type/definition.d.ts": { - "version": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7", - "signature": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7" - }, - "../../node_modules/graphql/language/directiveLocation.d.ts": { - "version": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b", - "signature": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b" - }, - "../../node_modules/graphql/type/directives.d.ts": { - "version": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d", - "signature": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d" - }, - "../../node_modules/graphql/type/schema.d.ts": { - "version": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491", - "signature": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491" - }, - "../../node_modules/graphql/language/location.d.ts": { - "version": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160", - "signature": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160" - }, - "../../node_modules/graphql/error/GraphQLError.d.ts": { - "version": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b", - "signature": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b" - }, - "../../node_modules/graphql/error/locatedError.d.ts": { - "version": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb", - "signature": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb" - }, - "../../node_modules/graphql/execution/execute.d.ts": { - "version": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4", - "signature": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4" - }, - "../../node_modules/graphql/graphql.d.ts": { - "version": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca", - "signature": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca" - }, - "../../node_modules/graphql/type/scalars.d.ts": { - "version": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11", - "signature": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11" - }, - "../../node_modules/graphql/type/introspection.d.ts": { - "version": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870", - "signature": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870" - }, - "../../node_modules/graphql/type/validate.d.ts": { - "version": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30", - "signature": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30" - }, - "../../node_modules/graphql/type/index.d.ts": { - "version": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62", - "signature": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62" - }, - "../../node_modules/graphql/language/printLocation.d.ts": { - "version": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1", - "signature": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1" - }, - "../../node_modules/graphql/language/kinds.d.ts": { - "version": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293", - "signature": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293" - }, - "../../node_modules/graphql/error/syntaxError.d.ts": { - "version": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b", - "signature": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b" - }, - "../../node_modules/graphql/error/formatError.d.ts": { - "version": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23", - "signature": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23" - }, - "../../node_modules/graphql/error/index.d.ts": { - "version": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0", - "signature": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0" - }, - "../../node_modules/graphql/language/lexer.d.ts": { - "version": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023", - "signature": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023" - }, - "../../node_modules/graphql/language/parser.d.ts": { - "version": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e", - "signature": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e" - }, - "../../node_modules/graphql/language/printer.d.ts": { - "version": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41", - "signature": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41" - }, - "../../node_modules/graphql/utilities/TypeInfo.d.ts": { - "version": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4", - "signature": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4" - }, - "../../node_modules/graphql/language/visitor.d.ts": { - "version": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9", - "signature": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9" - }, - "../../node_modules/graphql/language/predicates.d.ts": { - "version": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271", - "signature": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271" - }, - "../../node_modules/graphql/language/index.d.ts": { - "version": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420", - "signature": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420" - }, - "../../node_modules/graphql/execution/values.d.ts": { - "version": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5", - "signature": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5" - }, - "../../node_modules/graphql/execution/index.d.ts": { - "version": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24", - "signature": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24" - }, - "../../node_modules/graphql/subscription/subscribe.d.ts": { - "version": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22", - "signature": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22" - }, - "../../node_modules/graphql/subscription/index.d.ts": { - "version": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3", - "signature": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3" - }, - "../../node_modules/graphql/validation/ValidationContext.d.ts": { - "version": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14", - "signature": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14" - }, - "../../node_modules/graphql/validation/validate.d.ts": { - "version": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95", - "signature": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95" - }, - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": { - "version": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163", - "signature": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163" - }, - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": { - "version": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152", - "signature": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152" - }, - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": { - "version": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb", - "signature": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb" - }, - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": { - "version": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e", - "signature": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e" - }, - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": { - "version": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6", - "signature": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6" - }, - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": { - "version": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9", - "signature": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9" - }, - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": { - "version": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9", - "signature": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9" - }, - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": { - "version": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5", - "signature": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5" - }, - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": { - "version": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae", - "signature": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae" - }, - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": { - "version": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a", - "signature": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a" - }, - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": { - "version": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f", - "signature": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f" - }, - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": { - "version": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222", - "signature": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222" - }, - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": { - "version": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce", - "signature": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce" - }, - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": { - "version": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294", - "signature": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294" - }, - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": { - "version": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc", - "signature": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc" - }, - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": { - "version": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f", - "signature": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f" - }, - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": { - "version": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014", - "signature": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014" - }, - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": { - "version": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae", - "signature": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae" - }, - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": { - "version": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5", - "signature": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5" - }, - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": { - "version": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73", - "signature": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73" - }, - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": { - "version": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c", - "signature": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c" - }, - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": { - "version": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b", - "signature": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b" - }, - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": { - "version": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1", - "signature": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1" - }, - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": { - "version": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2", - "signature": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2" - }, - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": { - "version": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8", - "signature": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8" - }, - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": { - "version": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c", - "signature": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c" - }, - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": { - "version": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e", - "signature": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e" - }, - "../../node_modules/graphql/validation/specifiedRules.d.ts": { - "version": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d", - "signature": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d" - }, - "../../node_modules/graphql/validation/index.d.ts": { - "version": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423", - "signature": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423" - }, - "../../node_modules/graphql/utilities/introspectionQuery.d.ts": { - "version": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597", - "signature": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597" - }, - "../../node_modules/graphql/utilities/getOperationAST.d.ts": { - "version": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8", - "signature": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8" - }, - "../../node_modules/graphql/utilities/getOperationRootType.d.ts": { - "version": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc", - "signature": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc" - }, - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": { - "version": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d", - "signature": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d" - }, - "../../node_modules/graphql/utilities/buildClientSchema.d.ts": { - "version": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820", - "signature": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820" - }, - "../../node_modules/graphql/language/blockString.d.ts": { - "version": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86", - "signature": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86" - }, - "../../node_modules/graphql/utilities/buildASTSchema.d.ts": { - "version": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7", - "signature": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7" - }, - "../../node_modules/graphql/utilities/extendSchema.d.ts": { - "version": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b", - "signature": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b" - }, - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": { - "version": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896", - "signature": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896" - }, - "../../node_modules/graphql/utilities/schemaPrinter.d.ts": { - "version": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff", - "signature": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff" - }, - "../../node_modules/graphql/utilities/typeFromAST.d.ts": { - "version": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922", - "signature": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922" - }, - "../../node_modules/graphql/utilities/valueFromAST.d.ts": { - "version": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b", - "signature": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b" - }, - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": { - "version": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf", - "signature": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf" - }, - "../../node_modules/graphql/utilities/astFromValue.d.ts": { - "version": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae", - "signature": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae" - }, - "../../node_modules/graphql/utilities/coerceInputValue.d.ts": { - "version": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5", - "signature": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5" - }, - "../../node_modules/graphql/utilities/coerceValue.d.ts": { - "version": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197", - "signature": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197" - }, - "../../node_modules/graphql/utilities/isValidJSValue.d.ts": { - "version": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f", - "signature": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f" - }, - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": { - "version": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8", - "signature": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8" - }, - "../../node_modules/graphql/utilities/concatAST.d.ts": { - "version": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9", - "signature": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9" - }, - "../../node_modules/graphql/utilities/separateOperations.d.ts": { - "version": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a", - "signature": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a" - }, - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": { - "version": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c", - "signature": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c" - }, - "../../node_modules/graphql/utilities/typeComparators.d.ts": { - "version": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454", - "signature": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454" - }, - "../../node_modules/graphql/utilities/assertValidName.d.ts": { - "version": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5", - "signature": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5" - }, - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": { - "version": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a", - "signature": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a" - }, - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": { - "version": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b", - "signature": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b" - }, - "../../node_modules/graphql/utilities/index.d.ts": { - "version": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e", - "signature": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e" - }, - "../../node_modules/graphql/index.d.ts": { - "version": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6", - "signature": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6" - }, - "../../node_modules/graphql-request/dist/src/types.d.ts": { - "version": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4", - "signature": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4" - }, - "../../node_modules/graphql-request/dist/src/index.d.ts": { - "version": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786", - "signature": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786" - }, - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": { - "version": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a", - "signature": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a" - }, - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": { - "version": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc", - "signature": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc" - }, - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": { - "version": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644", - "signature": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644" - }, - "../../node_modules/graphql-config/lib/extensions/index.d.ts": { - "version": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41", - "signature": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41" - }, - "../../node_modules/graphql-config/lib/types.d.ts": { - "version": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6", - "signature": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6" - }, - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": { - "version": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca", - "signature": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca" - }, - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": { - "version": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf", - "signature": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf" - }, - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": { - "version": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca", - "signature": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca" - }, - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": { - "version": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411", - "signature": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411" - }, - "../../node_modules/graphql-config/lib/utils.d.ts": { - "version": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4", - "signature": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4" - }, - "../../node_modules/graphql-config/lib/errors.d.ts": { - "version": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9", - "signature": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9" - }, - "../../node_modules/graphql-config/lib/index.d.ts": { - "version": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4", - "signature": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4" - }, - "../graphql-language-service-types/src/index.ts": { - "version": "0eccbb489f441658fcd2acfe7811403eed555060b86fcf4683ef1ee34245ccc6" - }, - "../graphql-language-service-utils/src/Range.ts": { - "version": "58926b36007f993a2e6adb291d57f992bccd60f9b934bcb4dda254e6937a3e36" - }, - "../graphql-language-service-utils/src/getASTNodeAtPosition.ts": { - "version": "7495e8a9bd7eb6c386230570388eec0c6cf64779d2f52219a2c09a41e5db2e2a" - }, - "../graphql-language-service-utils/src/validateWithCustomRules.ts": { - "version": "59c17d228f43716a438348d3dfd2085ecc1393c481d9ed38d2ffed7867516a9b" - }, - "../graphql-language-service-utils/src/index.ts": { - "version": "b40b3ad0dc655bbc0f033315f9b1ab4a543f148759f82f18675b9cc5001e6b20" - }, - "../../node_modules/vscode-languageserver-types/lib/main.d.ts": { - "version": "8f3891a98196fd9653045a665ec2844148bff0a4f82a7ae53a5db591ed3c2efe", - "signature": "8f3891a98196fd9653045a665ec2844148bff0a4f82a7ae53a5db591ed3c2efe" - }, - "../graphql-language-service-parser/dist/CharacterStream.d.ts": { - "version": "1c504c5689ed0400b6c48b94721fb023f5b94813f1a6d99cdfcd4df867e880fe", - "signature": "1c504c5689ed0400b6c48b94721fb023f5b94813f1a6d99cdfcd4df867e880fe" - }, - "../graphql-language-service-parser/dist/Rules.d.ts": { - "version": "3c44f8e6343510059f4c2d062ed8637e58444333301022877ac49c635b76cc2f", - "signature": "3c44f8e6343510059f4c2d062ed8637e58444333301022877ac49c635b76cc2f" - }, - "../graphql-language-service-parser/dist/RuleHelpers.d.ts": { - "version": "5a3c9d7eac0cfa3b5308c6360d274fd3c2fd5d97bde42ba627088f064c54d677", - "signature": "5a3c9d7eac0cfa3b5308c6360d274fd3c2fd5d97bde42ba627088f064c54d677" - }, - "../graphql-language-service-parser/dist/onlineParser.d.ts": { - "version": "fe4a9dab6a32ebb38be6c09919fa8f547ec045d4071c43eeac4c59d9b9b42921", - "signature": "fe4a9dab6a32ebb38be6c09919fa8f547ec045d4071c43eeac4c59d9b9b42921" - }, - "../graphql-language-service-parser/dist/index.d.ts": { - "version": "86f0afb0728c90e507a529bfa6a4653a01bfba0ed816633e2557e104fffb6f31", - "signature": "86f0afb0728c90e507a529bfa6a4653a01bfba0ed816633e2557e104fffb6f31" - }, - "./src/autocompleteUtils.ts": { - "version": "6b3414ec7b09ac5ad26f94eaa3f857e410f8ad19d909c6c3401c83ae0efd4b17", - "signature": "e3da19e7c243a172a65646bf752c0cf6d3aae7f60e072c3fc1f09d9782a13bd5" - }, - "./src/getAutocompleteSuggestions.ts": { - "version": "519221b49ea0ad062cf98e296c736ec651468c3470e1691028284d3a30667e91", - "signature": "af6f81d61b06aca0235c739de229190e6842db1a49e10e185c78e3732dcfc103" - }, - "./src/getHoverInformation.ts": { - "version": "9a397a39bf5209427db4720ad24fc12864ad78f8089c52791dbd3d3df6cb7553", - "signature": "7031b1faec37c49ceb9d8c0cc06af6daf4a63df71785b61817da884f9ffbe5cf" - }, - "./src/getDiagnostics.ts": { - "version": "18a3a400eaf538c24c4013e72c71a3a75cea0382e4aaad55b43ae5e1419d9fd8", - "signature": "5b9d612bbf622f401a50b7295b87aeb70a237d339723cd823d3fe5a31cd219f3" - }, - "./src/getDefinition.ts": { - "version": "0053a97cba5101c37c341ac0321d5dcd47b4d90634bb917ead7ddd69e2fd7d8a", - "signature": "e065485e923ed3a2ce70b3ac4492137332332a4d81487a1f414a81471baf0ea9" - }, - "./src/GraphQLLanguageService.ts": { - "version": "fcae8d5a52bce41436cc5ff53b9f993e8ca3f0d141572a807e9fb741ca573078", - "signature": "c67999641cc9cd334fccd42bf191d9b3f74daf6ca32fba3a976a9a11f7025a3f" - }, - "./src/getOutline.ts": { - "version": "bc3235e5303230fbd4f8bec73ba9db67c9cdb82f92fe89224306ade2bf06076a", - "signature": "58e3f86e77d7495cba9cdcb1f17a21ad2fa2a18226b57effd9c24ce7dc84955b" - }, - "./src/index.ts": { - "version": "4b529b65968befc3704ca2872e843591d5d5ec0a16a9a808be5f15f3bdb6eca7", - "signature": "ae569044b7a4c89ee68a89c8c35ae8dd1d1bd6548145570415364c2644a4a44b" - }, - "../../node_modules/@types/node/globals.d.ts": { - "version": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed", - "signature": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed" - }, - "../../node_modules/@types/node/assert.d.ts": { - "version": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f", - "signature": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f" - }, - "../../node_modules/@types/node/async_hooks.d.ts": { - "version": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561", - "signature": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561" - }, - "../../node_modules/@types/node/buffer.d.ts": { - "version": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878", - "signature": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878" - }, - "../../node_modules/@types/events/index.d.ts": { - "version": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935", - "signature": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935" - }, - "../../node_modules/@types/node/child_process.d.ts": { - "version": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003", - "signature": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003" - }, - "../../node_modules/@types/node/cluster.d.ts": { - "version": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a", - "signature": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a" - }, - "../../node_modules/@types/node/console.d.ts": { - "version": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d", - "signature": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d" - }, - "../../node_modules/@types/node/constants.d.ts": { - "version": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424", - "signature": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424" - }, - "../../node_modules/@types/node/crypto.d.ts": { - "version": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b", - "signature": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b" - }, - "../../node_modules/@types/node/dgram.d.ts": { - "version": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30", - "signature": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30" - }, - "../../node_modules/@types/node/dns.d.ts": { - "version": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c", - "signature": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c" - }, - "../../node_modules/@types/node/domain.d.ts": { - "version": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa", - "signature": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa" - }, - "../../node_modules/@types/node/events.d.ts": { - "version": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c", - "signature": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c" - }, - "../../node_modules/@types/node/fs.d.ts": { - "version": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882", - "signature": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882" - }, - "../../node_modules/@types/node/http.d.ts": { - "version": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36", - "signature": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36" - }, - "../../node_modules/@types/node/http2.d.ts": { - "version": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d", - "signature": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d" - }, - "../../node_modules/@types/node/https.d.ts": { - "version": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6", - "signature": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6" - }, - "../../node_modules/@types/node/inspector.d.ts": { - "version": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c", - "signature": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c" - }, - "../../node_modules/@types/node/module.d.ts": { - "version": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66", - "signature": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66" - }, - "../../node_modules/@types/node/net.d.ts": { - "version": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4", - "signature": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4" - }, - "../../node_modules/@types/node/os.d.ts": { - "version": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486", - "signature": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486" - }, - "../../node_modules/@types/node/path.d.ts": { - "version": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36", - "signature": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36" - }, - "../../node_modules/@types/node/perf_hooks.d.ts": { - "version": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f", - "signature": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f" - }, - "../../node_modules/@types/node/process.d.ts": { - "version": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389", - "signature": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389" - }, - "../../node_modules/@types/node/punycode.d.ts": { - "version": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1", - "signature": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1" - }, - "../../node_modules/@types/node/querystring.d.ts": { - "version": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e", - "signature": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e" - }, - "../../node_modules/@types/node/readline.d.ts": { - "version": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24", - "signature": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24" - }, - "../../node_modules/@types/node/repl.d.ts": { - "version": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157", - "signature": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157" - }, - "../../node_modules/@types/node/stream.d.ts": { - "version": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd", - "signature": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd" - }, - "../../node_modules/@types/node/string_decoder.d.ts": { - "version": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432", - "signature": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432" - }, - "../../node_modules/@types/node/timers.d.ts": { - "version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9", - "signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9" - }, - "../../node_modules/@types/node/tls.d.ts": { - "version": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a", - "signature": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a" - }, - "../../node_modules/@types/node/trace_events.d.ts": { - "version": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662", - "signature": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662" - }, - "../../node_modules/@types/node/tty.d.ts": { - "version": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007", - "signature": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007" - }, - "../../node_modules/@types/node/url.d.ts": { - "version": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7", - "signature": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7" - }, - "../../node_modules/@types/node/util.d.ts": { - "version": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12", - "signature": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12" - }, - "../../node_modules/@types/node/v8.d.ts": { - "version": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725", - "signature": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725" - }, - "../../node_modules/@types/node/vm.d.ts": { - "version": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562", - "signature": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562" - }, - "../../node_modules/@types/node/worker_threads.d.ts": { - "version": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb", - "signature": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb" - }, - "../../node_modules/@types/node/zlib.d.ts": { - "version": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b", - "signature": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b" - }, - "../../node_modules/@types/node/base.d.ts": { - "version": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce", - "signature": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce" - }, - "../../node_modules/@types/node/ts3.2/util.d.ts": { - "version": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c", - "signature": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c" - }, - "../../node_modules/@types/node/ts3.2/globals.d.ts": { - "version": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1", - "signature": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1" - }, - "../../node_modules/@types/node/ts3.2/index.d.ts": { - "version": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c", - "signature": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c" - }, - "../../node_modules/@types/jest-diff/index.d.ts": { - "version": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06", - "signature": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06" - }, - "../../node_modules/jest-diff/build/types.d.ts": { - "version": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7", - "signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7" - }, - "../../node_modules/jest-diff/build/index.d.ts": { - "version": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4", - "signature": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4" - }, - "../../node_modules/@types/jest/index.d.ts": { - "version": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b", - "signature": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b" - } - }, - "options": { - "composite": true, - "target": 99, - "module": 99, - "moduleResolution": 2, - "esModuleInterop": true, - "sourceMap": true, - "declaration": true, - "declarationMap": true, - "removeComments": true, - "strict": true, - "noImplicitAny": true, - "noImplicitReturns": false, - "noFallthroughCasesInSwitch": true, - "noUnusedParameters": true, - "noUnusedLocals": true, - "forceConsistentCasingInFileNames": true, - "lib": [ - "lib.dom.d.ts", - "lib.es2017.d.ts", - "lib.es2018.asynciterable.d.ts" - ], - "types": [ - "node", - "jest" - ], - "baseUrl": "../..", - "paths": { - "graphql-language-*": [ - "graphql-language-*" - ] - }, - "rootDir": "./src", - "outDir": "./dist", - "configFilePath": "./tsconfig.json" - }, - "referencedMap": { - "../../node_modules/typescript/lib/lib.es5.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.dom.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/version.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/tsutils/Maybe.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/source.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/tokenKind.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/ast.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/Path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/definition.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/directiveLocation.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/directives.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/schema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/location.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/GraphQLError.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/locatedError.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/execute.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/graphql.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/scalars.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/introspection.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/scalars.d.ts", - "../../node_modules/graphql/type/introspection.d.ts", - "../../node_modules/graphql/type/validate.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printLocation.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/kinds.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/syntaxError.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/formatError.d.ts": [ - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/index.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/syntaxError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/error/formatError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/lexer.d.ts": [ - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/parser.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printer.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/visitor.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/predicates.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/index.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/language/printLocation.d.ts", - "../../node_modules/graphql/language/kinds.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/printer.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/predicates.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/values.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/execution/values.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/subscribe.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/index.d.ts": [ - "../../node_modules/graphql/subscription/subscribe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/ValidationContext.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/specifiedRules.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/index.d.ts": [ - "../../node_modules/graphql/validation/validate.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/specifiedRules.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/blockString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/blockString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/extendSchema.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/astFromValue.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceValue.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/concatAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/separateOperations.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeComparators.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/assertValidName.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/index.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/utilities/getOperationAST.d.ts", - "../../node_modules/graphql/utilities/getOperationRootType.d.ts", - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", - "../../node_modules/graphql/utilities/buildClientSchema.d.ts", - "../../node_modules/graphql/utilities/buildASTSchema.d.ts", - "../../node_modules/graphql/utilities/extendSchema.d.ts", - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", - "../../node_modules/graphql/utilities/schemaPrinter.d.ts", - "../../node_modules/graphql/utilities/typeFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", - "../../node_modules/graphql/utilities/astFromValue.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/utilities/coerceInputValue.d.ts", - "../../node_modules/graphql/utilities/coerceValue.d.ts", - "../../node_modules/graphql/utilities/isValidJSValue.d.ts", - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", - "../../node_modules/graphql/utilities/concatAST.d.ts", - "../../node_modules/graphql/utilities/separateOperations.d.ts", - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", - "../../node_modules/graphql/utilities/typeComparators.d.ts", - "../../node_modules/graphql/utilities/assertValidName.d.ts", - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/index.d.ts": [ - "../../node_modules/graphql/version.d.ts", - "../../node_modules/graphql/graphql.d.ts", - "../../node_modules/graphql/type/index.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/execution/index.d.ts", - "../../node_modules/graphql/subscription/index.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/utilities/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/index.d.ts": [ - "../../node_modules/graphql-request/dist/src/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ - "../../node_modules/graphql-request/dist/src/index.d.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/types.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/utils.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/errors.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/index.d.ts": [ - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", - "../../node_modules/graphql-config/lib/utils.d.ts", - "../../node_modules/graphql-config/lib/errors.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-types/src/index.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql-config/lib/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-utils/src/Range.ts": [ - "../../node_modules/graphql/language/index.d.ts", - "../graphql-language-service-types/src/index.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-utils/src/getASTNodeAtPosition.ts": [ - "../../node_modules/graphql/language/index.d.ts", - "../graphql-language-service-utils/src/Range.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-utils/src/validateWithCustomRules.ts": [ - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/type/index.d.ts", - "../graphql-language-service-types/src/index.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-utils/src/index.ts": [ - "../graphql-language-service-utils/src/getASTNodeAtPosition.ts", - "../graphql-language-service-utils/src/Range.ts", - "../graphql-language-service-utils/src/validateWithCustomRules.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/vscode-languageserver-types/lib/main.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-parser/dist/CharacterStream.d.ts": [ - "../graphql-language-service-types/src/index.ts", - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-parser/dist/Rules.d.ts": [ - "../graphql-language-service-types/src/index.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-parser/dist/RuleHelpers.d.ts": [ - "../graphql-language-service-types/src/index.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-parser/dist/onlineParser.d.ts": [ - "../graphql-language-service-parser/dist/Rules.d.ts", - "../graphql-language-service-types/src/index.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-parser/dist/index.d.ts": [ - "../graphql-language-service-parser/dist/CharacterStream.d.ts", - "../graphql-language-service-parser/dist/Rules.d.ts", - "../graphql-language-service-parser/dist/RuleHelpers.d.ts", - "../graphql-language-service-parser/dist/onlineParser.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/autocompleteUtils.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql/type/introspection.d.ts", - "../graphql-language-service-types/src/index.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/getAutocompleteSuggestions.ts": [ - "../../node_modules/graphql/index.d.ts", - "../graphql-language-service-types/src/index.ts", - "../graphql-language-service-utils/src/index.ts", - "../graphql-language-service-parser/dist/index.d.ts", - "./src/autocompleteUtils.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/getHoverInformation.ts": [ - "../../node_modules/graphql/index.d.ts", - "../graphql-language-service-types/src/index.ts", - "../../node_modules/vscode-languageserver-types/lib/main.d.ts", - "../graphql-language-service-utils/src/index.ts", - "./src/getAutocompleteSuggestions.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/getDiagnostics.ts": [ - "../../node_modules/graphql/index.d.ts", - "../graphql-language-service-types/src/index.ts", - "../../node_modules/@types/node/assert.d.ts", - "../graphql-language-service-parser/dist/index.d.ts", - "../graphql-language-service-utils/src/index.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/getDefinition.ts": [ - "../../node_modules/graphql/index.d.ts", - "../graphql-language-service-types/src/index.ts", - "../graphql-language-service-utils/src/index.ts", - "../../node_modules/@types/node/assert.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/GraphQLLanguageService.ts": [ - "../../node_modules/graphql/index.d.ts", - "../graphql-language-service-types/src/index.ts", - "../graphql-language-service-utils/src/index.ts", - "../../node_modules/vscode-languageserver-types/lib/main.d.ts", - "./src/getAutocompleteSuggestions.ts", - "./src/getHoverInformation.ts", - "./src/getDiagnostics.ts", - "./src/getDefinition.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/getOutline.ts": [ - "../graphql-language-service-types/src/index.ts", - "../../node_modules/graphql/index.d.ts", - "../graphql-language-service-utils/src/index.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/index.ts": [ - "./src/autocompleteUtils.ts", - "./src/getAutocompleteSuggestions.ts", - "./src/getDefinition.ts", - "./src/getDiagnostics.ts", - "./src/getOutline.ts", - "./src/getHoverInformation.ts", - "./src/GraphQLLanguageService.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/globals.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/assert.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/async_hooks.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/buffer.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/events/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/child_process.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/cluster.d.ts": [ - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/console.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/constants.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/crypto.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dgram.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dns.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/domain.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/fs.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http2.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/https.d.ts": [ - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/inspector.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/module.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/net.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/os.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/perf_hooks.d.ts": [ - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/process.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/punycode.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/querystring.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/readline.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/repl.d.ts": [ - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/stream.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/string_decoder.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/timers.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tls.d.ts": [ - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/trace_events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tty.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/url.d.ts": [ - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/util.d.ts": [ - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/v8.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/vm.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/worker_threads.d.ts": [ - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/zlib.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/base.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/assert.d.ts", - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/buffer.d.ts", - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/cluster.d.ts", - "../../node_modules/@types/node/console.d.ts", - "../../node_modules/@types/node/constants.d.ts", - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dgram.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/domain.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/http2.d.ts", - "../../node_modules/@types/node/https.d.ts", - "../../node_modules/@types/node/inspector.d.ts", - "../../node_modules/@types/node/module.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/os.d.ts", - "../../node_modules/@types/node/path.d.ts", - "../../node_modules/@types/node/perf_hooks.d.ts", - "../../node_modules/@types/node/process.d.ts", - "../../node_modules/@types/node/punycode.d.ts", - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/repl.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/string_decoder.d.ts", - "../../node_modules/@types/node/timers.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/trace_events.d.ts", - "../../node_modules/@types/node/tty.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/v8.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/worker_threads.d.ts", - "../../node_modules/@types/node/zlib.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/util.d.ts": [ - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/globals.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/index.d.ts": [ - "../../node_modules/@types/node/base.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts", - "../../node_modules/@types/node/ts3.2/globals.d.ts", - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/jest-diff/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/index.d.ts": [ - "../../node_modules/jest-diff/build/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/jest/index.d.ts": [ - "../../node_modules/jest-diff/build/index.d.ts", - "../../node_modules/@types/jest-diff/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ] - }, - "exportedModulesMap": { - "../../node_modules/typescript/lib/lib.es5.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.dom.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/version.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/index.d.ts": [ - "../../node_modules/graphql/version.d.ts", - "../../node_modules/graphql/graphql.d.ts", - "../../node_modules/graphql/type/index.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/execution/index.d.ts", - "../../node_modules/graphql/subscription/index.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/utilities/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/getOutline.ts": [ - "../graphql-language-service-types/src/index.ts" - ], - "./src/index.ts": [ - "./src/autocompleteUtils.ts", - "./src/getAutocompleteSuggestions.ts", - "./src/getDefinition.ts", - "./src/getDiagnostics.ts", - "./src/getOutline.ts", - "./src/getHoverInformation.ts", - "./src/GraphQLLanguageService.ts" - ], - "./src/GraphQLLanguageService.ts": [ - "../graphql-language-service-types/src/index.ts", - "../graphql-language-service-utils/src/index.ts", - "../../node_modules/vscode-languageserver-types/lib/main.d.ts", - "../../node_modules/graphql/index.d.ts" - ], - "./src/getDefinition.ts": [ - "../../node_modules/graphql/index.d.ts", - "../graphql-language-service-types/src/index.ts" - ], - "./src/getDiagnostics.ts": [ - "../../node_modules/graphql/index.d.ts", - "../graphql-language-service-types/src/index.ts", - "../graphql-language-service-utils/src/index.ts" - ], - "./src/getHoverInformation.ts": [ - "../../node_modules/graphql/index.d.ts", - "../graphql-language-service-utils/src/index.ts", - "../graphql-language-service-types/src/index.ts", - "../../node_modules/vscode-languageserver-types/lib/main.d.ts" - ], - "./src/getAutocompleteSuggestions.ts": [ - "../../node_modules/graphql/index.d.ts", - "../graphql-language-service-utils/src/index.ts", - "../graphql-language-service-types/src/index.ts" - ], - "./src/autocompleteUtils.ts": [ - "../graphql-language-service-types/src/index.ts", - "../../node_modules/graphql/index.d.ts" - ], - "../graphql-language-service-parser/dist/onlineParser.d.ts": [ - "../graphql-language-service-parser/dist/Rules.d.ts", - "../graphql-language-service-types/src/index.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-parser/dist/index.d.ts": [ - "../graphql-language-service-parser/dist/CharacterStream.d.ts", - "../graphql-language-service-parser/dist/Rules.d.ts", - "../graphql-language-service-parser/dist/RuleHelpers.d.ts", - "../graphql-language-service-parser/dist/onlineParser.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-parser/dist/RuleHelpers.d.ts": [ - "../graphql-language-service-types/src/index.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-parser/dist/Rules.d.ts": [ - "../graphql-language-service-types/src/index.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-parser/dist/CharacterStream.d.ts": [ - "../graphql-language-service-types/src/index.ts", - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/utils.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/index.d.ts": [ - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", - "../../node_modules/graphql-config/lib/utils.d.ts", - "../../node_modules/graphql-config/lib/errors.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/types.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ - "../../node_modules/graphql-request/dist/src/index.d.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/tsutils/Maybe.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/astFromValue.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/index.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/utilities/getOperationAST.d.ts", - "../../node_modules/graphql/utilities/getOperationRootType.d.ts", - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", - "../../node_modules/graphql/utilities/buildClientSchema.d.ts", - "../../node_modules/graphql/utilities/buildASTSchema.d.ts", - "../../node_modules/graphql/utilities/extendSchema.d.ts", - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", - "../../node_modules/graphql/utilities/schemaPrinter.d.ts", - "../../node_modules/graphql/utilities/typeFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", - "../../node_modules/graphql/utilities/astFromValue.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/utilities/coerceInputValue.d.ts", - "../../node_modules/graphql/utilities/coerceValue.d.ts", - "../../node_modules/graphql/utilities/isValidJSValue.d.ts", - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", - "../../node_modules/graphql/utilities/concatAST.d.ts", - "../../node_modules/graphql/utilities/separateOperations.d.ts", - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", - "../../node_modules/graphql/utilities/typeComparators.d.ts", - "../../node_modules/graphql/utilities/assertValidName.d.ts", - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/blockString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/index.d.ts": [ - "../../node_modules/graphql/validation/validate.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/specifiedRules.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/specifiedRules.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/ValidationContext.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/subscribe.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/index.d.ts": [ - "../../node_modules/graphql/subscription/subscribe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/values.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/execution/values.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/visitor.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/index.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/language/printLocation.d.ts", - "../../node_modules/graphql/language/kinds.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/printer.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/predicates.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/graphql.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/execute.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/GraphQLError.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/assertValidName.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceValue.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/index.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/syntaxError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/error/formatError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/lexer.d.ts": [ - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/parser.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/formatError.d.ts": [ - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/syntaxError.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/scalars.d.ts", - "../../node_modules/graphql/type/introspection.d.ts", - "../../node_modules/graphql/type/validate.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/locatedError.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/schema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeComparators.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/extendSchema.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/definition.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/introspection.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/scalars.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/directives.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/source.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printLocation.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/location.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/ast.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/separateOperations.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/concatAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/predicates.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printer.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/tokenKind.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/Path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/directiveLocation.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/kinds.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/blockString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/index.d.ts": [ - "../../node_modules/graphql-request/dist/src/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/errors.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/vscode-languageserver-types/lib/main.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/globals.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/assert.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/base.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/assert.d.ts", - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/buffer.d.ts", - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/cluster.d.ts", - "../../node_modules/@types/node/console.d.ts", - "../../node_modules/@types/node/constants.d.ts", - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dgram.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/domain.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/http2.d.ts", - "../../node_modules/@types/node/https.d.ts", - "../../node_modules/@types/node/inspector.d.ts", - "../../node_modules/@types/node/module.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/os.d.ts", - "../../node_modules/@types/node/path.d.ts", - "../../node_modules/@types/node/perf_hooks.d.ts", - "../../node_modules/@types/node/process.d.ts", - "../../node_modules/@types/node/punycode.d.ts", - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/repl.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/string_decoder.d.ts", - "../../node_modules/@types/node/timers.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/trace_events.d.ts", - "../../node_modules/@types/node/tty.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/v8.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/worker_threads.d.ts", - "../../node_modules/@types/node/zlib.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/index.d.ts": [ - "../../node_modules/@types/node/base.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts", - "../../node_modules/@types/node/ts3.2/globals.d.ts", - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/node/async_hooks.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/perf_hooks.d.ts": [ - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/buffer.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/events/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/child_process.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/cluster.d.ts": [ - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/console.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/constants.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/crypto.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tls.d.ts": [ - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/https.d.ts": [ - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http2.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dgram.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dns.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/net.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tty.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/domain.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/worker_threads.d.ts": [ - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/stream.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/zlib.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/v8.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/readline.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/repl.d.ts": [ - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/fs.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/inspector.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/module.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/os.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/process.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/punycode.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/querystring.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/url.d.ts": [ - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/string_decoder.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/timers.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/trace_events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/util.d.ts": [ - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/jest/index.d.ts": [ - "../../node_modules/jest-diff/build/index.d.ts", - "../../node_modules/@types/jest-diff/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/index.d.ts": [ - "../../node_modules/jest-diff/build/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/jest-diff/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/globals.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/util.d.ts": [ - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/node/vm.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ] - }, - "semanticDiagnosticsPerFile": [ - "../../node_modules/graphql/version.d.ts", - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/graphql.d.ts", - "../../node_modules/graphql/type/scalars.d.ts", - "../../node_modules/graphql/type/introspection.d.ts", - "../../node_modules/graphql/type/validate.d.ts", - "../../node_modules/graphql/type/index.d.ts", - "../../node_modules/graphql/language/printLocation.d.ts", - "../../node_modules/graphql/language/kinds.d.ts", - "../../node_modules/graphql/error/syntaxError.d.ts", - "../../node_modules/graphql/error/formatError.d.ts", - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/printer.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/predicates.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/execution/values.d.ts", - "../../node_modules/graphql/execution/index.d.ts", - "../../node_modules/graphql/subscription/subscribe.d.ts", - "../../node_modules/graphql/subscription/index.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/validate.d.ts", - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", - "../../node_modules/graphql/validation/specifiedRules.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/utilities/getOperationAST.d.ts", - "../../node_modules/graphql/utilities/getOperationRootType.d.ts", - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", - "../../node_modules/graphql/utilities/buildClientSchema.d.ts", - "../../node_modules/graphql/language/blockString.d.ts", - "../../node_modules/graphql/utilities/buildASTSchema.d.ts", - "../../node_modules/graphql/utilities/extendSchema.d.ts", - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", - "../../node_modules/graphql/utilities/schemaPrinter.d.ts", - "../../node_modules/graphql/utilities/typeFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", - "../../node_modules/graphql/utilities/astFromValue.d.ts", - "../../node_modules/graphql/utilities/coerceInputValue.d.ts", - "../../node_modules/graphql/utilities/coerceValue.d.ts", - "../../node_modules/graphql/utilities/isValidJSValue.d.ts", - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", - "../../node_modules/graphql/utilities/concatAST.d.ts", - "../../node_modules/graphql/utilities/separateOperations.d.ts", - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", - "../../node_modules/graphql/utilities/typeComparators.d.ts", - "../../node_modules/graphql/utilities/assertValidName.d.ts", - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", - "../../node_modules/graphql/utilities/index.d.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-request/dist/src/types.d.ts", - "../../node_modules/graphql-request/dist/src/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", - "../../node_modules/graphql-config/lib/utils.d.ts", - "../../node_modules/graphql-config/lib/errors.d.ts", - "../../node_modules/graphql-config/lib/index.d.ts", - "../graphql-language-service-types/src/index.ts", - "../graphql-language-service-utils/src/Range.ts", - "../graphql-language-service-utils/src/getASTNodeAtPosition.ts", - "../graphql-language-service-utils/src/validateWithCustomRules.ts", - "../graphql-language-service-utils/src/index.ts", - "../../node_modules/vscode-languageserver-types/lib/main.d.ts", - "../graphql-language-service-parser/dist/CharacterStream.d.ts", - "../graphql-language-service-parser/dist/Rules.d.ts", - "../graphql-language-service-parser/dist/RuleHelpers.d.ts", - "../graphql-language-service-parser/dist/onlineParser.d.ts", - "../graphql-language-service-parser/dist/index.d.ts", - "./src/autocompleteUtils.ts", - "./src/getAutocompleteSuggestions.ts", - "./src/getHoverInformation.ts", - "./src/getDiagnostics.ts", - "./src/getDefinition.ts", - "./src/GraphQLLanguageService.ts", - "./src/getOutline.ts", - "./src/index.ts", - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/assert.d.ts", - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/buffer.d.ts", - "../../node_modules/@types/events/index.d.ts", - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/cluster.d.ts", - "../../node_modules/@types/node/console.d.ts", - "../../node_modules/@types/node/constants.d.ts", - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dgram.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/domain.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/http2.d.ts", - "../../node_modules/@types/node/https.d.ts", - "../../node_modules/@types/node/inspector.d.ts", - "../../node_modules/@types/node/module.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/os.d.ts", - "../../node_modules/@types/node/path.d.ts", - "../../node_modules/@types/node/perf_hooks.d.ts", - "../../node_modules/@types/node/process.d.ts", - "../../node_modules/@types/node/punycode.d.ts", - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/repl.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/string_decoder.d.ts", - "../../node_modules/@types/node/timers.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/trace_events.d.ts", - "../../node_modules/@types/node/tty.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/v8.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/worker_threads.d.ts", - "../../node_modules/@types/node/zlib.d.ts", - "../../node_modules/@types/node/base.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts", - "../../node_modules/@types/node/ts3.2/globals.d.ts", - "../../node_modules/@types/node/ts3.2/index.d.ts", - "../../node_modules/@types/jest-diff/index.d.ts", - "../../node_modules/jest-diff/build/types.d.ts", - "../../node_modules/jest-diff/build/index.d.ts", - "../../node_modules/@types/jest/index.d.ts", - "../../node_modules/typescript/lib/lib.es2015.d.ts", - "../../node_modules/typescript/lib/lib.es2016.d.ts", - "../../node_modules/typescript/lib/lib.es2017.d.ts", - "../../node_modules/typescript/lib/lib.es2018.d.ts", - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts", - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts", - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts", - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts", - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts", - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts", - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts", - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts", - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts", - "../../node_modules/typescript/lib/lib.es2017.string.d.ts", - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts", - "../../node_modules/typescript/lib/lib.es2017.object.d.ts", - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts", - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts", - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts", - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts", - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts", - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts", - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts", - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts", - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts", - "../../node_modules/typescript/lib/lib.es2015.core.d.ts", - "../../node_modules/typescript/lib/lib.dom.d.ts", - "../../node_modules/typescript/lib/lib.es5.d.ts" - ] - }, - "version": "3.6.3" -} \ No newline at end of file diff --git a/packages/graphql-language-service-parser/tsconfig.tsbuildinfo b/packages/graphql-language-service-parser/tsconfig.tsbuildinfo deleted file mode 100644 index 70e6045c4e8..00000000000 --- a/packages/graphql-language-service-parser/tsconfig.tsbuildinfo +++ /dev/null @@ -1,3419 +0,0 @@ -{ - "program": { - "fileInfos": { - "../../node_modules/typescript/lib/lib.es5.d.ts": { - "version": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1", - "signature": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1" - }, - "../../node_modules/typescript/lib/lib.es2015.d.ts": { - "version": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96", - "signature": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96" - }, - "../../node_modules/typescript/lib/lib.es2016.d.ts": { - "version": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1", - "signature": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1" - }, - "../../node_modules/typescript/lib/lib.es2017.d.ts": { - "version": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743", - "signature": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743" - }, - "../../node_modules/typescript/lib/lib.es2018.d.ts": { - "version": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091", - "signature": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091" - }, - "../../node_modules/typescript/lib/lib.dom.d.ts": { - "version": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f", - "signature": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f" - }, - "../../node_modules/typescript/lib/lib.es2015.core.d.ts": { - "version": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f", - "signature": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f" - }, - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": { - "version": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0", - "signature": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0" - }, - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": { - "version": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122", - "signature": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122" - }, - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": { - "version": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210", - "signature": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210" - }, - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": { - "version": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2", - "signature": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2" - }, - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": { - "version": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe", - "signature": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe" - }, - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": { - "version": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976", - "signature": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976" - }, - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": { - "version": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230", - "signature": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230" - }, - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": { - "version": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303", - "signature": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303" - }, - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": { - "version": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0", - "signature": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0" - }, - "../../node_modules/typescript/lib/lib.es2017.object.d.ts": { - "version": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4", - "signature": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4" - }, - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": { - "version": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f", - "signature": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f" - }, - "../../node_modules/typescript/lib/lib.es2017.string.d.ts": { - "version": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c", - "signature": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c" - }, - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": { - "version": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6", - "signature": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6" - }, - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": { - "version": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46", - "signature": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46" - }, - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": { - "version": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0", - "signature": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0" - }, - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": { - "version": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10", - "signature": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10" - }, - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": { - "version": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0", - "signature": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0" - }, - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": { - "version": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62", - "signature": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62" - }, - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": { - "version": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8", - "signature": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8" - }, - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": { - "version": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8", - "signature": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8" - }, - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": { - "version": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8", - "signature": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8" - }, - "../../node_modules/graphql/version.d.ts": { - "version": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2", - "signature": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2" - }, - "../../node_modules/graphql/tsutils/Maybe.d.ts": { - "version": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392", - "signature": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392" - }, - "../../node_modules/graphql/language/source.d.ts": { - "version": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd", - "signature": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd" - }, - "../../node_modules/graphql/language/tokenKind.d.ts": { - "version": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78", - "signature": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78" - }, - "../../node_modules/graphql/language/ast.d.ts": { - "version": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937", - "signature": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937" - }, - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": { - "version": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717", - "signature": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717" - }, - "../../node_modules/graphql/jsutils/Path.d.ts": { - "version": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b", - "signature": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b" - }, - "../../node_modules/graphql/type/definition.d.ts": { - "version": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7", - "signature": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7" - }, - "../../node_modules/graphql/language/directiveLocation.d.ts": { - "version": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b", - "signature": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b" - }, - "../../node_modules/graphql/type/directives.d.ts": { - "version": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d", - "signature": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d" - }, - "../../node_modules/graphql/type/schema.d.ts": { - "version": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491", - "signature": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491" - }, - "../../node_modules/graphql/language/location.d.ts": { - "version": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160", - "signature": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160" - }, - "../../node_modules/graphql/error/GraphQLError.d.ts": { - "version": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b", - "signature": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b" - }, - "../../node_modules/graphql/error/locatedError.d.ts": { - "version": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb", - "signature": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb" - }, - "../../node_modules/graphql/execution/execute.d.ts": { - "version": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4", - "signature": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4" - }, - "../../node_modules/graphql/graphql.d.ts": { - "version": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca", - "signature": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca" - }, - "../../node_modules/graphql/type/scalars.d.ts": { - "version": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11", - "signature": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11" - }, - "../../node_modules/graphql/type/introspection.d.ts": { - "version": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870", - "signature": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870" - }, - "../../node_modules/graphql/type/validate.d.ts": { - "version": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30", - "signature": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30" - }, - "../../node_modules/graphql/type/index.d.ts": { - "version": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62", - "signature": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62" - }, - "../../node_modules/graphql/language/printLocation.d.ts": { - "version": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1", - "signature": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1" - }, - "../../node_modules/graphql/language/kinds.d.ts": { - "version": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293", - "signature": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293" - }, - "../../node_modules/graphql/error/syntaxError.d.ts": { - "version": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b", - "signature": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b" - }, - "../../node_modules/graphql/error/formatError.d.ts": { - "version": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23", - "signature": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23" - }, - "../../node_modules/graphql/error/index.d.ts": { - "version": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0", - "signature": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0" - }, - "../../node_modules/graphql/language/lexer.d.ts": { - "version": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023", - "signature": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023" - }, - "../../node_modules/graphql/language/parser.d.ts": { - "version": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e", - "signature": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e" - }, - "../../node_modules/graphql/language/printer.d.ts": { - "version": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41", - "signature": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41" - }, - "../../node_modules/graphql/utilities/TypeInfo.d.ts": { - "version": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4", - "signature": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4" - }, - "../../node_modules/graphql/language/visitor.d.ts": { - "version": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9", - "signature": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9" - }, - "../../node_modules/graphql/language/predicates.d.ts": { - "version": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271", - "signature": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271" - }, - "../../node_modules/graphql/language/index.d.ts": { - "version": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420", - "signature": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420" - }, - "../../node_modules/graphql/execution/values.d.ts": { - "version": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5", - "signature": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5" - }, - "../../node_modules/graphql/execution/index.d.ts": { - "version": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24", - "signature": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24" - }, - "../../node_modules/graphql/subscription/subscribe.d.ts": { - "version": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22", - "signature": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22" - }, - "../../node_modules/graphql/subscription/index.d.ts": { - "version": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3", - "signature": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3" - }, - "../../node_modules/graphql/validation/ValidationContext.d.ts": { - "version": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14", - "signature": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14" - }, - "../../node_modules/graphql/validation/validate.d.ts": { - "version": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95", - "signature": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95" - }, - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": { - "version": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163", - "signature": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163" - }, - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": { - "version": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152", - "signature": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152" - }, - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": { - "version": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb", - "signature": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb" - }, - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": { - "version": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e", - "signature": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e" - }, - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": { - "version": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6", - "signature": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6" - }, - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": { - "version": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9", - "signature": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9" - }, - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": { - "version": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9", - "signature": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9" - }, - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": { - "version": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5", - "signature": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5" - }, - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": { - "version": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae", - "signature": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae" - }, - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": { - "version": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a", - "signature": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a" - }, - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": { - "version": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f", - "signature": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f" - }, - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": { - "version": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222", - "signature": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222" - }, - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": { - "version": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce", - "signature": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce" - }, - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": { - "version": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294", - "signature": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294" - }, - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": { - "version": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc", - "signature": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc" - }, - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": { - "version": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f", - "signature": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f" - }, - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": { - "version": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014", - "signature": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014" - }, - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": { - "version": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae", - "signature": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae" - }, - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": { - "version": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5", - "signature": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5" - }, - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": { - "version": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73", - "signature": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73" - }, - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": { - "version": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c", - "signature": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c" - }, - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": { - "version": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b", - "signature": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b" - }, - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": { - "version": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1", - "signature": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1" - }, - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": { - "version": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2", - "signature": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2" - }, - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": { - "version": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8", - "signature": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8" - }, - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": { - "version": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c", - "signature": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c" - }, - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": { - "version": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e", - "signature": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e" - }, - "../../node_modules/graphql/validation/specifiedRules.d.ts": { - "version": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d", - "signature": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d" - }, - "../../node_modules/graphql/validation/index.d.ts": { - "version": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423", - "signature": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423" - }, - "../../node_modules/graphql/utilities/introspectionQuery.d.ts": { - "version": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597", - "signature": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597" - }, - "../../node_modules/graphql/utilities/getOperationAST.d.ts": { - "version": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8", - "signature": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8" - }, - "../../node_modules/graphql/utilities/getOperationRootType.d.ts": { - "version": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc", - "signature": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc" - }, - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": { - "version": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d", - "signature": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d" - }, - "../../node_modules/graphql/utilities/buildClientSchema.d.ts": { - "version": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820", - "signature": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820" - }, - "../../node_modules/graphql/language/blockString.d.ts": { - "version": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86", - "signature": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86" - }, - "../../node_modules/graphql/utilities/buildASTSchema.d.ts": { - "version": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7", - "signature": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7" - }, - "../../node_modules/graphql/utilities/extendSchema.d.ts": { - "version": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b", - "signature": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b" - }, - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": { - "version": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896", - "signature": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896" - }, - "../../node_modules/graphql/utilities/schemaPrinter.d.ts": { - "version": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff", - "signature": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff" - }, - "../../node_modules/graphql/utilities/typeFromAST.d.ts": { - "version": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922", - "signature": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922" - }, - "../../node_modules/graphql/utilities/valueFromAST.d.ts": { - "version": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b", - "signature": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b" - }, - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": { - "version": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf", - "signature": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf" - }, - "../../node_modules/graphql/utilities/astFromValue.d.ts": { - "version": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae", - "signature": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae" - }, - "../../node_modules/graphql/utilities/coerceInputValue.d.ts": { - "version": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5", - "signature": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5" - }, - "../../node_modules/graphql/utilities/coerceValue.d.ts": { - "version": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197", - "signature": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197" - }, - "../../node_modules/graphql/utilities/isValidJSValue.d.ts": { - "version": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f", - "signature": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f" - }, - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": { - "version": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8", - "signature": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8" - }, - "../../node_modules/graphql/utilities/concatAST.d.ts": { - "version": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9", - "signature": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9" - }, - "../../node_modules/graphql/utilities/separateOperations.d.ts": { - "version": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a", - "signature": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a" - }, - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": { - "version": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c", - "signature": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c" - }, - "../../node_modules/graphql/utilities/typeComparators.d.ts": { - "version": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454", - "signature": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454" - }, - "../../node_modules/graphql/utilities/assertValidName.d.ts": { - "version": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5", - "signature": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5" - }, - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": { - "version": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a", - "signature": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a" - }, - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": { - "version": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b", - "signature": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b" - }, - "../../node_modules/graphql/utilities/index.d.ts": { - "version": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e", - "signature": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e" - }, - "../../node_modules/graphql/index.d.ts": { - "version": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6", - "signature": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6" - }, - "../../node_modules/graphql-request/dist/src/types.d.ts": { - "version": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4", - "signature": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4" - }, - "../../node_modules/graphql-request/dist/src/index.d.ts": { - "version": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786", - "signature": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786" - }, - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": { - "version": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a", - "signature": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a" - }, - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": { - "version": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc", - "signature": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc" - }, - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": { - "version": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644", - "signature": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644" - }, - "../../node_modules/graphql-config/lib/extensions/index.d.ts": { - "version": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41", - "signature": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41" - }, - "../../node_modules/graphql-config/lib/types.d.ts": { - "version": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6", - "signature": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6" - }, - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": { - "version": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca", - "signature": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca" - }, - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": { - "version": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf", - "signature": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf" - }, - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": { - "version": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca", - "signature": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca" - }, - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": { - "version": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411", - "signature": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411" - }, - "../../node_modules/graphql-config/lib/utils.d.ts": { - "version": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4", - "signature": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4" - }, - "../../node_modules/graphql-config/lib/errors.d.ts": { - "version": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9", - "signature": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9" - }, - "../../node_modules/graphql-config/lib/index.d.ts": { - "version": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4", - "signature": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4" - }, - "../graphql-language-service-types/src/index.ts": { - "version": "0eccbb489f441658fcd2acfe7811403eed555060b86fcf4683ef1ee34245ccc6" - }, - "./src/CharacterStream.ts": { - "version": "a649cf8370c20f25b354c264ff1ac13721e46d51d249516110098e6816bd3a0f", - "signature": "1c504c5689ed0400b6c48b94721fb023f5b94813f1a6d99cdfcd4df867e880fe" - }, - "./src/RuleHelpers.ts": { - "version": "785d0ffda1a1110fd15291268a4394c6eb2e0307fffed4618b11c09f7b87e4d1", - "signature": "5a3c9d7eac0cfa3b5308c6360d274fd3c2fd5d97bde42ba627088f064c54d677" - }, - "./src/Rules.ts": { - "version": "3a346c6e96645425da14950dc31ce466b3f54b0197152c72534a267e351a9c03", - "signature": "3c44f8e6343510059f4c2d062ed8637e58444333301022877ac49c635b76cc2f" - }, - "./src/onlineParser.ts": { - "version": "b5e145c94034418083b23022a31b193dcf2708e6c27260079f3186d42f28743f", - "signature": "fe4a9dab6a32ebb38be6c09919fa8f547ec045d4071c43eeac4c59d9b9b42921" - }, - "./src/index.ts": { - "version": "97f833b8b76fe170084043d24907620434f0ef0660fcafb968212598fbba13e6", - "signature": "86f0afb0728c90e507a529bfa6a4653a01bfba0ed816633e2557e104fffb6f31" - }, - "../../node_modules/@types/node/globals.d.ts": { - "version": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed", - "signature": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed" - }, - "../../node_modules/@types/node/assert.d.ts": { - "version": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f", - "signature": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f" - }, - "../../node_modules/@types/node/async_hooks.d.ts": { - "version": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561", - "signature": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561" - }, - "../../node_modules/@types/node/buffer.d.ts": { - "version": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878", - "signature": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878" - }, - "../../node_modules/@types/events/index.d.ts": { - "version": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935", - "signature": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935" - }, - "../../node_modules/@types/node/child_process.d.ts": { - "version": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003", - "signature": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003" - }, - "../../node_modules/@types/node/cluster.d.ts": { - "version": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a", - "signature": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a" - }, - "../../node_modules/@types/node/console.d.ts": { - "version": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d", - "signature": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d" - }, - "../../node_modules/@types/node/constants.d.ts": { - "version": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424", - "signature": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424" - }, - "../../node_modules/@types/node/crypto.d.ts": { - "version": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b", - "signature": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b" - }, - "../../node_modules/@types/node/dgram.d.ts": { - "version": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30", - "signature": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30" - }, - "../../node_modules/@types/node/dns.d.ts": { - "version": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c", - "signature": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c" - }, - "../../node_modules/@types/node/domain.d.ts": { - "version": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa", - "signature": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa" - }, - "../../node_modules/@types/node/events.d.ts": { - "version": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c", - "signature": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c" - }, - "../../node_modules/@types/node/fs.d.ts": { - "version": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882", - "signature": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882" - }, - "../../node_modules/@types/node/http.d.ts": { - "version": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36", - "signature": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36" - }, - "../../node_modules/@types/node/http2.d.ts": { - "version": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d", - "signature": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d" - }, - "../../node_modules/@types/node/https.d.ts": { - "version": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6", - "signature": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6" - }, - "../../node_modules/@types/node/inspector.d.ts": { - "version": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c", - "signature": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c" - }, - "../../node_modules/@types/node/module.d.ts": { - "version": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66", - "signature": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66" - }, - "../../node_modules/@types/node/net.d.ts": { - "version": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4", - "signature": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4" - }, - "../../node_modules/@types/node/os.d.ts": { - "version": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486", - "signature": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486" - }, - "../../node_modules/@types/node/path.d.ts": { - "version": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36", - "signature": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36" - }, - "../../node_modules/@types/node/perf_hooks.d.ts": { - "version": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f", - "signature": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f" - }, - "../../node_modules/@types/node/process.d.ts": { - "version": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389", - "signature": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389" - }, - "../../node_modules/@types/node/punycode.d.ts": { - "version": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1", - "signature": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1" - }, - "../../node_modules/@types/node/querystring.d.ts": { - "version": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e", - "signature": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e" - }, - "../../node_modules/@types/node/readline.d.ts": { - "version": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24", - "signature": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24" - }, - "../../node_modules/@types/node/repl.d.ts": { - "version": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157", - "signature": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157" - }, - "../../node_modules/@types/node/stream.d.ts": { - "version": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd", - "signature": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd" - }, - "../../node_modules/@types/node/string_decoder.d.ts": { - "version": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432", - "signature": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432" - }, - "../../node_modules/@types/node/timers.d.ts": { - "version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9", - "signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9" - }, - "../../node_modules/@types/node/tls.d.ts": { - "version": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a", - "signature": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a" - }, - "../../node_modules/@types/node/trace_events.d.ts": { - "version": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662", - "signature": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662" - }, - "../../node_modules/@types/node/tty.d.ts": { - "version": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007", - "signature": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007" - }, - "../../node_modules/@types/node/url.d.ts": { - "version": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7", - "signature": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7" - }, - "../../node_modules/@types/node/util.d.ts": { - "version": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12", - "signature": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12" - }, - "../../node_modules/@types/node/v8.d.ts": { - "version": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725", - "signature": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725" - }, - "../../node_modules/@types/node/vm.d.ts": { - "version": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562", - "signature": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562" - }, - "../../node_modules/@types/node/worker_threads.d.ts": { - "version": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb", - "signature": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb" - }, - "../../node_modules/@types/node/zlib.d.ts": { - "version": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b", - "signature": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b" - }, - "../../node_modules/@types/node/base.d.ts": { - "version": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce", - "signature": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce" - }, - "../../node_modules/@types/node/ts3.2/util.d.ts": { - "version": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c", - "signature": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c" - }, - "../../node_modules/@types/node/ts3.2/globals.d.ts": { - "version": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1", - "signature": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1" - }, - "../../node_modules/@types/node/ts3.2/index.d.ts": { - "version": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c", - "signature": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c" - }, - "../../node_modules/@types/jest-diff/index.d.ts": { - "version": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06", - "signature": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06" - }, - "../../node_modules/jest-diff/build/types.d.ts": { - "version": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7", - "signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7" - }, - "../../node_modules/jest-diff/build/index.d.ts": { - "version": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4", - "signature": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4" - }, - "../../node_modules/@types/jest/index.d.ts": { - "version": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b", - "signature": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b" - } - }, - "options": { - "composite": true, - "target": 99, - "module": 99, - "moduleResolution": 2, - "esModuleInterop": true, - "sourceMap": true, - "declaration": true, - "declarationMap": true, - "removeComments": true, - "strict": true, - "noImplicitAny": true, - "noImplicitReturns": false, - "noFallthroughCasesInSwitch": true, - "noUnusedParameters": true, - "noUnusedLocals": true, - "forceConsistentCasingInFileNames": true, - "lib": [ - "lib.dom.d.ts", - "lib.es2017.d.ts", - "lib.es2018.asynciterable.d.ts" - ], - "types": [ - "node", - "jest" - ], - "baseUrl": "../..", - "paths": { - "graphql-language-*": [ - "graphql-language-*" - ] - }, - "rootDir": "./src", - "outDir": "./dist", - "configFilePath": "./tsconfig.json" - }, - "referencedMap": { - "../../node_modules/typescript/lib/lib.es5.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.dom.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/version.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/tsutils/Maybe.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/source.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/tokenKind.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/ast.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/Path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/definition.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/directiveLocation.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/directives.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/schema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/location.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/GraphQLError.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/locatedError.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/execute.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/graphql.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/scalars.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/introspection.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/scalars.d.ts", - "../../node_modules/graphql/type/introspection.d.ts", - "../../node_modules/graphql/type/validate.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printLocation.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/kinds.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/syntaxError.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/formatError.d.ts": [ - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/index.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/syntaxError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/error/formatError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/lexer.d.ts": [ - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/parser.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printer.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/visitor.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/predicates.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/index.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/language/printLocation.d.ts", - "../../node_modules/graphql/language/kinds.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/printer.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/predicates.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/values.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/execution/values.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/subscribe.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/index.d.ts": [ - "../../node_modules/graphql/subscription/subscribe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/ValidationContext.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/specifiedRules.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/index.d.ts": [ - "../../node_modules/graphql/validation/validate.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/specifiedRules.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/blockString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/blockString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/extendSchema.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/astFromValue.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceValue.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/concatAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/separateOperations.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeComparators.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/assertValidName.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/index.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/utilities/getOperationAST.d.ts", - "../../node_modules/graphql/utilities/getOperationRootType.d.ts", - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", - "../../node_modules/graphql/utilities/buildClientSchema.d.ts", - "../../node_modules/graphql/utilities/buildASTSchema.d.ts", - "../../node_modules/graphql/utilities/extendSchema.d.ts", - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", - "../../node_modules/graphql/utilities/schemaPrinter.d.ts", - "../../node_modules/graphql/utilities/typeFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", - "../../node_modules/graphql/utilities/astFromValue.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/utilities/coerceInputValue.d.ts", - "../../node_modules/graphql/utilities/coerceValue.d.ts", - "../../node_modules/graphql/utilities/isValidJSValue.d.ts", - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", - "../../node_modules/graphql/utilities/concatAST.d.ts", - "../../node_modules/graphql/utilities/separateOperations.d.ts", - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", - "../../node_modules/graphql/utilities/typeComparators.d.ts", - "../../node_modules/graphql/utilities/assertValidName.d.ts", - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/index.d.ts": [ - "../../node_modules/graphql/version.d.ts", - "../../node_modules/graphql/graphql.d.ts", - "../../node_modules/graphql/type/index.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/execution/index.d.ts", - "../../node_modules/graphql/subscription/index.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/utilities/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/index.d.ts": [ - "../../node_modules/graphql-request/dist/src/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ - "../../node_modules/graphql-request/dist/src/index.d.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/types.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/utils.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/errors.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/index.d.ts": [ - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", - "../../node_modules/graphql-config/lib/utils.d.ts", - "../../node_modules/graphql-config/lib/errors.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-types/src/index.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql-config/lib/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/CharacterStream.ts": [ - "../graphql-language-service-types/src/index.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/RuleHelpers.ts": [ - "../graphql-language-service-types/src/index.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/Rules.ts": [ - "../graphql-language-service-types/src/index.ts", - "./src/RuleHelpers.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/onlineParser.ts": [ - "./src/Rules.ts", - "../graphql-language-service-types/src/index.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/index.ts": [ - "./src/CharacterStream.ts", - "./src/Rules.ts", - "./src/RuleHelpers.ts", - "./src/onlineParser.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/globals.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/assert.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/async_hooks.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/buffer.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/events/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/child_process.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/cluster.d.ts": [ - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/console.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/constants.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/crypto.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dgram.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dns.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/domain.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/fs.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http2.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/https.d.ts": [ - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/inspector.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/module.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/net.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/os.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/perf_hooks.d.ts": [ - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/process.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/punycode.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/querystring.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/readline.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/repl.d.ts": [ - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/stream.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/string_decoder.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/timers.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tls.d.ts": [ - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/trace_events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tty.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/url.d.ts": [ - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/util.d.ts": [ - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/v8.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/vm.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/worker_threads.d.ts": [ - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/zlib.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/base.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/assert.d.ts", - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/buffer.d.ts", - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/cluster.d.ts", - "../../node_modules/@types/node/console.d.ts", - "../../node_modules/@types/node/constants.d.ts", - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dgram.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/domain.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/http2.d.ts", - "../../node_modules/@types/node/https.d.ts", - "../../node_modules/@types/node/inspector.d.ts", - "../../node_modules/@types/node/module.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/os.d.ts", - "../../node_modules/@types/node/path.d.ts", - "../../node_modules/@types/node/perf_hooks.d.ts", - "../../node_modules/@types/node/process.d.ts", - "../../node_modules/@types/node/punycode.d.ts", - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/repl.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/string_decoder.d.ts", - "../../node_modules/@types/node/timers.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/trace_events.d.ts", - "../../node_modules/@types/node/tty.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/v8.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/worker_threads.d.ts", - "../../node_modules/@types/node/zlib.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/util.d.ts": [ - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/globals.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/index.d.ts": [ - "../../node_modules/@types/node/base.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts", - "../../node_modules/@types/node/ts3.2/globals.d.ts", - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/jest-diff/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/index.d.ts": [ - "../../node_modules/jest-diff/build/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/jest/index.d.ts": [ - "../../node_modules/jest-diff/build/index.d.ts", - "../../node_modules/@types/jest-diff/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ] - }, - "exportedModulesMap": { - "../../node_modules/typescript/lib/lib.es5.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.dom.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/version.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/index.d.ts": [ - "../../node_modules/graphql/version.d.ts", - "../../node_modules/graphql/graphql.d.ts", - "../../node_modules/graphql/type/index.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/execution/index.d.ts", - "../../node_modules/graphql/subscription/index.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/utilities/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/onlineParser.ts": [ - "../graphql-language-service-types/src/index.ts", - "./src/Rules.ts" - ], - "./src/index.ts": [ - "./src/CharacterStream.ts", - "./src/Rules.ts", - "./src/RuleHelpers.ts", - "./src/onlineParser.ts" - ], - "./src/Rules.ts": [ - "../graphql-language-service-types/src/index.ts" - ], - "./src/RuleHelpers.ts": [ - "../graphql-language-service-types/src/index.ts" - ], - "./src/CharacterStream.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../graphql-language-service-types/src/index.ts" - ], - "../../node_modules/graphql-config/lib/utils.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/index.d.ts": [ - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", - "../../node_modules/graphql-config/lib/utils.d.ts", - "../../node_modules/graphql-config/lib/errors.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/types.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ - "../../node_modules/graphql-request/dist/src/index.d.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/tsutils/Maybe.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/astFromValue.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/index.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/utilities/getOperationAST.d.ts", - "../../node_modules/graphql/utilities/getOperationRootType.d.ts", - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", - "../../node_modules/graphql/utilities/buildClientSchema.d.ts", - "../../node_modules/graphql/utilities/buildASTSchema.d.ts", - "../../node_modules/graphql/utilities/extendSchema.d.ts", - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", - "../../node_modules/graphql/utilities/schemaPrinter.d.ts", - "../../node_modules/graphql/utilities/typeFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", - "../../node_modules/graphql/utilities/astFromValue.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/utilities/coerceInputValue.d.ts", - "../../node_modules/graphql/utilities/coerceValue.d.ts", - "../../node_modules/graphql/utilities/isValidJSValue.d.ts", - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", - "../../node_modules/graphql/utilities/concatAST.d.ts", - "../../node_modules/graphql/utilities/separateOperations.d.ts", - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", - "../../node_modules/graphql/utilities/typeComparators.d.ts", - "../../node_modules/graphql/utilities/assertValidName.d.ts", - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/blockString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/index.d.ts": [ - "../../node_modules/graphql/validation/validate.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/specifiedRules.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/specifiedRules.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/ValidationContext.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/subscribe.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/index.d.ts": [ - "../../node_modules/graphql/subscription/subscribe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/values.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/execution/values.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/visitor.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/index.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/language/printLocation.d.ts", - "../../node_modules/graphql/language/kinds.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/printer.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/predicates.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/graphql.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/execute.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/GraphQLError.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/assertValidName.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceValue.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/index.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/syntaxError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/error/formatError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/lexer.d.ts": [ - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/parser.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/formatError.d.ts": [ - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/syntaxError.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/scalars.d.ts", - "../../node_modules/graphql/type/introspection.d.ts", - "../../node_modules/graphql/type/validate.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/locatedError.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/schema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeComparators.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/extendSchema.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/definition.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/introspection.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/scalars.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/directives.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/source.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printLocation.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/location.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/ast.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/separateOperations.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/concatAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/predicates.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printer.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/tokenKind.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/Path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/directiveLocation.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/kinds.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/blockString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/index.d.ts": [ - "../../node_modules/graphql-request/dist/src/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/errors.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/globals.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/assert.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/base.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/assert.d.ts", - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/buffer.d.ts", - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/cluster.d.ts", - "../../node_modules/@types/node/console.d.ts", - "../../node_modules/@types/node/constants.d.ts", - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dgram.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/domain.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/http2.d.ts", - "../../node_modules/@types/node/https.d.ts", - "../../node_modules/@types/node/inspector.d.ts", - "../../node_modules/@types/node/module.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/os.d.ts", - "../../node_modules/@types/node/path.d.ts", - "../../node_modules/@types/node/perf_hooks.d.ts", - "../../node_modules/@types/node/process.d.ts", - "../../node_modules/@types/node/punycode.d.ts", - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/repl.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/string_decoder.d.ts", - "../../node_modules/@types/node/timers.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/trace_events.d.ts", - "../../node_modules/@types/node/tty.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/v8.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/worker_threads.d.ts", - "../../node_modules/@types/node/zlib.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/index.d.ts": [ - "../../node_modules/@types/node/base.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts", - "../../node_modules/@types/node/ts3.2/globals.d.ts", - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/node/async_hooks.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/perf_hooks.d.ts": [ - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/buffer.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/events/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/child_process.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/cluster.d.ts": [ - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/console.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/constants.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/crypto.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tls.d.ts": [ - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/https.d.ts": [ - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http2.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dgram.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dns.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/net.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tty.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/domain.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/worker_threads.d.ts": [ - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/stream.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/zlib.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/v8.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/readline.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/repl.d.ts": [ - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/fs.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/inspector.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/module.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/os.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/process.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/punycode.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/querystring.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/url.d.ts": [ - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/string_decoder.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/timers.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/trace_events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/util.d.ts": [ - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/jest/index.d.ts": [ - "../../node_modules/jest-diff/build/index.d.ts", - "../../node_modules/@types/jest-diff/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/index.d.ts": [ - "../../node_modules/jest-diff/build/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/jest-diff/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/globals.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/util.d.ts": [ - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/node/vm.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ] - }, - "semanticDiagnosticsPerFile": [ - "../../node_modules/graphql/version.d.ts", - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/graphql.d.ts", - "../../node_modules/graphql/type/scalars.d.ts", - "../../node_modules/graphql/type/introspection.d.ts", - "../../node_modules/graphql/type/validate.d.ts", - "../../node_modules/graphql/type/index.d.ts", - "../../node_modules/graphql/language/printLocation.d.ts", - "../../node_modules/graphql/language/kinds.d.ts", - "../../node_modules/graphql/error/syntaxError.d.ts", - "../../node_modules/graphql/error/formatError.d.ts", - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/printer.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/predicates.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/execution/values.d.ts", - "../../node_modules/graphql/execution/index.d.ts", - "../../node_modules/graphql/subscription/subscribe.d.ts", - "../../node_modules/graphql/subscription/index.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/validate.d.ts", - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", - "../../node_modules/graphql/validation/specifiedRules.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/utilities/getOperationAST.d.ts", - "../../node_modules/graphql/utilities/getOperationRootType.d.ts", - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", - "../../node_modules/graphql/utilities/buildClientSchema.d.ts", - "../../node_modules/graphql/language/blockString.d.ts", - "../../node_modules/graphql/utilities/buildASTSchema.d.ts", - "../../node_modules/graphql/utilities/extendSchema.d.ts", - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", - "../../node_modules/graphql/utilities/schemaPrinter.d.ts", - "../../node_modules/graphql/utilities/typeFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", - "../../node_modules/graphql/utilities/astFromValue.d.ts", - "../../node_modules/graphql/utilities/coerceInputValue.d.ts", - "../../node_modules/graphql/utilities/coerceValue.d.ts", - "../../node_modules/graphql/utilities/isValidJSValue.d.ts", - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", - "../../node_modules/graphql/utilities/concatAST.d.ts", - "../../node_modules/graphql/utilities/separateOperations.d.ts", - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", - "../../node_modules/graphql/utilities/typeComparators.d.ts", - "../../node_modules/graphql/utilities/assertValidName.d.ts", - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", - "../../node_modules/graphql/utilities/index.d.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-request/dist/src/types.d.ts", - "../../node_modules/graphql-request/dist/src/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", - "../../node_modules/graphql-config/lib/utils.d.ts", - "../../node_modules/graphql-config/lib/errors.d.ts", - "../../node_modules/graphql-config/lib/index.d.ts", - "../graphql-language-service-types/src/index.ts", - "./src/CharacterStream.ts", - "./src/RuleHelpers.ts", - "./src/Rules.ts", - "./src/onlineParser.ts", - "./src/index.ts", - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/assert.d.ts", - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/buffer.d.ts", - "../../node_modules/@types/events/index.d.ts", - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/cluster.d.ts", - "../../node_modules/@types/node/console.d.ts", - "../../node_modules/@types/node/constants.d.ts", - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dgram.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/domain.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/http2.d.ts", - "../../node_modules/@types/node/https.d.ts", - "../../node_modules/@types/node/inspector.d.ts", - "../../node_modules/@types/node/module.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/os.d.ts", - "../../node_modules/@types/node/path.d.ts", - "../../node_modules/@types/node/perf_hooks.d.ts", - "../../node_modules/@types/node/process.d.ts", - "../../node_modules/@types/node/punycode.d.ts", - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/repl.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/string_decoder.d.ts", - "../../node_modules/@types/node/timers.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/trace_events.d.ts", - "../../node_modules/@types/node/tty.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/v8.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/worker_threads.d.ts", - "../../node_modules/@types/node/zlib.d.ts", - "../../node_modules/@types/node/base.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts", - "../../node_modules/@types/node/ts3.2/globals.d.ts", - "../../node_modules/@types/node/ts3.2/index.d.ts", - "../../node_modules/@types/jest-diff/index.d.ts", - "../../node_modules/jest-diff/build/types.d.ts", - "../../node_modules/jest-diff/build/index.d.ts", - "../../node_modules/@types/jest/index.d.ts", - "../../node_modules/typescript/lib/lib.es2015.d.ts", - "../../node_modules/typescript/lib/lib.es2016.d.ts", - "../../node_modules/typescript/lib/lib.es2017.d.ts", - "../../node_modules/typescript/lib/lib.es2018.d.ts", - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts", - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts", - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts", - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts", - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts", - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts", - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts", - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts", - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts", - "../../node_modules/typescript/lib/lib.es2017.string.d.ts", - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts", - "../../node_modules/typescript/lib/lib.es2017.object.d.ts", - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts", - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts", - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts", - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts", - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts", - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts", - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts", - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts", - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts", - "../../node_modules/typescript/lib/lib.es2015.core.d.ts", - "../../node_modules/typescript/lib/lib.dom.d.ts", - "../../node_modules/typescript/lib/lib.es5.d.ts" - ] - }, - "version": "3.6.3" -} \ No newline at end of file diff --git a/packages/graphql-language-service-server/src/__tests__/GraphQLCache-test.js b/packages/graphql-language-service-server/src/__tests__/GraphQLCache-test.js index ece6e92426a..65fa608d999 100644 --- a/packages/graphql-language-service-server/src/__tests__/GraphQLCache-test.js +++ b/packages/graphql-language-service-server/src/__tests__/GraphQLCache-test.js @@ -80,26 +80,34 @@ describe('GraphQLCache', () => { it('extend the schema with appropriate custom directive', async () => { const schema = await cache.getSchema('testWithCustomDirectives'); - expect(wihtoutASTNode(schema.getDirective('customDirective'))).toEqual({ - args: [], - description: undefined, - // TODO: failing now that tests are doing deep comparison - // isRepeatable: false, - locations: ['FIELD'], - name: 'customDirective', - }); + expect( + wihtoutASTNode(schema.getDirective('customDirective')), + ).toMatchObject( + expect.objectContaining({ + args: [], + description: undefined, + // TODO: failing now that tests are doing deep comparison + // isRepeatable: false, + locations: ['FIELD'], + name: 'customDirective', + }), + ); }); it('extend the schema with appropriate custom directive 2', async () => { const schema = await cache.getSchema('testWithSchema'); - expect(wihtoutASTNode(schema.getDirective('customDirective'))).toEqual({ - args: [], - description: undefined, - // TODO: failing now that tests are doing deep comparison - // isRepeatable: false, - locations: ['FRAGMENT_SPREAD'], - name: 'customDirective', - }); + expect( + wihtoutASTNode(schema.getDirective('customDirective')), + ).toMatchObject( + expect.objectContaining({ + args: [], + description: undefined, + // TODO: failing now that tests are doing deep comparison + // isRepeatable: false, + locations: ['FRAGMENT_SPREAD'], + name: 'customDirective', + }), + ); }); }); @@ -254,7 +262,7 @@ describe('GraphQLCache', () => { const query = `type Query { hero(episode: Episode): Character } - + type Episode { id: ID! } diff --git a/packages/graphql-language-service-types/tsconfig.tsbuildinfo b/packages/graphql-language-service-types/tsconfig.tsbuildinfo deleted file mode 100644 index 39f8748c21f..00000000000 --- a/packages/graphql-language-service-types/tsconfig.tsbuildinfo +++ /dev/null @@ -1,3353 +0,0 @@ -{ - "program": { - "fileInfos": { - "../../node_modules/typescript/lib/lib.es5.d.ts": { - "version": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1", - "signature": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1" - }, - "../../node_modules/typescript/lib/lib.es2015.d.ts": { - "version": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96", - "signature": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96" - }, - "../../node_modules/typescript/lib/lib.es2016.d.ts": { - "version": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1", - "signature": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1" - }, - "../../node_modules/typescript/lib/lib.es2017.d.ts": { - "version": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743", - "signature": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743" - }, - "../../node_modules/typescript/lib/lib.es2018.d.ts": { - "version": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091", - "signature": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091" - }, - "../../node_modules/typescript/lib/lib.dom.d.ts": { - "version": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f", - "signature": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f" - }, - "../../node_modules/typescript/lib/lib.es2015.core.d.ts": { - "version": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f", - "signature": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f" - }, - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": { - "version": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0", - "signature": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0" - }, - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": { - "version": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122", - "signature": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122" - }, - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": { - "version": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210", - "signature": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210" - }, - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": { - "version": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2", - "signature": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2" - }, - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": { - "version": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe", - "signature": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe" - }, - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": { - "version": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976", - "signature": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976" - }, - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": { - "version": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230", - "signature": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230" - }, - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": { - "version": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303", - "signature": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303" - }, - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": { - "version": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0", - "signature": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0" - }, - "../../node_modules/typescript/lib/lib.es2017.object.d.ts": { - "version": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4", - "signature": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4" - }, - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": { - "version": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f", - "signature": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f" - }, - "../../node_modules/typescript/lib/lib.es2017.string.d.ts": { - "version": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c", - "signature": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c" - }, - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": { - "version": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6", - "signature": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6" - }, - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": { - "version": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46", - "signature": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46" - }, - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": { - "version": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0", - "signature": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0" - }, - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": { - "version": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10", - "signature": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10" - }, - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": { - "version": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0", - "signature": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0" - }, - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": { - "version": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62", - "signature": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62" - }, - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": { - "version": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8", - "signature": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8" - }, - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": { - "version": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8", - "signature": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8" - }, - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": { - "version": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8", - "signature": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8" - }, - "../../node_modules/graphql/version.d.ts": { - "version": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2", - "signature": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2" - }, - "../../node_modules/graphql/tsutils/Maybe.d.ts": { - "version": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392", - "signature": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392" - }, - "../../node_modules/graphql/language/source.d.ts": { - "version": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd", - "signature": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd" - }, - "../../node_modules/graphql/language/tokenKind.d.ts": { - "version": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78", - "signature": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78" - }, - "../../node_modules/graphql/language/ast.d.ts": { - "version": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937", - "signature": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937" - }, - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": { - "version": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717", - "signature": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717" - }, - "../../node_modules/graphql/jsutils/Path.d.ts": { - "version": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b", - "signature": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b" - }, - "../../node_modules/graphql/type/definition.d.ts": { - "version": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7", - "signature": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7" - }, - "../../node_modules/graphql/language/directiveLocation.d.ts": { - "version": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b", - "signature": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b" - }, - "../../node_modules/graphql/type/directives.d.ts": { - "version": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d", - "signature": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d" - }, - "../../node_modules/graphql/type/schema.d.ts": { - "version": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491", - "signature": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491" - }, - "../../node_modules/graphql/language/location.d.ts": { - "version": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160", - "signature": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160" - }, - "../../node_modules/graphql/error/GraphQLError.d.ts": { - "version": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b", - "signature": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b" - }, - "../../node_modules/graphql/error/locatedError.d.ts": { - "version": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb", - "signature": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb" - }, - "../../node_modules/graphql/execution/execute.d.ts": { - "version": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4", - "signature": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4" - }, - "../../node_modules/graphql/graphql.d.ts": { - "version": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca", - "signature": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca" - }, - "../../node_modules/graphql/type/scalars.d.ts": { - "version": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11", - "signature": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11" - }, - "../../node_modules/graphql/type/introspection.d.ts": { - "version": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870", - "signature": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870" - }, - "../../node_modules/graphql/type/validate.d.ts": { - "version": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30", - "signature": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30" - }, - "../../node_modules/graphql/type/index.d.ts": { - "version": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62", - "signature": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62" - }, - "../../node_modules/graphql/language/printLocation.d.ts": { - "version": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1", - "signature": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1" - }, - "../../node_modules/graphql/language/kinds.d.ts": { - "version": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293", - "signature": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293" - }, - "../../node_modules/graphql/error/syntaxError.d.ts": { - "version": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b", - "signature": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b" - }, - "../../node_modules/graphql/error/formatError.d.ts": { - "version": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23", - "signature": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23" - }, - "../../node_modules/graphql/error/index.d.ts": { - "version": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0", - "signature": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0" - }, - "../../node_modules/graphql/language/lexer.d.ts": { - "version": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023", - "signature": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023" - }, - "../../node_modules/graphql/language/parser.d.ts": { - "version": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e", - "signature": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e" - }, - "../../node_modules/graphql/language/printer.d.ts": { - "version": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41", - "signature": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41" - }, - "../../node_modules/graphql/utilities/TypeInfo.d.ts": { - "version": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4", - "signature": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4" - }, - "../../node_modules/graphql/language/visitor.d.ts": { - "version": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9", - "signature": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9" - }, - "../../node_modules/graphql/language/predicates.d.ts": { - "version": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271", - "signature": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271" - }, - "../../node_modules/graphql/language/index.d.ts": { - "version": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420", - "signature": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420" - }, - "../../node_modules/graphql/execution/values.d.ts": { - "version": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5", - "signature": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5" - }, - "../../node_modules/graphql/execution/index.d.ts": { - "version": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24", - "signature": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24" - }, - "../../node_modules/graphql/subscription/subscribe.d.ts": { - "version": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22", - "signature": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22" - }, - "../../node_modules/graphql/subscription/index.d.ts": { - "version": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3", - "signature": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3" - }, - "../../node_modules/graphql/validation/ValidationContext.d.ts": { - "version": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14", - "signature": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14" - }, - "../../node_modules/graphql/validation/validate.d.ts": { - "version": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95", - "signature": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95" - }, - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": { - "version": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163", - "signature": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163" - }, - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": { - "version": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152", - "signature": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152" - }, - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": { - "version": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb", - "signature": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb" - }, - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": { - "version": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e", - "signature": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e" - }, - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": { - "version": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6", - "signature": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6" - }, - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": { - "version": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9", - "signature": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9" - }, - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": { - "version": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9", - "signature": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9" - }, - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": { - "version": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5", - "signature": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5" - }, - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": { - "version": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae", - "signature": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae" - }, - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": { - "version": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a", - "signature": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a" - }, - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": { - "version": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f", - "signature": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f" - }, - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": { - "version": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222", - "signature": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222" - }, - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": { - "version": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce", - "signature": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce" - }, - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": { - "version": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294", - "signature": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294" - }, - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": { - "version": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc", - "signature": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc" - }, - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": { - "version": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f", - "signature": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f" - }, - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": { - "version": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014", - "signature": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014" - }, - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": { - "version": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae", - "signature": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae" - }, - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": { - "version": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5", - "signature": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5" - }, - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": { - "version": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73", - "signature": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73" - }, - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": { - "version": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c", - "signature": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c" - }, - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": { - "version": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b", - "signature": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b" - }, - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": { - "version": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1", - "signature": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1" - }, - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": { - "version": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2", - "signature": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2" - }, - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": { - "version": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8", - "signature": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8" - }, - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": { - "version": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c", - "signature": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c" - }, - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": { - "version": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e", - "signature": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e" - }, - "../../node_modules/graphql/validation/specifiedRules.d.ts": { - "version": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d", - "signature": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d" - }, - "../../node_modules/graphql/validation/index.d.ts": { - "version": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423", - "signature": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423" - }, - "../../node_modules/graphql/utilities/introspectionQuery.d.ts": { - "version": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597", - "signature": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597" - }, - "../../node_modules/graphql/utilities/getOperationAST.d.ts": { - "version": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8", - "signature": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8" - }, - "../../node_modules/graphql/utilities/getOperationRootType.d.ts": { - "version": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc", - "signature": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc" - }, - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": { - "version": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d", - "signature": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d" - }, - "../../node_modules/graphql/utilities/buildClientSchema.d.ts": { - "version": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820", - "signature": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820" - }, - "../../node_modules/graphql/language/blockString.d.ts": { - "version": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86", - "signature": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86" - }, - "../../node_modules/graphql/utilities/buildASTSchema.d.ts": { - "version": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7", - "signature": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7" - }, - "../../node_modules/graphql/utilities/extendSchema.d.ts": { - "version": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b", - "signature": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b" - }, - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": { - "version": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896", - "signature": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896" - }, - "../../node_modules/graphql/utilities/schemaPrinter.d.ts": { - "version": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff", - "signature": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff" - }, - "../../node_modules/graphql/utilities/typeFromAST.d.ts": { - "version": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922", - "signature": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922" - }, - "../../node_modules/graphql/utilities/valueFromAST.d.ts": { - "version": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b", - "signature": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b" - }, - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": { - "version": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf", - "signature": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf" - }, - "../../node_modules/graphql/utilities/astFromValue.d.ts": { - "version": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae", - "signature": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae" - }, - "../../node_modules/graphql/utilities/coerceInputValue.d.ts": { - "version": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5", - "signature": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5" - }, - "../../node_modules/graphql/utilities/coerceValue.d.ts": { - "version": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197", - "signature": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197" - }, - "../../node_modules/graphql/utilities/isValidJSValue.d.ts": { - "version": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f", - "signature": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f" - }, - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": { - "version": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8", - "signature": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8" - }, - "../../node_modules/graphql/utilities/concatAST.d.ts": { - "version": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9", - "signature": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9" - }, - "../../node_modules/graphql/utilities/separateOperations.d.ts": { - "version": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a", - "signature": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a" - }, - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": { - "version": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c", - "signature": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c" - }, - "../../node_modules/graphql/utilities/typeComparators.d.ts": { - "version": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454", - "signature": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454" - }, - "../../node_modules/graphql/utilities/assertValidName.d.ts": { - "version": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5", - "signature": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5" - }, - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": { - "version": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a", - "signature": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a" - }, - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": { - "version": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b", - "signature": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b" - }, - "../../node_modules/graphql/utilities/index.d.ts": { - "version": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e", - "signature": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e" - }, - "../../node_modules/graphql/index.d.ts": { - "version": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6", - "signature": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6" - }, - "../../node_modules/graphql-request/dist/src/types.d.ts": { - "version": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4", - "signature": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4" - }, - "../../node_modules/graphql-request/dist/src/index.d.ts": { - "version": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786", - "signature": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786" - }, - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": { - "version": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a", - "signature": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a" - }, - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": { - "version": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc", - "signature": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc" - }, - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": { - "version": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644", - "signature": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644" - }, - "../../node_modules/graphql-config/lib/extensions/index.d.ts": { - "version": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41", - "signature": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41" - }, - "../../node_modules/graphql-config/lib/types.d.ts": { - "version": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6", - "signature": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6" - }, - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": { - "version": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca", - "signature": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca" - }, - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": { - "version": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf", - "signature": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf" - }, - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": { - "version": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca", - "signature": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca" - }, - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": { - "version": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411", - "signature": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411" - }, - "../../node_modules/graphql-config/lib/utils.d.ts": { - "version": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4", - "signature": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4" - }, - "../../node_modules/graphql-config/lib/errors.d.ts": { - "version": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9", - "signature": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9" - }, - "../../node_modules/graphql-config/lib/index.d.ts": { - "version": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4", - "signature": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4" - }, - "./src/index.ts": { - "version": "0eccbb489f441658fcd2acfe7811403eed555060b86fcf4683ef1ee34245ccc6", - "signature": "6c53f93b9c40562253e73e4a0e85ce5145b5772810b6421bc99ba72f6fac46b4" - }, - "../../node_modules/@types/node/globals.d.ts": { - "version": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed", - "signature": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed" - }, - "../../node_modules/@types/node/assert.d.ts": { - "version": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f", - "signature": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f" - }, - "../../node_modules/@types/node/async_hooks.d.ts": { - "version": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561", - "signature": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561" - }, - "../../node_modules/@types/node/buffer.d.ts": { - "version": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878", - "signature": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878" - }, - "../../node_modules/@types/events/index.d.ts": { - "version": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935", - "signature": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935" - }, - "../../node_modules/@types/node/child_process.d.ts": { - "version": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003", - "signature": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003" - }, - "../../node_modules/@types/node/cluster.d.ts": { - "version": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a", - "signature": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a" - }, - "../../node_modules/@types/node/console.d.ts": { - "version": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d", - "signature": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d" - }, - "../../node_modules/@types/node/constants.d.ts": { - "version": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424", - "signature": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424" - }, - "../../node_modules/@types/node/crypto.d.ts": { - "version": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b", - "signature": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b" - }, - "../../node_modules/@types/node/dgram.d.ts": { - "version": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30", - "signature": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30" - }, - "../../node_modules/@types/node/dns.d.ts": { - "version": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c", - "signature": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c" - }, - "../../node_modules/@types/node/domain.d.ts": { - "version": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa", - "signature": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa" - }, - "../../node_modules/@types/node/events.d.ts": { - "version": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c", - "signature": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c" - }, - "../../node_modules/@types/node/fs.d.ts": { - "version": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882", - "signature": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882" - }, - "../../node_modules/@types/node/http.d.ts": { - "version": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36", - "signature": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36" - }, - "../../node_modules/@types/node/http2.d.ts": { - "version": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d", - "signature": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d" - }, - "../../node_modules/@types/node/https.d.ts": { - "version": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6", - "signature": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6" - }, - "../../node_modules/@types/node/inspector.d.ts": { - "version": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c", - "signature": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c" - }, - "../../node_modules/@types/node/module.d.ts": { - "version": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66", - "signature": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66" - }, - "../../node_modules/@types/node/net.d.ts": { - "version": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4", - "signature": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4" - }, - "../../node_modules/@types/node/os.d.ts": { - "version": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486", - "signature": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486" - }, - "../../node_modules/@types/node/path.d.ts": { - "version": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36", - "signature": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36" - }, - "../../node_modules/@types/node/perf_hooks.d.ts": { - "version": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f", - "signature": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f" - }, - "../../node_modules/@types/node/process.d.ts": { - "version": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389", - "signature": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389" - }, - "../../node_modules/@types/node/punycode.d.ts": { - "version": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1", - "signature": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1" - }, - "../../node_modules/@types/node/querystring.d.ts": { - "version": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e", - "signature": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e" - }, - "../../node_modules/@types/node/readline.d.ts": { - "version": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24", - "signature": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24" - }, - "../../node_modules/@types/node/repl.d.ts": { - "version": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157", - "signature": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157" - }, - "../../node_modules/@types/node/stream.d.ts": { - "version": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd", - "signature": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd" - }, - "../../node_modules/@types/node/string_decoder.d.ts": { - "version": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432", - "signature": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432" - }, - "../../node_modules/@types/node/timers.d.ts": { - "version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9", - "signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9" - }, - "../../node_modules/@types/node/tls.d.ts": { - "version": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a", - "signature": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a" - }, - "../../node_modules/@types/node/trace_events.d.ts": { - "version": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662", - "signature": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662" - }, - "../../node_modules/@types/node/tty.d.ts": { - "version": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007", - "signature": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007" - }, - "../../node_modules/@types/node/url.d.ts": { - "version": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7", - "signature": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7" - }, - "../../node_modules/@types/node/util.d.ts": { - "version": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12", - "signature": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12" - }, - "../../node_modules/@types/node/v8.d.ts": { - "version": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725", - "signature": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725" - }, - "../../node_modules/@types/node/vm.d.ts": { - "version": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562", - "signature": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562" - }, - "../../node_modules/@types/node/worker_threads.d.ts": { - "version": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb", - "signature": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb" - }, - "../../node_modules/@types/node/zlib.d.ts": { - "version": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b", - "signature": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b" - }, - "../../node_modules/@types/node/base.d.ts": { - "version": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce", - "signature": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce" - }, - "../../node_modules/@types/node/ts3.2/util.d.ts": { - "version": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c", - "signature": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c" - }, - "../../node_modules/@types/node/ts3.2/globals.d.ts": { - "version": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1", - "signature": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1" - }, - "../../node_modules/@types/node/ts3.2/index.d.ts": { - "version": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c", - "signature": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c" - }, - "../../node_modules/@types/jest-diff/index.d.ts": { - "version": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06", - "signature": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06" - }, - "../../node_modules/jest-diff/build/types.d.ts": { - "version": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7", - "signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7" - }, - "../../node_modules/jest-diff/build/index.d.ts": { - "version": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4", - "signature": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4" - }, - "../../node_modules/@types/jest/index.d.ts": { - "version": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b", - "signature": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b" - } - }, - "options": { - "composite": true, - "target": 99, - "module": 99, - "moduleResolution": 2, - "esModuleInterop": true, - "sourceMap": true, - "declaration": true, - "declarationMap": true, - "removeComments": true, - "strict": true, - "noImplicitAny": true, - "noImplicitReturns": false, - "noFallthroughCasesInSwitch": true, - "noUnusedParameters": true, - "noUnusedLocals": true, - "forceConsistentCasingInFileNames": true, - "lib": [ - "lib.dom.d.ts", - "lib.es2017.d.ts", - "lib.es2018.asynciterable.d.ts" - ], - "types": [ - "node", - "jest" - ], - "baseUrl": "../..", - "paths": { - "graphql-language-*": [ - "graphql-language-*" - ] - }, - "rootDir": "./src", - "outDir": "./dist", - "configFilePath": "./tsconfig.json" - }, - "referencedMap": { - "../../node_modules/typescript/lib/lib.es5.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.dom.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/version.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/tsutils/Maybe.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/source.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/tokenKind.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/ast.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/Path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/definition.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/directiveLocation.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/directives.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/schema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/location.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/GraphQLError.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/locatedError.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/execute.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/graphql.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/scalars.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/introspection.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/scalars.d.ts", - "../../node_modules/graphql/type/introspection.d.ts", - "../../node_modules/graphql/type/validate.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printLocation.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/kinds.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/syntaxError.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/formatError.d.ts": [ - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/index.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/syntaxError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/error/formatError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/lexer.d.ts": [ - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/parser.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printer.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/visitor.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/predicates.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/index.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/language/printLocation.d.ts", - "../../node_modules/graphql/language/kinds.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/printer.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/predicates.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/values.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/execution/values.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/subscribe.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/index.d.ts": [ - "../../node_modules/graphql/subscription/subscribe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/ValidationContext.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/specifiedRules.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/index.d.ts": [ - "../../node_modules/graphql/validation/validate.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/specifiedRules.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/blockString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/blockString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/extendSchema.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/astFromValue.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceValue.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/concatAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/separateOperations.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeComparators.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/assertValidName.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/index.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/utilities/getOperationAST.d.ts", - "../../node_modules/graphql/utilities/getOperationRootType.d.ts", - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", - "../../node_modules/graphql/utilities/buildClientSchema.d.ts", - "../../node_modules/graphql/utilities/buildASTSchema.d.ts", - "../../node_modules/graphql/utilities/extendSchema.d.ts", - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", - "../../node_modules/graphql/utilities/schemaPrinter.d.ts", - "../../node_modules/graphql/utilities/typeFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", - "../../node_modules/graphql/utilities/astFromValue.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/utilities/coerceInputValue.d.ts", - "../../node_modules/graphql/utilities/coerceValue.d.ts", - "../../node_modules/graphql/utilities/isValidJSValue.d.ts", - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", - "../../node_modules/graphql/utilities/concatAST.d.ts", - "../../node_modules/graphql/utilities/separateOperations.d.ts", - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", - "../../node_modules/graphql/utilities/typeComparators.d.ts", - "../../node_modules/graphql/utilities/assertValidName.d.ts", - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/index.d.ts": [ - "../../node_modules/graphql/version.d.ts", - "../../node_modules/graphql/graphql.d.ts", - "../../node_modules/graphql/type/index.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/execution/index.d.ts", - "../../node_modules/graphql/subscription/index.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/utilities/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/index.d.ts": [ - "../../node_modules/graphql-request/dist/src/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ - "../../node_modules/graphql-request/dist/src/index.d.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/types.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/utils.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/errors.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/index.d.ts": [ - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", - "../../node_modules/graphql-config/lib/utils.d.ts", - "../../node_modules/graphql-config/lib/errors.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/index.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql-config/lib/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/globals.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/assert.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/async_hooks.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/buffer.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/events/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/child_process.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/cluster.d.ts": [ - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/console.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/constants.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/crypto.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dgram.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dns.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/domain.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/fs.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http2.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/https.d.ts": [ - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/inspector.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/module.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/net.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/os.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/perf_hooks.d.ts": [ - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/process.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/punycode.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/querystring.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/readline.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/repl.d.ts": [ - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/stream.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/string_decoder.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/timers.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tls.d.ts": [ - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/trace_events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tty.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/url.d.ts": [ - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/util.d.ts": [ - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/v8.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/vm.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/worker_threads.d.ts": [ - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/zlib.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/base.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/assert.d.ts", - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/buffer.d.ts", - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/cluster.d.ts", - "../../node_modules/@types/node/console.d.ts", - "../../node_modules/@types/node/constants.d.ts", - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dgram.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/domain.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/http2.d.ts", - "../../node_modules/@types/node/https.d.ts", - "../../node_modules/@types/node/inspector.d.ts", - "../../node_modules/@types/node/module.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/os.d.ts", - "../../node_modules/@types/node/path.d.ts", - "../../node_modules/@types/node/perf_hooks.d.ts", - "../../node_modules/@types/node/process.d.ts", - "../../node_modules/@types/node/punycode.d.ts", - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/repl.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/string_decoder.d.ts", - "../../node_modules/@types/node/timers.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/trace_events.d.ts", - "../../node_modules/@types/node/tty.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/v8.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/worker_threads.d.ts", - "../../node_modules/@types/node/zlib.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/util.d.ts": [ - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/globals.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/index.d.ts": [ - "../../node_modules/@types/node/base.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts", - "../../node_modules/@types/node/ts3.2/globals.d.ts", - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/jest-diff/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/index.d.ts": [ - "../../node_modules/jest-diff/build/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/jest/index.d.ts": [ - "../../node_modules/jest-diff/build/index.d.ts", - "../../node_modules/@types/jest-diff/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ] - }, - "exportedModulesMap": { - "../../node_modules/typescript/lib/lib.es5.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.dom.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/version.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/index.d.ts": [ - "../../node_modules/graphql/version.d.ts", - "../../node_modules/graphql/graphql.d.ts", - "../../node_modules/graphql/type/index.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/execution/index.d.ts", - "../../node_modules/graphql/subscription/index.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/utilities/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/index.ts": [ - "../../node_modules/graphql-config/lib/index.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/validation/index.d.ts" - ], - "../../node_modules/graphql-config/lib/utils.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/index.d.ts": [ - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", - "../../node_modules/graphql-config/lib/utils.d.ts", - "../../node_modules/graphql-config/lib/errors.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/types.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ - "../../node_modules/graphql-request/dist/src/index.d.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/tsutils/Maybe.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/astFromValue.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/index.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/utilities/getOperationAST.d.ts", - "../../node_modules/graphql/utilities/getOperationRootType.d.ts", - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", - "../../node_modules/graphql/utilities/buildClientSchema.d.ts", - "../../node_modules/graphql/utilities/buildASTSchema.d.ts", - "../../node_modules/graphql/utilities/extendSchema.d.ts", - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", - "../../node_modules/graphql/utilities/schemaPrinter.d.ts", - "../../node_modules/graphql/utilities/typeFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", - "../../node_modules/graphql/utilities/astFromValue.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/utilities/coerceInputValue.d.ts", - "../../node_modules/graphql/utilities/coerceValue.d.ts", - "../../node_modules/graphql/utilities/isValidJSValue.d.ts", - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", - "../../node_modules/graphql/utilities/concatAST.d.ts", - "../../node_modules/graphql/utilities/separateOperations.d.ts", - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", - "../../node_modules/graphql/utilities/typeComparators.d.ts", - "../../node_modules/graphql/utilities/assertValidName.d.ts", - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/blockString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/index.d.ts": [ - "../../node_modules/graphql/validation/validate.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/specifiedRules.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/specifiedRules.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/ValidationContext.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/subscribe.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/index.d.ts": [ - "../../node_modules/graphql/subscription/subscribe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/values.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/execution/values.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/visitor.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/index.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/language/printLocation.d.ts", - "../../node_modules/graphql/language/kinds.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/printer.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/predicates.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/graphql.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/execute.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/GraphQLError.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/assertValidName.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceValue.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/index.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/syntaxError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/error/formatError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/lexer.d.ts": [ - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/parser.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/formatError.d.ts": [ - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/syntaxError.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/scalars.d.ts", - "../../node_modules/graphql/type/introspection.d.ts", - "../../node_modules/graphql/type/validate.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/locatedError.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/schema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeComparators.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/extendSchema.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/definition.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/introspection.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/scalars.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/directives.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/source.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printLocation.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/location.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/ast.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/separateOperations.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/concatAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/predicates.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printer.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/tokenKind.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/Path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/directiveLocation.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/kinds.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/blockString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/index.d.ts": [ - "../../node_modules/graphql-request/dist/src/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/errors.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/globals.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/assert.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/base.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/assert.d.ts", - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/buffer.d.ts", - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/cluster.d.ts", - "../../node_modules/@types/node/console.d.ts", - "../../node_modules/@types/node/constants.d.ts", - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dgram.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/domain.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/http2.d.ts", - "../../node_modules/@types/node/https.d.ts", - "../../node_modules/@types/node/inspector.d.ts", - "../../node_modules/@types/node/module.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/os.d.ts", - "../../node_modules/@types/node/path.d.ts", - "../../node_modules/@types/node/perf_hooks.d.ts", - "../../node_modules/@types/node/process.d.ts", - "../../node_modules/@types/node/punycode.d.ts", - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/repl.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/string_decoder.d.ts", - "../../node_modules/@types/node/timers.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/trace_events.d.ts", - "../../node_modules/@types/node/tty.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/v8.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/worker_threads.d.ts", - "../../node_modules/@types/node/zlib.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/index.d.ts": [ - "../../node_modules/@types/node/base.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts", - "../../node_modules/@types/node/ts3.2/globals.d.ts", - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/node/async_hooks.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/perf_hooks.d.ts": [ - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/buffer.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/events/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/child_process.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/cluster.d.ts": [ - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/console.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/constants.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/crypto.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tls.d.ts": [ - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/https.d.ts": [ - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http2.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dgram.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dns.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/net.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tty.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/domain.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/worker_threads.d.ts": [ - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/stream.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/zlib.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/v8.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/readline.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/repl.d.ts": [ - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/fs.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/inspector.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/module.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/os.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/process.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/punycode.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/querystring.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/url.d.ts": [ - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/string_decoder.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/timers.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/trace_events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/util.d.ts": [ - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/jest/index.d.ts": [ - "../../node_modules/jest-diff/build/index.d.ts", - "../../node_modules/@types/jest-diff/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/index.d.ts": [ - "../../node_modules/jest-diff/build/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/jest-diff/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/globals.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/util.d.ts": [ - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/node/vm.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ] - }, - "semanticDiagnosticsPerFile": [ - "../../node_modules/graphql/version.d.ts", - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/graphql.d.ts", - "../../node_modules/graphql/type/scalars.d.ts", - "../../node_modules/graphql/type/introspection.d.ts", - "../../node_modules/graphql/type/validate.d.ts", - "../../node_modules/graphql/type/index.d.ts", - "../../node_modules/graphql/language/printLocation.d.ts", - "../../node_modules/graphql/language/kinds.d.ts", - "../../node_modules/graphql/error/syntaxError.d.ts", - "../../node_modules/graphql/error/formatError.d.ts", - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/printer.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/predicates.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/execution/values.d.ts", - "../../node_modules/graphql/execution/index.d.ts", - "../../node_modules/graphql/subscription/subscribe.d.ts", - "../../node_modules/graphql/subscription/index.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/validate.d.ts", - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", - "../../node_modules/graphql/validation/specifiedRules.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/utilities/getOperationAST.d.ts", - "../../node_modules/graphql/utilities/getOperationRootType.d.ts", - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", - "../../node_modules/graphql/utilities/buildClientSchema.d.ts", - "../../node_modules/graphql/language/blockString.d.ts", - "../../node_modules/graphql/utilities/buildASTSchema.d.ts", - "../../node_modules/graphql/utilities/extendSchema.d.ts", - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", - "../../node_modules/graphql/utilities/schemaPrinter.d.ts", - "../../node_modules/graphql/utilities/typeFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", - "../../node_modules/graphql/utilities/astFromValue.d.ts", - "../../node_modules/graphql/utilities/coerceInputValue.d.ts", - "../../node_modules/graphql/utilities/coerceValue.d.ts", - "../../node_modules/graphql/utilities/isValidJSValue.d.ts", - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", - "../../node_modules/graphql/utilities/concatAST.d.ts", - "../../node_modules/graphql/utilities/separateOperations.d.ts", - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", - "../../node_modules/graphql/utilities/typeComparators.d.ts", - "../../node_modules/graphql/utilities/assertValidName.d.ts", - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", - "../../node_modules/graphql/utilities/index.d.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-request/dist/src/types.d.ts", - "../../node_modules/graphql-request/dist/src/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", - "../../node_modules/graphql-config/lib/utils.d.ts", - "../../node_modules/graphql-config/lib/errors.d.ts", - "../../node_modules/graphql-config/lib/index.d.ts", - "./src/index.ts", - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/assert.d.ts", - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/buffer.d.ts", - "../../node_modules/@types/events/index.d.ts", - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/cluster.d.ts", - "../../node_modules/@types/node/console.d.ts", - "../../node_modules/@types/node/constants.d.ts", - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dgram.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/domain.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/http2.d.ts", - "../../node_modules/@types/node/https.d.ts", - "../../node_modules/@types/node/inspector.d.ts", - "../../node_modules/@types/node/module.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/os.d.ts", - "../../node_modules/@types/node/path.d.ts", - "../../node_modules/@types/node/perf_hooks.d.ts", - "../../node_modules/@types/node/process.d.ts", - "../../node_modules/@types/node/punycode.d.ts", - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/repl.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/string_decoder.d.ts", - "../../node_modules/@types/node/timers.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/trace_events.d.ts", - "../../node_modules/@types/node/tty.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/v8.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/worker_threads.d.ts", - "../../node_modules/@types/node/zlib.d.ts", - "../../node_modules/@types/node/base.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts", - "../../node_modules/@types/node/ts3.2/globals.d.ts", - "../../node_modules/@types/node/ts3.2/index.d.ts", - "../../node_modules/@types/jest-diff/index.d.ts", - "../../node_modules/jest-diff/build/types.d.ts", - "../../node_modules/jest-diff/build/index.d.ts", - "../../node_modules/@types/jest/index.d.ts", - "../../node_modules/typescript/lib/lib.es2015.d.ts", - "../../node_modules/typescript/lib/lib.es2016.d.ts", - "../../node_modules/typescript/lib/lib.es2017.d.ts", - "../../node_modules/typescript/lib/lib.es2018.d.ts", - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts", - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts", - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts", - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts", - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts", - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts", - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts", - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts", - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts", - "../../node_modules/typescript/lib/lib.es2017.string.d.ts", - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts", - "../../node_modules/typescript/lib/lib.es2017.object.d.ts", - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts", - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts", - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts", - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts", - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts", - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts", - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts", - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts", - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts", - "../../node_modules/typescript/lib/lib.es2015.core.d.ts", - "../../node_modules/typescript/lib/lib.dom.d.ts", - "../../node_modules/typescript/lib/lib.es5.d.ts" - ] - }, - "version": "3.6.3" -} \ No newline at end of file diff --git a/packages/graphql-language-service-utils/tsconfig.tsbuildinfo b/packages/graphql-language-service-utils/tsconfig.tsbuildinfo deleted file mode 100644 index 41ecebe7414..00000000000 --- a/packages/graphql-language-service-utils/tsconfig.tsbuildinfo +++ /dev/null @@ -1,3412 +0,0 @@ -{ - "program": { - "fileInfos": { - "../../node_modules/typescript/lib/lib.es5.d.ts": { - "version": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1", - "signature": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1" - }, - "../../node_modules/typescript/lib/lib.es2015.d.ts": { - "version": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96", - "signature": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96" - }, - "../../node_modules/typescript/lib/lib.es2016.d.ts": { - "version": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1", - "signature": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1" - }, - "../../node_modules/typescript/lib/lib.es2017.d.ts": { - "version": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743", - "signature": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743" - }, - "../../node_modules/typescript/lib/lib.es2018.d.ts": { - "version": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091", - "signature": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091" - }, - "../../node_modules/typescript/lib/lib.dom.d.ts": { - "version": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f", - "signature": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f" - }, - "../../node_modules/typescript/lib/lib.es2015.core.d.ts": { - "version": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f", - "signature": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f" - }, - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": { - "version": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0", - "signature": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0" - }, - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": { - "version": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122", - "signature": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122" - }, - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": { - "version": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210", - "signature": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210" - }, - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": { - "version": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2", - "signature": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2" - }, - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": { - "version": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe", - "signature": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe" - }, - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": { - "version": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976", - "signature": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976" - }, - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": { - "version": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230", - "signature": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230" - }, - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": { - "version": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303", - "signature": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303" - }, - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": { - "version": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0", - "signature": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0" - }, - "../../node_modules/typescript/lib/lib.es2017.object.d.ts": { - "version": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4", - "signature": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4" - }, - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": { - "version": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f", - "signature": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f" - }, - "../../node_modules/typescript/lib/lib.es2017.string.d.ts": { - "version": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c", - "signature": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c" - }, - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": { - "version": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6", - "signature": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6" - }, - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": { - "version": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46", - "signature": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46" - }, - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": { - "version": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0", - "signature": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0" - }, - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": { - "version": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10", - "signature": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10" - }, - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": { - "version": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0", - "signature": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0" - }, - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": { - "version": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62", - "signature": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62" - }, - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": { - "version": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8", - "signature": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8" - }, - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": { - "version": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8", - "signature": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8" - }, - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": { - "version": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8", - "signature": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8" - }, - "../../node_modules/graphql/language/source.d.ts": { - "version": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd", - "signature": "edd0c6bed787da0201d4dfeb44f7fc1724563ca89042e3f543bd879c433a6bdd" - }, - "../../node_modules/graphql/language/location.d.ts": { - "version": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160", - "signature": "95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160" - }, - "../../node_modules/graphql/language/tokenKind.d.ts": { - "version": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78", - "signature": "179ac19e0cedaefa9bad359d7124724838aed1ad9e4d6e3ee02fef158f7c5b78" - }, - "../../node_modules/graphql/language/ast.d.ts": { - "version": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937", - "signature": "c83f304bbb07745e87528dfbb19f71bfc6d5caa9439ff02c9f0b0e77ae6c1937" - }, - "../../node_modules/graphql/language/printLocation.d.ts": { - "version": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1", - "signature": "e7accfe8bef530f48593b8142f82088a6ca3fcb444f940c8e333a2f5068d22b1" - }, - "../../node_modules/graphql/language/kinds.d.ts": { - "version": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293", - "signature": "7e4b1e46e9d5873855d774c0b1d2770e2f7e3d06b59e4cbcaceff2aab7662293" - }, - "../../node_modules/graphql/tsutils/Maybe.d.ts": { - "version": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392", - "signature": "ef0e9372b2f8e0afcf521501c1d88a0a32274832bf542d902ac709a9a9699392" - }, - "../../node_modules/graphql/error/GraphQLError.d.ts": { - "version": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b", - "signature": "29e6df218d699507057124ec3dcb6b09fcdc2741cf30108cdbc5726e881a954b" - }, - "../../node_modules/graphql/error/syntaxError.d.ts": { - "version": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b", - "signature": "bd23007d22f66dd6b461e8d120981dbd683b77048da82fee8b68281bacdc107b" - }, - "../../node_modules/graphql/error/locatedError.d.ts": { - "version": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb", - "signature": "daebcde9337e695d9ed5366b0d40e821878084cf28354afe646f1b0d5cd6a0bb" - }, - "../../node_modules/graphql/error/formatError.d.ts": { - "version": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23", - "signature": "6585061d7a7a1b5f2824f055ecb1929a7ae442328261d3900b83b934cd4a4e23" - }, - "../../node_modules/graphql/error/index.d.ts": { - "version": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0", - "signature": "5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0" - }, - "../../node_modules/graphql/language/lexer.d.ts": { - "version": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023", - "signature": "73226656a415fe9416516584fbec25869af51b853aa8e6fa3733842ec828d023" - }, - "../../node_modules/graphql/language/parser.d.ts": { - "version": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e", - "signature": "33ba8aa10e289fbc1383d5634148b87a6367e1e454011d84efbb00690aec800e" - }, - "../../node_modules/graphql/language/printer.d.ts": { - "version": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41", - "signature": "1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41" - }, - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": { - "version": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717", - "signature": "641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717" - }, - "../../node_modules/graphql/jsutils/Path.d.ts": { - "version": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b", - "signature": "9a270d184390b8fe3ab1dc838da770a10663611c644d8e11e4e2c2d4389e3d5b" - }, - "../../node_modules/graphql/type/definition.d.ts": { - "version": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7", - "signature": "e204da770c705a4486c23fe0a3a9b997eadfecc2f01764e9f4b42accb134a3e7" - }, - "../../node_modules/graphql/language/directiveLocation.d.ts": { - "version": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b", - "signature": "ad193a600d60c419e7d95b2570a09af40a401b4f43de818220f00852ebf9f60b" - }, - "../../node_modules/graphql/type/directives.d.ts": { - "version": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d", - "signature": "0e53de55d29ec1bc546713b65d972473ad5f71fc70c277427c5eccd26d54b85d" - }, - "../../node_modules/graphql/type/schema.d.ts": { - "version": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491", - "signature": "1c971c6c8dd21b6318626bf6f7edf758759c04b407d79185380465fe4fb33491" - }, - "../../node_modules/graphql/utilities/TypeInfo.d.ts": { - "version": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4", - "signature": "d2fa72c1c23766e73b15c4a2d2e8cf3fcef94eeb1e8d518748961232614ea1a4" - }, - "../../node_modules/graphql/language/visitor.d.ts": { - "version": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9", - "signature": "e59876b705c63f286daaf93e782dda8bbc95edb00ff0a76c76ca8d44df8be7f9" - }, - "../../node_modules/graphql/language/predicates.d.ts": { - "version": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271", - "signature": "1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271" - }, - "../../node_modules/graphql/language/index.d.ts": { - "version": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420", - "signature": "937ea64d66f13db205d2f8890efc13984a8ccde20b815349ac5bf724df04a420" - }, - "../../node_modules/graphql/version.d.ts": { - "version": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2", - "signature": "fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2" - }, - "../../node_modules/graphql/execution/execute.d.ts": { - "version": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4", - "signature": "9e7f5eba6467df262bbdfdcd120cd027b55e7069b4e7f7eb6d6daed5fcecd9e4" - }, - "../../node_modules/graphql/graphql.d.ts": { - "version": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca", - "signature": "3179c700bec2f2a77f28211446aefd29c8b55bc64979a256592f93861aea8eca" - }, - "../../node_modules/graphql/type/scalars.d.ts": { - "version": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11", - "signature": "5bccdb72daea90b8d204dde7feca167af0726cc517ba861bbe135b034826fb11" - }, - "../../node_modules/graphql/type/introspection.d.ts": { - "version": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870", - "signature": "b88bc098ce093f48979097a4195ee8ec26e2398752b004f86a5362dee2b84870" - }, - "../../node_modules/graphql/type/validate.d.ts": { - "version": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30", - "signature": "b4ea3884eab12abc7dbee203db37d6db80d22be096e92cf71e0e74bf91c61c30" - }, - "../../node_modules/graphql/type/index.d.ts": { - "version": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62", - "signature": "82758b3f7f2813ee815849ce802cef718239d521414f8d61b233f6cfa4790e62" - }, - "../../node_modules/graphql/execution/values.d.ts": { - "version": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5", - "signature": "66cac0f88bd0448282ac82d4e4495dba0736f001c11aead9d7e9d731a9d963e5" - }, - "../../node_modules/graphql/execution/index.d.ts": { - "version": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24", - "signature": "c28feef2fa4cfb3be48b3d90c9742135f62b009528467982157ca1bb33a40d24" - }, - "../../node_modules/graphql/subscription/subscribe.d.ts": { - "version": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22", - "signature": "1065a31fea2f98382b7efd9ac6bb39249f90e81b23843c845edd16251cb1ac22" - }, - "../../node_modules/graphql/subscription/index.d.ts": { - "version": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3", - "signature": "a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3" - }, - "../../node_modules/graphql/validation/ValidationContext.d.ts": { - "version": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14", - "signature": "88ddd9fff244b65754ae40499bb2c3dbecdc957ba17599be500d553263b4fa14" - }, - "../../node_modules/graphql/validation/validate.d.ts": { - "version": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95", - "signature": "5a53d40b6d6b4535266af57fe5b5dcdee4e62e9d972c4e1dcedd6d7d5d50eb95" - }, - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": { - "version": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163", - "signature": "f84bcbfacd4885ccda91fadf91660227804cd797ace7e6e6b3a06dd1390c9163" - }, - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": { - "version": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152", - "signature": "79e366844c72834fc70e03ba25ee7d9e17f088785820c4c8d76c4aed0f666152" - }, - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": { - "version": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb", - "signature": "af1f0d55a36ba07d5b33052706a697931820facbdef86805f971e4a9fa271adb" - }, - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": { - "version": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e", - "signature": "d61a35a8dff32ff8e32471c28d0b4bc7864175f49c26d73f229e40740e44a89e" - }, - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": { - "version": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6", - "signature": "7dd2ac606034694b347256308bf9cce02f59dcc1803e863508c4a3e3ad596fd6" - }, - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": { - "version": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9", - "signature": "01f601d0232a3ab616725f9e3d58774eafe60a7c6edd839e0a3ec826ac68ada9" - }, - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": { - "version": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9", - "signature": "c90d2b93911bb5203731478c45bcad7fd8a8f37c2f98c876f3d503e7d7fccba9" - }, - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": { - "version": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5", - "signature": "8998932e603cab7a7ed8bf33e023c2e8779b5186a19f85ec04b52b52837303e5" - }, - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": { - "version": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae", - "signature": "73ae65d50e003738342617e2223d5d93e506e2f28ebfc4b877618dbe2fea1bae" - }, - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": { - "version": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a", - "signature": "b87cf80ec582c6965dbf51438f4684aa5728b6edb1745c9f86f044c1acea459a" - }, - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": { - "version": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f", - "signature": "a97d6bbba91d2e4f72b507fb16629312b65ad24e423aa0ab8c4ccaae038b303f" - }, - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": { - "version": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222", - "signature": "90b75218726a5d4d13c7b64339f0d6fe7bd502972d494c2d0888a41aa719d222" - }, - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": { - "version": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce", - "signature": "e6c57c4a7a649c3736c1fbb0e123bbee9ec2b71de08abd152e9d6a7b1ecb94ce" - }, - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": { - "version": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294", - "signature": "f997289167ac23b9d736e6b69c50aa2e01d4d512fc3a1489af265decea92c294" - }, - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": { - "version": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc", - "signature": "570c3c725f1051f6e17785818ccf4c68109bf919c3a4fa6d2979c6e1454b6fdc" - }, - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": { - "version": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f", - "signature": "618f5482dff0f11cb205dba3d57fda0ff56f4eea33a82432f42aa985471d938f" - }, - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": { - "version": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014", - "signature": "d488293d3ce0f02ecfa008724f8e299a4c21650ba9d11e1702d7af2b50f44014" - }, - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": { - "version": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae", - "signature": "f76c74cdc19b831b0b1d562676d7b5bd4aa4e41170ed8d203c584183087e47ae" - }, - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": { - "version": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5", - "signature": "7f7324ab2336c9719a2f963e1b62cb1fb0f8561e2ce0c9737f4ed0555283f2f5" - }, - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": { - "version": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73", - "signature": "5f1d571248b7cf44c98c21ad16d92d96d66033bea71dbf0b447f2ec888198a73" - }, - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": { - "version": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c", - "signature": "f232c5535f7f48d4bba0cf0dd133f4d64cef3d392d8bcd15edb956fd7b30e85c" - }, - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": { - "version": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b", - "signature": "952268732b597eaca4f02ece8c2c9e7da75da01b98e676cd312ae22f9504e58b" - }, - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": { - "version": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1", - "signature": "6e6135fd4187386fda107ef6d545287a2895d157b2151e0c984bd7698a9ed9b1" - }, - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": { - "version": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2", - "signature": "1e475d7b65a4d83341578be67e64a860c55d3674d038634877a29bac169bd0d2" - }, - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": { - "version": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8", - "signature": "3f3200bd17a6a4af1e3a9e086ccbf3044abdab9f36ceba19a9bd919e6aba9ce8" - }, - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": { - "version": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c", - "signature": "f65b2f4a9a56c93a07cb515e4d89c9e82afb4943b9c358106ca9129edf14144c" - }, - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": { - "version": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e", - "signature": "e1cb2e53ce68e4e4943aa69403ff72489ea6ff6cb1f86f318e651ae872bb8b7e" - }, - "../../node_modules/graphql/validation/specifiedRules.d.ts": { - "version": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d", - "signature": "2c8cf891f01b148d4b1aaf3112d9cc3cf5914bb85f0a89f04ba452b3565e5e9d" - }, - "../../node_modules/graphql/validation/index.d.ts": { - "version": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423", - "signature": "8f23d8bdb1a04b7cdea44740ac0e3c5259cf6f6831167e204097729f4a67c423" - }, - "../../node_modules/graphql/utilities/introspectionQuery.d.ts": { - "version": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597", - "signature": "4c67ca5bca82ed85ce8a0412e1f8cc66a855bee6468d6cd929fb38730333c597" - }, - "../../node_modules/graphql/utilities/getOperationAST.d.ts": { - "version": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8", - "signature": "9c67fcbb9ea0d6063e38cd5f76b5465909da3d2adf1de410aede896825eeb0b8" - }, - "../../node_modules/graphql/utilities/getOperationRootType.d.ts": { - "version": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc", - "signature": "44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc" - }, - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": { - "version": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d", - "signature": "96cfce503d7251a5889deb9632f78d3f2bd5a959139388772097f07bb9ed114d" - }, - "../../node_modules/graphql/utilities/buildClientSchema.d.ts": { - "version": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820", - "signature": "492f9320d6e6e83e81efa2ead8e4450665cf067d1a91f286d15aac8bbfff5820" - }, - "../../node_modules/graphql/language/blockString.d.ts": { - "version": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86", - "signature": "3df8de76bd2122bae311fbe954115fc2df5630c66ebcee89978b982c1bcdbc86" - }, - "../../node_modules/graphql/utilities/buildASTSchema.d.ts": { - "version": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7", - "signature": "7f5df009b5d8d48d4a30813bc651f5c9ba49f0730dac75109d531c005f122ec7" - }, - "../../node_modules/graphql/utilities/extendSchema.d.ts": { - "version": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b", - "signature": "9591b6ea9bd8e4a836370b690a327c7020517208dcba3ca905b77b1bd9fd2a7b" - }, - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": { - "version": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896", - "signature": "f18645690799da82bca158180d13c516fb70d79854fc252f9756803dd19cd896" - }, - "../../node_modules/graphql/utilities/schemaPrinter.d.ts": { - "version": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff", - "signature": "321b54bf04de38080d8f35d918abff04e1f0d5df7be63e343bb70c49639431ff" - }, - "../../node_modules/graphql/utilities/typeFromAST.d.ts": { - "version": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922", - "signature": "36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922" - }, - "../../node_modules/graphql/utilities/valueFromAST.d.ts": { - "version": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b", - "signature": "e6334bc8037e3dd22dd666b875966e92f3065e295cf3e9d0e8c0b9aca565349b" - }, - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": { - "version": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf", - "signature": "c1f15a8ff24793133ea747ac53290d4a47d5322f384ee848752f7c2246c0cbdf" - }, - "../../node_modules/graphql/utilities/astFromValue.d.ts": { - "version": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae", - "signature": "685b590124c4ae2898dd214462436f7a6040d303ba486fc964f8036bda15f3ae" - }, - "../../node_modules/graphql/utilities/coerceInputValue.d.ts": { - "version": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5", - "signature": "ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5" - }, - "../../node_modules/graphql/utilities/coerceValue.d.ts": { - "version": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197", - "signature": "d7c1657d7fe7619d3144178f26a97e27988db26ef2b7d4afee47a987bd3cd197" - }, - "../../node_modules/graphql/utilities/isValidJSValue.d.ts": { - "version": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f", - "signature": "0a0e88c57a1a8933b03f3f0c68d9a1fc38a33507adf4b779cab4676e598a659f" - }, - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": { - "version": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8", - "signature": "dcef048aaac7b6928bff43315ee26be4908af66746fdbbc0e242a270d235d4d8" - }, - "../../node_modules/graphql/utilities/concatAST.d.ts": { - "version": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9", - "signature": "101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9" - }, - "../../node_modules/graphql/utilities/separateOperations.d.ts": { - "version": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a", - "signature": "ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a" - }, - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": { - "version": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c", - "signature": "8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c" - }, - "../../node_modules/graphql/utilities/typeComparators.d.ts": { - "version": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454", - "signature": "dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454" - }, - "../../node_modules/graphql/utilities/assertValidName.d.ts": { - "version": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5", - "signature": "f773fdff5d94372867a13c3fe64faa255f6127f94d1e30cfbfbc143008a795e5" - }, - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": { - "version": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a", - "signature": "142cb7aa3bf2750b293fdbf03810c5e5d787a072cfd9e039b2bc43b8ae2a0d3a" - }, - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": { - "version": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b", - "signature": "26989291f4bcb3c8855cc3f718231466a21a8b1d4712557d09c2d2f5fd9d986b" - }, - "../../node_modules/graphql/utilities/index.d.ts": { - "version": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e", - "signature": "d9fcbe89b14b0a1b215bfdd339159ca6e3b6cee69a20886fefb584f9e066614e" - }, - "../../node_modules/graphql/index.d.ts": { - "version": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6", - "signature": "c5fa71873707b5f8f50aec41f26a3c8c599e92178afcf446ea7859483b1cd5d6" - }, - "../../node_modules/graphql-request/dist/src/types.d.ts": { - "version": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4", - "signature": "8f76d206a89076516c32503435ec96d38c6555cfb2caf9952771c57d73d902e4" - }, - "../../node_modules/graphql-request/dist/src/index.d.ts": { - "version": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786", - "signature": "3a7a74f14f920182614651249cb894f650e36cbf217526d8f4a15041e6070786" - }, - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": { - "version": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a", - "signature": "4489bd5ebe63fe345792c19b94359592f57d8144c42946a3b042c04991dc2b4a" - }, - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": { - "version": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc", - "signature": "2b29e2f041731a3eaaabf5066a7c1d3d99d01bd843fc88d0816068969240a8fc" - }, - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": { - "version": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644", - "signature": "6e2af573c847f66fcfdc109f21aa504cec09a12a48812a69cb63d1e4eda37644" - }, - "../../node_modules/graphql-config/lib/extensions/index.d.ts": { - "version": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41", - "signature": "ab1cb886a697a3b67fb3db20d606305299413c5d9f41e97a37f5912c08f8ae41" - }, - "../../node_modules/graphql-config/lib/types.d.ts": { - "version": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6", - "signature": "90330ab4e286eda27eef667739fae1a9f3170b30f267cc1fe02ba2b385dfb4f6" - }, - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": { - "version": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca", - "signature": "9f576e84e7d30f357716e42e8a02d3373703d7105c8a23d6905fead2be4328ca" - }, - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": { - "version": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf", - "signature": "7bb3869955e8aa5f70598e376235eb5a3edf47df9e6808d01560ac1bfe72d9cf" - }, - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": { - "version": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca", - "signature": "51b389c78232a34ae11875f6884c31a2586940a3b0866e69ace90f3c30e7f4ca" - }, - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": { - "version": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411", - "signature": "71a6d07af00a8b39ad8d58fc4471e81134845a1aaf150267db046ec1b6bb7411" - }, - "../../node_modules/graphql-config/lib/utils.d.ts": { - "version": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4", - "signature": "8476fd304bf263429181e67c88c9e7c6e14fd6dbbba268ded5ee830ca98cd4b4" - }, - "../../node_modules/graphql-config/lib/errors.d.ts": { - "version": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9", - "signature": "d543cbfd78b2dee3cee482eaf981c3966cf20b4debe35c5bc1db409931c5c8f9" - }, - "../../node_modules/graphql-config/lib/index.d.ts": { - "version": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4", - "signature": "db6616c5ee468b42d3903b9aa71db6e794c723f3079315d5c326aaa8fa4b6fa4" - }, - "../graphql-language-service-types/src/index.ts": { - "version": "0eccbb489f441658fcd2acfe7811403eed555060b86fcf4683ef1ee34245ccc6" - }, - "./src/Range.ts": { - "version": "58926b36007f993a2e6adb291d57f992bccd60f9b934bcb4dda254e6937a3e36", - "signature": "b4ef21004c93a41723a6c9995be6313e19f86a1b81a4514997ef7e6288083d6f" - }, - "./src/getASTNodeAtPosition.ts": { - "version": "7495e8a9bd7eb6c386230570388eec0c6cf64779d2f52219a2c09a41e5db2e2a", - "signature": "70213b900fee15666c9e73d9addf752be6e6a1166232a92b468b38d34d149ab2" - }, - "./src/validateWithCustomRules.ts": { - "version": "59c17d228f43716a438348d3dfd2085ecc1393c481d9ed38d2ffed7867516a9b", - "signature": "1913549dc022aa8f541dddae6df0c233f6c7b1a7c5e22f1f19161a9a7462ddd6" - }, - "./src/index.ts": { - "version": "b40b3ad0dc655bbc0f033315f9b1ab4a543f148759f82f18675b9cc5001e6b20", - "signature": "063d84a46273ee23f748cc8bef46dbae383368663aea4321da843272eece35f1" - }, - "../../node_modules/@types/node/globals.d.ts": { - "version": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed", - "signature": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed" - }, - "../../node_modules/@types/node/assert.d.ts": { - "version": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f", - "signature": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f" - }, - "../../node_modules/@types/node/async_hooks.d.ts": { - "version": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561", - "signature": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561" - }, - "../../node_modules/@types/node/buffer.d.ts": { - "version": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878", - "signature": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878" - }, - "../../node_modules/@types/events/index.d.ts": { - "version": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935", - "signature": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935" - }, - "../../node_modules/@types/node/child_process.d.ts": { - "version": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003", - "signature": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003" - }, - "../../node_modules/@types/node/cluster.d.ts": { - "version": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a", - "signature": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a" - }, - "../../node_modules/@types/node/console.d.ts": { - "version": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d", - "signature": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d" - }, - "../../node_modules/@types/node/constants.d.ts": { - "version": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424", - "signature": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424" - }, - "../../node_modules/@types/node/crypto.d.ts": { - "version": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b", - "signature": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b" - }, - "../../node_modules/@types/node/dgram.d.ts": { - "version": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30", - "signature": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30" - }, - "../../node_modules/@types/node/dns.d.ts": { - "version": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c", - "signature": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c" - }, - "../../node_modules/@types/node/domain.d.ts": { - "version": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa", - "signature": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa" - }, - "../../node_modules/@types/node/events.d.ts": { - "version": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c", - "signature": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c" - }, - "../../node_modules/@types/node/fs.d.ts": { - "version": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882", - "signature": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882" - }, - "../../node_modules/@types/node/http.d.ts": { - "version": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36", - "signature": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36" - }, - "../../node_modules/@types/node/http2.d.ts": { - "version": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d", - "signature": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d" - }, - "../../node_modules/@types/node/https.d.ts": { - "version": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6", - "signature": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6" - }, - "../../node_modules/@types/node/inspector.d.ts": { - "version": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c", - "signature": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c" - }, - "../../node_modules/@types/node/module.d.ts": { - "version": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66", - "signature": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66" - }, - "../../node_modules/@types/node/net.d.ts": { - "version": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4", - "signature": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4" - }, - "../../node_modules/@types/node/os.d.ts": { - "version": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486", - "signature": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486" - }, - "../../node_modules/@types/node/path.d.ts": { - "version": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36", - "signature": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36" - }, - "../../node_modules/@types/node/perf_hooks.d.ts": { - "version": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f", - "signature": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f" - }, - "../../node_modules/@types/node/process.d.ts": { - "version": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389", - "signature": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389" - }, - "../../node_modules/@types/node/punycode.d.ts": { - "version": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1", - "signature": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1" - }, - "../../node_modules/@types/node/querystring.d.ts": { - "version": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e", - "signature": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e" - }, - "../../node_modules/@types/node/readline.d.ts": { - "version": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24", - "signature": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24" - }, - "../../node_modules/@types/node/repl.d.ts": { - "version": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157", - "signature": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157" - }, - "../../node_modules/@types/node/stream.d.ts": { - "version": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd", - "signature": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd" - }, - "../../node_modules/@types/node/string_decoder.d.ts": { - "version": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432", - "signature": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432" - }, - "../../node_modules/@types/node/timers.d.ts": { - "version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9", - "signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9" - }, - "../../node_modules/@types/node/tls.d.ts": { - "version": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a", - "signature": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a" - }, - "../../node_modules/@types/node/trace_events.d.ts": { - "version": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662", - "signature": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662" - }, - "../../node_modules/@types/node/tty.d.ts": { - "version": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007", - "signature": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007" - }, - "../../node_modules/@types/node/url.d.ts": { - "version": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7", - "signature": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7" - }, - "../../node_modules/@types/node/util.d.ts": { - "version": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12", - "signature": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12" - }, - "../../node_modules/@types/node/v8.d.ts": { - "version": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725", - "signature": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725" - }, - "../../node_modules/@types/node/vm.d.ts": { - "version": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562", - "signature": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562" - }, - "../../node_modules/@types/node/worker_threads.d.ts": { - "version": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb", - "signature": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb" - }, - "../../node_modules/@types/node/zlib.d.ts": { - "version": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b", - "signature": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b" - }, - "../../node_modules/@types/node/base.d.ts": { - "version": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce", - "signature": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce" - }, - "../../node_modules/@types/node/ts3.2/util.d.ts": { - "version": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c", - "signature": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c" - }, - "../../node_modules/@types/node/ts3.2/globals.d.ts": { - "version": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1", - "signature": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1" - }, - "../../node_modules/@types/node/ts3.2/index.d.ts": { - "version": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c", - "signature": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c" - }, - "../../node_modules/@types/jest-diff/index.d.ts": { - "version": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06", - "signature": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06" - }, - "../../node_modules/jest-diff/build/types.d.ts": { - "version": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7", - "signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7" - }, - "../../node_modules/jest-diff/build/index.d.ts": { - "version": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4", - "signature": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4" - }, - "../../node_modules/@types/jest/index.d.ts": { - "version": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b", - "signature": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b" - } - }, - "options": { - "composite": true, - "target": 99, - "module": 99, - "moduleResolution": 2, - "esModuleInterop": true, - "sourceMap": true, - "declaration": true, - "declarationMap": true, - "removeComments": true, - "strict": true, - "noImplicitAny": true, - "noImplicitReturns": false, - "noFallthroughCasesInSwitch": true, - "noUnusedParameters": true, - "noUnusedLocals": true, - "forceConsistentCasingInFileNames": true, - "lib": [ - "lib.dom.d.ts", - "lib.es2017.d.ts", - "lib.es2018.asynciterable.d.ts" - ], - "types": [ - "node", - "jest" - ], - "baseUrl": "../..", - "paths": { - "graphql-language-*": [ - "graphql-language-*" - ] - }, - "rootDir": "./src", - "outDir": "./dist", - "configFilePath": "./tsconfig.json" - }, - "referencedMap": { - "../../node_modules/typescript/lib/lib.es5.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.dom.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/source.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/location.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/tokenKind.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/ast.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printLocation.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/kinds.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/tsutils/Maybe.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/GraphQLError.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/syntaxError.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/locatedError.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/formatError.d.ts": [ - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/index.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/syntaxError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/error/formatError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/lexer.d.ts": [ - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/parser.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printer.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/Path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/definition.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/directiveLocation.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/directives.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/schema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/visitor.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/predicates.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/index.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/language/printLocation.d.ts", - "../../node_modules/graphql/language/kinds.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/printer.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/predicates.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/version.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/execute.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/graphql.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/scalars.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/introspection.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/scalars.d.ts", - "../../node_modules/graphql/type/introspection.d.ts", - "../../node_modules/graphql/type/validate.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/values.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/execution/values.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/subscribe.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/index.d.ts": [ - "../../node_modules/graphql/subscription/subscribe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/ValidationContext.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/specifiedRules.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/index.d.ts": [ - "../../node_modules/graphql/validation/validate.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/specifiedRules.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/blockString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/blockString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/extendSchema.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/astFromValue.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceValue.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/concatAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/separateOperations.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeComparators.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/assertValidName.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/index.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/utilities/getOperationAST.d.ts", - "../../node_modules/graphql/utilities/getOperationRootType.d.ts", - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", - "../../node_modules/graphql/utilities/buildClientSchema.d.ts", - "../../node_modules/graphql/utilities/buildASTSchema.d.ts", - "../../node_modules/graphql/utilities/extendSchema.d.ts", - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", - "../../node_modules/graphql/utilities/schemaPrinter.d.ts", - "../../node_modules/graphql/utilities/typeFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", - "../../node_modules/graphql/utilities/astFromValue.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/utilities/coerceInputValue.d.ts", - "../../node_modules/graphql/utilities/coerceValue.d.ts", - "../../node_modules/graphql/utilities/isValidJSValue.d.ts", - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", - "../../node_modules/graphql/utilities/concatAST.d.ts", - "../../node_modules/graphql/utilities/separateOperations.d.ts", - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", - "../../node_modules/graphql/utilities/typeComparators.d.ts", - "../../node_modules/graphql/utilities/assertValidName.d.ts", - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/index.d.ts": [ - "../../node_modules/graphql/version.d.ts", - "../../node_modules/graphql/graphql.d.ts", - "../../node_modules/graphql/type/index.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/execution/index.d.ts", - "../../node_modules/graphql/subscription/index.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/utilities/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/index.d.ts": [ - "../../node_modules/graphql-request/dist/src/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ - "../../node_modules/graphql-request/dist/src/index.d.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/types.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/utils.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/errors.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/index.d.ts": [ - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", - "../../node_modules/graphql-config/lib/utils.d.ts", - "../../node_modules/graphql-config/lib/errors.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../graphql-language-service-types/src/index.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql-config/lib/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/Range.ts": [ - "../../node_modules/graphql/language/index.d.ts", - "../graphql-language-service-types/src/index.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/getASTNodeAtPosition.ts": [ - "../../node_modules/graphql/language/index.d.ts", - "./src/Range.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/validateWithCustomRules.ts": [ - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/type/index.d.ts", - "../graphql-language-service-types/src/index.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/index.ts": [ - "./src/getASTNodeAtPosition.ts", - "./src/Range.ts", - "./src/validateWithCustomRules.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/globals.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/assert.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/async_hooks.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/buffer.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/events/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/child_process.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/cluster.d.ts": [ - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/console.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/constants.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/crypto.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dgram.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dns.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/domain.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/fs.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http2.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/https.d.ts": [ - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/inspector.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/module.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/net.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/os.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/perf_hooks.d.ts": [ - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/process.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/punycode.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/querystring.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/readline.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/repl.d.ts": [ - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/stream.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/string_decoder.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/timers.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tls.d.ts": [ - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/trace_events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tty.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/url.d.ts": [ - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/util.d.ts": [ - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/v8.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/vm.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/worker_threads.d.ts": [ - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/zlib.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/base.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/assert.d.ts", - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/buffer.d.ts", - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/cluster.d.ts", - "../../node_modules/@types/node/console.d.ts", - "../../node_modules/@types/node/constants.d.ts", - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dgram.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/domain.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/http2.d.ts", - "../../node_modules/@types/node/https.d.ts", - "../../node_modules/@types/node/inspector.d.ts", - "../../node_modules/@types/node/module.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/os.d.ts", - "../../node_modules/@types/node/path.d.ts", - "../../node_modules/@types/node/perf_hooks.d.ts", - "../../node_modules/@types/node/process.d.ts", - "../../node_modules/@types/node/punycode.d.ts", - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/repl.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/string_decoder.d.ts", - "../../node_modules/@types/node/timers.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/trace_events.d.ts", - "../../node_modules/@types/node/tty.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/v8.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/worker_threads.d.ts", - "../../node_modules/@types/node/zlib.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/util.d.ts": [ - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/globals.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/index.d.ts": [ - "../../node_modules/@types/node/base.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts", - "../../node_modules/@types/node/ts3.2/globals.d.ts", - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/jest-diff/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/index.d.ts": [ - "../../node_modules/jest-diff/build/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/jest/index.d.ts": [ - "../../node_modules/jest-diff/build/index.d.ts", - "../../node_modules/@types/jest-diff/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ] - }, - "exportedModulesMap": { - "../../node_modules/typescript/lib/lib.es5.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.dom.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/source.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/index.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/utilities/getOperationAST.d.ts", - "../../node_modules/graphql/utilities/getOperationRootType.d.ts", - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", - "../../node_modules/graphql/utilities/buildClientSchema.d.ts", - "../../node_modules/graphql/utilities/buildASTSchema.d.ts", - "../../node_modules/graphql/utilities/extendSchema.d.ts", - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", - "../../node_modules/graphql/utilities/schemaPrinter.d.ts", - "../../node_modules/graphql/utilities/typeFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", - "../../node_modules/graphql/utilities/astFromValue.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/utilities/coerceInputValue.d.ts", - "../../node_modules/graphql/utilities/coerceValue.d.ts", - "../../node_modules/graphql/utilities/isValidJSValue.d.ts", - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", - "../../node_modules/graphql/utilities/concatAST.d.ts", - "../../node_modules/graphql/utilities/separateOperations.d.ts", - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", - "../../node_modules/graphql/utilities/typeComparators.d.ts", - "../../node_modules/graphql/utilities/assertValidName.d.ts", - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/index.d.ts": [ - "../../node_modules/graphql/version.d.ts", - "../../node_modules/graphql/graphql.d.ts", - "../../node_modules/graphql/type/index.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/execution/index.d.ts", - "../../node_modules/graphql/subscription/index.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/utilities/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "./src/validateWithCustomRules.ts": [ - "../../node_modules/graphql/type/index.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../graphql-language-service-types/src/index.ts", - "../../node_modules/graphql/error/index.d.ts" - ], - "./src/index.ts": [ - "./src/getASTNodeAtPosition.ts", - "./src/Range.ts", - "./src/validateWithCustomRules.ts" - ], - "./src/getASTNodeAtPosition.ts": [ - "../../node_modules/graphql/language/index.d.ts", - "./src/Range.ts" - ], - "./src/Range.ts": [ - "../graphql-language-service-types/src/index.ts", - "../../node_modules/graphql/language/index.d.ts" - ], - "../../node_modules/graphql-config/lib/utils.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/index.d.ts": [ - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", - "../../node_modules/graphql-config/lib/utils.d.ts", - "../../node_modules/graphql-config/lib/errors.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts": [ - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/types.d.ts": [ - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts": [ - "../../node_modules/graphql-request/dist/src/index.d.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/index.d.ts": [ - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildASTSchema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/blockString.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/graphql.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/index.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/language/printLocation.d.ts", - "../../node_modules/graphql/language/kinds.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/printer.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/predicates.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/parser.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/lexer.d.ts": [ - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/syntaxError.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/index.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/syntaxError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/error/formatError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/GraphQLError.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/assertValidName.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceValue.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/coerceInputValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/index.d.ts": [ - "../../node_modules/graphql/validation/validate.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/specifiedRules.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/ValidationContext.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/specifiedRules.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts": [ - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts": [ - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/values.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/execution/values.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/validate.d.ts": [ - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/index.d.ts": [ - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/scalars.d.ts", - "../../node_modules/graphql/type/introspection.d.ts", - "../../node_modules/graphql/type/validate.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/execution/execute.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/subscribe.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/subscription/index.d.ts": [ - "../../node_modules/graphql/subscription/subscribe.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/formatError.d.ts": [ - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/error/locatedError.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printLocation.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/ast.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/separateOperations.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/concatAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/astFromValue.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/valueFromAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeFromAST.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/extendSchema.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationRootType.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/getOperationAST.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/predicates.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/visitor.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/TypeInfo.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/schema.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts": [ - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/typeComparators.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/schemaPrinter.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/buildClientSchema.d.ts": [ - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts": [ - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/definition.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/isValidJSValue.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/introspection.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/scalars.d.ts": [ - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/type/directives.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/printer.d.ts": [ - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/location.d.ts": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/tokenKind.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/kinds.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/tsutils/Maybe.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/utilities/introspectionQuery.d.ts": [ - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/jsutils/Path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/directiveLocation.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/version.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql/language/blockString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-request/dist/src/index.d.ts": [ - "../../node_modules/graphql-request/dist/src/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/graphql-config/lib/errors.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/globals.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/assert.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/base.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/assert.d.ts", - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/buffer.d.ts", - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/cluster.d.ts", - "../../node_modules/@types/node/console.d.ts", - "../../node_modules/@types/node/constants.d.ts", - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dgram.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/domain.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/http2.d.ts", - "../../node_modules/@types/node/https.d.ts", - "../../node_modules/@types/node/inspector.d.ts", - "../../node_modules/@types/node/module.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/os.d.ts", - "../../node_modules/@types/node/path.d.ts", - "../../node_modules/@types/node/perf_hooks.d.ts", - "../../node_modules/@types/node/process.d.ts", - "../../node_modules/@types/node/punycode.d.ts", - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/repl.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/string_decoder.d.ts", - "../../node_modules/@types/node/timers.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/trace_events.d.ts", - "../../node_modules/@types/node/tty.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/v8.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/worker_threads.d.ts", - "../../node_modules/@types/node/zlib.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/index.d.ts": [ - "../../node_modules/@types/node/base.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts", - "../../node_modules/@types/node/ts3.2/globals.d.ts", - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/node/async_hooks.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/perf_hooks.d.ts": [ - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/buffer.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/events/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/child_process.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/cluster.d.ts": [ - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/console.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/constants.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/crypto.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tls.d.ts": [ - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/https.d.ts": [ - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http2.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dgram.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/dns.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/net.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/tty.d.ts": [ - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/http.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/domain.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/worker_threads.d.ts": [ - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/stream.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/zlib.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/v8.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/readline.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/repl.d.ts": [ - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/fs.d.ts": [ - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/inspector.d.ts": [ - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/module.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/os.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/path.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/process.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/punycode.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/querystring.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/url.d.ts": [ - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/string_decoder.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/timers.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/trace_events.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/util.d.ts": [ - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/jest/index.d.ts": [ - "../../node_modules/jest-diff/build/index.d.ts", - "../../node_modules/@types/jest-diff/index.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/index.d.ts": [ - "../../node_modules/jest-diff/build/types.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/jest-diff/build/types.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/jest-diff/index.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/globals.d.ts": [ - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ], - "../../node_modules/@types/node/ts3.2/util.d.ts": [ - "../../node_modules/@types/node/util.d.ts" - ], - "../../node_modules/@types/node/vm.d.ts": [ - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts" - ] - }, - "semanticDiagnosticsPerFile": [ - "../../node_modules/graphql/language/source.d.ts", - "../../node_modules/graphql/language/location.d.ts", - "../../node_modules/graphql/language/tokenKind.d.ts", - "../../node_modules/graphql/language/ast.d.ts", - "../../node_modules/graphql/language/printLocation.d.ts", - "../../node_modules/graphql/language/kinds.d.ts", - "../../node_modules/graphql/tsutils/Maybe.d.ts", - "../../node_modules/graphql/error/GraphQLError.d.ts", - "../../node_modules/graphql/error/syntaxError.d.ts", - "../../node_modules/graphql/error/locatedError.d.ts", - "../../node_modules/graphql/error/formatError.d.ts", - "../../node_modules/graphql/error/index.d.ts", - "../../node_modules/graphql/language/lexer.d.ts", - "../../node_modules/graphql/language/parser.d.ts", - "../../node_modules/graphql/language/printer.d.ts", - "../../node_modules/graphql/jsutils/PromiseOrValue.d.ts", - "../../node_modules/graphql/jsutils/Path.d.ts", - "../../node_modules/graphql/type/definition.d.ts", - "../../node_modules/graphql/language/directiveLocation.d.ts", - "../../node_modules/graphql/type/directives.d.ts", - "../../node_modules/graphql/type/schema.d.ts", - "../../node_modules/graphql/utilities/TypeInfo.d.ts", - "../../node_modules/graphql/language/visitor.d.ts", - "../../node_modules/graphql/language/predicates.d.ts", - "../../node_modules/graphql/language/index.d.ts", - "../../node_modules/graphql/version.d.ts", - "../../node_modules/graphql/execution/execute.d.ts", - "../../node_modules/graphql/graphql.d.ts", - "../../node_modules/graphql/type/scalars.d.ts", - "../../node_modules/graphql/type/introspection.d.ts", - "../../node_modules/graphql/type/validate.d.ts", - "../../node_modules/graphql/type/index.d.ts", - "../../node_modules/graphql/execution/values.d.ts", - "../../node_modules/graphql/execution/index.d.ts", - "../../node_modules/graphql/subscription/subscribe.d.ts", - "../../node_modules/graphql/subscription/index.d.ts", - "../../node_modules/graphql/validation/ValidationContext.d.ts", - "../../node_modules/graphql/validation/validate.d.ts", - "../../node_modules/graphql/validation/rules/ExecutableDefinitions.d.ts", - "../../node_modules/graphql/validation/rules/UniqueOperationNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneAnonymousOperation.d.ts", - "../../node_modules/graphql/validation/rules/SingleFieldSubscriptions.d.ts", - "../../node_modules/graphql/validation/rules/KnownTypeNames.d.ts", - "../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypes.d.ts", - "../../node_modules/graphql/validation/rules/VariablesAreInputTypes.d.ts", - "../../node_modules/graphql/validation/rules/ScalarLeafs.d.ts", - "../../node_modules/graphql/validation/rules/FieldsOnCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/UniqueFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/KnownFragmentNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedFragments.d.ts", - "../../node_modules/graphql/validation/rules/PossibleFragmentSpreads.d.ts", - "../../node_modules/graphql/validation/rules/NoFragmentCycles.d.ts", - "../../node_modules/graphql/validation/rules/UniqueVariableNames.d.ts", - "../../node_modules/graphql/validation/rules/NoUndefinedVariables.d.ts", - "../../node_modules/graphql/validation/rules/NoUnusedVariables.d.ts", - "../../node_modules/graphql/validation/rules/KnownDirectives.d.ts", - "../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocation.d.ts", - "../../node_modules/graphql/validation/rules/KnownArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/UniqueArgumentNames.d.ts", - "../../node_modules/graphql/validation/rules/ValuesOfCorrectType.d.ts", - "../../node_modules/graphql/validation/rules/ProvidedRequiredArguments.d.ts", - "../../node_modules/graphql/validation/rules/VariablesInAllowedPosition.d.ts", - "../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMerged.d.ts", - "../../node_modules/graphql/validation/rules/UniqueInputFieldNames.d.ts", - "../../node_modules/graphql/validation/rules/LoneSchemaDefinition.d.ts", - "../../node_modules/graphql/validation/specifiedRules.d.ts", - "../../node_modules/graphql/validation/index.d.ts", - "../../node_modules/graphql/utilities/introspectionQuery.d.ts", - "../../node_modules/graphql/utilities/getOperationAST.d.ts", - "../../node_modules/graphql/utilities/getOperationRootType.d.ts", - "../../node_modules/graphql/utilities/introspectionFromSchema.d.ts", - "../../node_modules/graphql/utilities/buildClientSchema.d.ts", - "../../node_modules/graphql/language/blockString.d.ts", - "../../node_modules/graphql/utilities/buildASTSchema.d.ts", - "../../node_modules/graphql/utilities/extendSchema.d.ts", - "../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts", - "../../node_modules/graphql/utilities/schemaPrinter.d.ts", - "../../node_modules/graphql/utilities/typeFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromAST.d.ts", - "../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts", - "../../node_modules/graphql/utilities/astFromValue.d.ts", - "../../node_modules/graphql/utilities/coerceInputValue.d.ts", - "../../node_modules/graphql/utilities/coerceValue.d.ts", - "../../node_modules/graphql/utilities/isValidJSValue.d.ts", - "../../node_modules/graphql/utilities/isValidLiteralValue.d.ts", - "../../node_modules/graphql/utilities/concatAST.d.ts", - "../../node_modules/graphql/utilities/separateOperations.d.ts", - "../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts", - "../../node_modules/graphql/utilities/typeComparators.d.ts", - "../../node_modules/graphql/utilities/assertValidName.d.ts", - "../../node_modules/graphql/utilities/findBreakingChanges.d.ts", - "../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts", - "../../node_modules/graphql/utilities/index.d.ts", - "../../node_modules/graphql/index.d.ts", - "../../node_modules/graphql-request/dist/src/types.d.ts", - "../../node_modules/graphql-request/dist/src/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/EndpointsExtension.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts", - "../../node_modules/graphql-config/lib/extensions/endpoints/index.d.ts", - "../../node_modules/graphql-config/lib/extensions/index.d.ts", - "../../node_modules/graphql-config/lib/types.d.ts", - "../../node_modules/graphql-config/lib/GraphQLProjectConfig.d.ts", - "../../node_modules/graphql-config/lib/GraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/getGraphQLConfig.d.ts", - "../../node_modules/graphql-config/lib/findGraphQLConfigFile.d.ts", - "../../node_modules/graphql-config/lib/utils.d.ts", - "../../node_modules/graphql-config/lib/errors.d.ts", - "../../node_modules/graphql-config/lib/index.d.ts", - "../graphql-language-service-types/src/index.ts", - "./src/Range.ts", - "./src/getASTNodeAtPosition.ts", - "./src/validateWithCustomRules.ts", - "./src/index.ts", - "../../node_modules/@types/node/globals.d.ts", - "../../node_modules/@types/node/assert.d.ts", - "../../node_modules/@types/node/async_hooks.d.ts", - "../../node_modules/@types/node/buffer.d.ts", - "../../node_modules/@types/events/index.d.ts", - "../../node_modules/@types/node/child_process.d.ts", - "../../node_modules/@types/node/cluster.d.ts", - "../../node_modules/@types/node/console.d.ts", - "../../node_modules/@types/node/constants.d.ts", - "../../node_modules/@types/node/crypto.d.ts", - "../../node_modules/@types/node/dgram.d.ts", - "../../node_modules/@types/node/dns.d.ts", - "../../node_modules/@types/node/domain.d.ts", - "../../node_modules/@types/node/events.d.ts", - "../../node_modules/@types/node/fs.d.ts", - "../../node_modules/@types/node/http.d.ts", - "../../node_modules/@types/node/http2.d.ts", - "../../node_modules/@types/node/https.d.ts", - "../../node_modules/@types/node/inspector.d.ts", - "../../node_modules/@types/node/module.d.ts", - "../../node_modules/@types/node/net.d.ts", - "../../node_modules/@types/node/os.d.ts", - "../../node_modules/@types/node/path.d.ts", - "../../node_modules/@types/node/perf_hooks.d.ts", - "../../node_modules/@types/node/process.d.ts", - "../../node_modules/@types/node/punycode.d.ts", - "../../node_modules/@types/node/querystring.d.ts", - "../../node_modules/@types/node/readline.d.ts", - "../../node_modules/@types/node/repl.d.ts", - "../../node_modules/@types/node/stream.d.ts", - "../../node_modules/@types/node/string_decoder.d.ts", - "../../node_modules/@types/node/timers.d.ts", - "../../node_modules/@types/node/tls.d.ts", - "../../node_modules/@types/node/trace_events.d.ts", - "../../node_modules/@types/node/tty.d.ts", - "../../node_modules/@types/node/url.d.ts", - "../../node_modules/@types/node/util.d.ts", - "../../node_modules/@types/node/v8.d.ts", - "../../node_modules/@types/node/vm.d.ts", - "../../node_modules/@types/node/worker_threads.d.ts", - "../../node_modules/@types/node/zlib.d.ts", - "../../node_modules/@types/node/base.d.ts", - "../../node_modules/@types/node/ts3.2/util.d.ts", - "../../node_modules/@types/node/ts3.2/globals.d.ts", - "../../node_modules/@types/node/ts3.2/index.d.ts", - "../../node_modules/@types/jest-diff/index.d.ts", - "../../node_modules/jest-diff/build/types.d.ts", - "../../node_modules/jest-diff/build/index.d.ts", - "../../node_modules/@types/jest/index.d.ts", - "../../node_modules/typescript/lib/lib.es2015.d.ts", - "../../node_modules/typescript/lib/lib.es2016.d.ts", - "../../node_modules/typescript/lib/lib.es2017.d.ts", - "../../node_modules/typescript/lib/lib.es2018.d.ts", - "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts", - "../../node_modules/typescript/lib/lib.esnext.intl.d.ts", - "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts", - "../../node_modules/typescript/lib/lib.es2018.promise.d.ts", - "../../node_modules/typescript/lib/lib.es2018.intl.d.ts", - "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts", - "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts", - "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts", - "../../node_modules/typescript/lib/lib.es2017.intl.d.ts", - "../../node_modules/typescript/lib/lib.es2017.string.d.ts", - "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts", - "../../node_modules/typescript/lib/lib.es2017.object.d.ts", - "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts", - "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts", - "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts", - "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts", - "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts", - "../../node_modules/typescript/lib/lib.es2015.promise.d.ts", - "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts", - "../../node_modules/typescript/lib/lib.es2015.generator.d.ts", - "../../node_modules/typescript/lib/lib.es2015.collection.d.ts", - "../../node_modules/typescript/lib/lib.es2015.core.d.ts", - "../../node_modules/typescript/lib/lib.dom.d.ts", - "../../node_modules/typescript/lib/lib.es5.d.ts" - ] - }, - "version": "3.6.3" -} \ No newline at end of file From 4bddceefd3bf8c3edf8ca7d4f8fb2ee45c6973ca Mon Sep 17 00:00:00 2001 From: Nigel Schuster Date: Wed, 2 Oct 2019 11:50:44 -0400 Subject: [PATCH 7/9] chore: fix remaining failing testcase --- .../src/getOutline.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/graphql-language-service-interface/src/getOutline.ts b/packages/graphql-language-service-interface/src/getOutline.ts index ebda3c7f021..0ab6fd9d2dc 100644 --- a/packages/graphql-language-service-interface/src/getOutline.ts +++ b/packages/graphql-language-service-interface/src/getOutline.ts @@ -95,17 +95,17 @@ function outlineTreeConverter(docText: string): OutlineTreeConverterType { return { Field: (node: FieldNode) => { const tokenizedText = - node.alias && node.alias.value - ? [buildToken('plain', node.alias.value), buildToken('plain', ': ')] + node.alias + ? [buildToken('plain', (node.alias as unknown) as string), buildToken('plain', ': ')] : []; - tokenizedText.push(buildToken('plain', node.name.value)); + tokenizedText.push(buildToken('plain', (node.name as unknown) as string)); return { tokenizedText, ...meta(node) }; }, OperationDefinition: (node: OperationDefinitionNode) => ({ tokenizedText: [ buildToken('keyword', node.operation), buildToken('whitespace', ' '), - buildToken('class-name', node.name ? node.name.value : ''), + buildToken('class-name', (node.name as unknown) as string), ], ...meta(node), }), @@ -120,7 +120,7 @@ function outlineTreeConverter(docText: string): OutlineTreeConverterType { tokenizedText: [ buildToken('keyword', 'fragment'), buildToken('whitespace', ' '), - buildToken('class-name', node.name.value), + buildToken('class-name', (node.name as unknown) as string), ], ...meta(node), }), @@ -128,7 +128,7 @@ function outlineTreeConverter(docText: string): OutlineTreeConverterType { FragmentSpread: (node: FragmentSpreadNode) => ({ tokenizedText: [ buildToken('plain', '...'), - buildToken('class-name', node.name.value), + buildToken('class-name', (node.name as unknown) as string), ], ...meta(node), }), From c3ad249859812fa3de08f1b8cfc4744d5747cfcd Mon Sep 17 00:00:00 2001 From: Nigel Schuster Date: Wed, 2 Oct 2019 11:52:38 -0400 Subject: [PATCH 8/9] chore: module resolution commonjs --- tsconfig.base.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index 89f78cce203..608afb0d6e3 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -2,7 +2,7 @@ "compilerOptions": { "composite": true, "target": "esnext", - "module": "esnext", + "module": "commonjs", "moduleResolution": "node", "esModuleInterop": true, "sourceMap": true, From 9e97a1d074d3ffffa8021299c26253ae942b8212 Mon Sep 17 00:00:00 2001 From: Rikki Schulte Date: Thu, 3 Oct 2019 22:57:09 -0400 Subject: [PATCH 9/9] chore: fix eslint --- .eslintrc.js | 60 +++++----- package.json | 16 ++- .../codemirror-graphql/resources/watch.js | 18 +-- .../src/__tests__/hint-test.js | 24 ++-- .../src/__tests__/lint-test.js | 2 +- .../src/__tests__/mode-test.js | 14 +-- packages/codemirror-graphql/src/hint.js | 2 +- packages/codemirror-graphql/src/jump.js | 4 +- .../src/utils/SchemaReference.js | 2 +- .../src/utils/__tests__/jsonParse-test.js | 6 +- .../codemirror-graphql/src/utils/hintList.js | 6 +- .../src/utils/jump-addon.js | 2 +- .../src/variables/__tests__/hint-test.js | 24 ++-- .../src/variables/__tests__/lint-test.js | 8 +- .../codemirror-graphql/src/variables/hint.js | 8 +- .../codemirror-graphql/src/variables/lint.js | 6 +- .../components/DocExplorer/SearchResults.js | 4 +- .../DocExplorer/__tests__/FieldDoc.spec.js | 10 +- .../DocExplorer/__tests__/TypeDoc.spec.js | 18 +-- packages/graphiql/src/components/GraphiQL.js | 32 +++--- .../graphiql/src/components/HistoryQuery.js | 8 +- .../graphiql/src/components/ResultViewer.js | 2 +- .../graphiql/src/components/ToolbarSelect.js | 2 +- .../src/components/__tests__/GraphiQL.spec.js | 22 ++-- packages/graphiql/src/utility/QueryStore.js | 6 +- .../utility/__tests__/getQueryFacts.spec.js | 4 +- packages/graphiql/src/utility/find.js | 2 +- .../src/utility/getSelectedOperationName.js | 2 +- packages/graphiql/src/utility/mergeAst.js | 4 +- .../graphiql/src/utility/onHasCompletion.js | 2 +- .../package.json | 4 +- .../package.json | 4 +- .../src/GraphQLCache.js | 96 ++++++++-------- .../src/GraphQLWatchman.js | 8 +- .../src/Logger.js | 2 +- .../src/MessageProcessor.js | 90 +++++++-------- .../src/__mocks__/MockWatchmanClient.js | 2 +- .../src/__tests__/GraphQLCache-test.js | 20 ++-- .../src/__tests__/MessageProcessor-test.js | 4 +- .../src/findGraphQLTags.js | 14 +-- .../src/startServer.js | 38 +++---- .../package.json | 4 +- .../package.json | 4 +- packages/graphql-language-service/src/cli.js | 8 +- .../graphql-language-service/src/client.js | 8 +- resources/runTests.js | 2 +- yarn.lock | 105 ++++++------------ 47 files changed, 361 insertions(+), 372 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 5a9fc289c02..56f73ffe67a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -10,9 +10,7 @@ module.exports = { root: true, - parser: 'babel-eslint', - parserOptions: { ecmaVersion: 7, sourceType: 'module', @@ -22,7 +20,6 @@ module.exports = { experimentalObjectRestSpread: true, }, }, - // https://github.com/sindresorhus/globals/blob/master/globals.json env: { atomtest: true, @@ -33,7 +30,7 @@ module.exports = { browser: true, }, - extends: ['prettier'], + extends: ['prettier', 'plugin:import/typescript'], globals: { atom: false, @@ -270,6 +267,21 @@ module.exports = { }, ], + // flowtype (https://github.com/gajus/eslint-plugin-flowtype) + 'flowtype/boolean-style': 1, + 'flowtype/define-flow-type': 1, + 'flowtype/no-dupe-keys': 0, + 'flowtype/no-primitive-constructor-types': 1, + 'flowtype/no-weak-types': 0, + 'flowtype/require-parameter-type': 0, + 'flowtype/require-return-type': 0, + 'flowtype/require-valid-file-annotation': 0, + 'flowtype/require-variable-type': 0, + 'flowtype/sort-keys': 0, + 'flowtype/type-id-match': 0, + 'flowtype/use-flow-type': 1, + 'flowtype/valid-syntax': 0, + // prefer-object-spread (https://github.com/bryanrsmith/eslint-plugin-prefer-object-spread) 'prefer-object-spread/prefer-object-spread': 1, }, @@ -277,27 +289,17 @@ module.exports = { plugins: ['babel', 'import', 'flowtype', 'prefer-object-spread'], overrides: [ + // Rules for TypeScript only { - // Converted from 'dependencies' options in ancient config - files: ['**/spec/**', '**/sample-*/**'], + files: ['*.ts', '*.tsx'], + parser: '@typescript-eslint/parser', rules: { - 'import/no-cycle': 0, + 'no-unused-vars': 'off', }, }, + // Rules for Flow only { - // Resources are typically our helper scripts; make life easier there - files: ['resources/*.js', 'packages/*/resources/*.js'], - rules: { - 'no-console': 0, - 'no-await-in-loop': 0, - }, - }, - ], - - overrides: [ - // Rules for Flow only - { - files: ["*.js", "*.jsx"], + files: ['*.js', '*.jsx'], rules: { // flowtype (https://github.com/gajus/eslint-plugin-flowtype) 'flowtype/boolean-style': 1, @@ -315,14 +317,20 @@ module.exports = { 'flowtype/valid-syntax': 0, }, }, - - // Rules for TypeScript only { - files: ["*.ts", "*.tsx"], - parser: "@typescript-eslint/parser", + // Converted from 'dependencies' options in ancient config + files: ['**/spec/**', '**/sample-*/**'], + rules: { + 'import/no-cycle': 0, + }, + }, + { + // Resources are typically our helper scripts; make life easier there + files: ['resources/*.js', 'packages/*/resources/*.js'], rules: { - "no-unused-vars": "off", + 'no-console': 0, + 'no-await-in-loop': 0, }, }, - ] + ], }; diff --git a/package.json b/package.json index 886ef4e0c53..1ba3d2018da 100644 --- a/package.json +++ b/package.json @@ -19,13 +19,13 @@ } }, "scripts": { - "build": "tsc --build && lerna run build", + "build": "tsc --build && lerna run build --scope codemirror-graphql --scope graphiql --scope graphql-language-service --scope graphql-language-service-server", "test": "yarn run lint && yarn run check && yarn run build && yarn run testonly", "testonly": "jest && lerna run test --scope codemirror-graphql", "t": "yarn run testonly", - "lint": "eslint 'packages/**/src/**/*.{ts,js,jsx,tsx,json}' || (printf '\\033[33mTry: \\033[7m yarn run lint -- --fix \\033[0m\\n' && exit 1)", - "lint:fix": "eslint 'packages/*/src/**/*.{ts,js,jsx,tsx,json}' --fix", - "lint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check", + "lint": "eslint --ext=ts,js,jsx,tsx . || (printf '\\033[33mTry: \\033[7m yarn run lint -- --fix \\033[0m\\n' && exit 1)", + "lint:fix": "eslint --ext=ts,js,jsx,tsx . --fix", + "lint:check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check", "check": "flow check --show-all-errors", "prepublish": "node resources/prepublish.js", "pretty": "node resources/pretty.js", @@ -49,12 +49,13 @@ "@commitlint/config-conventional": "^8.1.0", "@commitlint/config-lerna-scopes": "^8.1.0", "@types/jest": "^24.0.18", + "@typescript-eslint/parser": "^2.3.1", "babel-eslint": "^10.0.1", "chai": "4.2.0", "codecov": "^3.5.0", "conventional-changelog-conventionalcommits": "^4.1.0", - "eslint": "^5.16.0", - "eslint-config-prettier": "4.3.0", + "eslint": "^6.4.0", + "eslint-config-prettier": "6.3.0", "eslint-plugin-babel": "5.3.0", "eslint-plugin-flowtype": "4.3.0", "eslint-plugin-import": "^2.18.2", @@ -72,8 +73,5 @@ "prettier": "^1.18.2", "ts-jest": "^24.1.0", "typescript": "^3.6.3" - }, - "dependencies": { - "@typescript-eslint/parser": "^2.3.1" } } diff --git a/packages/codemirror-graphql/resources/watch.js b/packages/codemirror-graphql/resources/watch.js index 2c4cb024632..8e56a74fb5c 100644 --- a/packages/codemirror-graphql/resources/watch.js +++ b/packages/codemirror-graphql/resources/watch.js @@ -101,14 +101,14 @@ function checkFiles(filepaths) { .then(testSuccess => lintFiles(filepaths).then(lintSuccess => typecheckStatus().then( - typecheckSuccess => testSuccess && lintSuccess && typecheckSuccess, - ), - ), + typecheckSuccess => testSuccess && lintSuccess && typecheckSuccess + ) + ) ) .catch(() => false) .then(success => { process.stdout.write( - '\n' + (success ? '' : '\x07') + green(invert('watching...')), + '\n' + (success ? '' : '\x07') + green(invert('watching...')) ); }); } @@ -129,7 +129,7 @@ function parseFiles(filepaths) { srcPath(filepath), ]); } - }), + }) ); } @@ -141,8 +141,8 @@ function runTests(filepaths) { ['--reporter', 'progress', '--require', 'resources/mocha-bootload'].concat( allTests(filepaths) ? filepaths.map(srcPath) - : ['src/**/__tests__/**/*.js'], - ), + : ['src/**/__tests__/**/*.js'] + ) ).catch(() => false); } @@ -158,14 +158,14 @@ function lintFiles(filepaths) { .catch(() => false) .then(success => { console.log( - CLEARLINE + ' ' + (success ? CHECK : X) + ' ' + filepath, + CLEARLINE + ' ' + (success ? CHECK : X) + ' ' + filepath ); return prevSuccess && success; }); } return prevSuccess; }), - Promise.resolve(true), + Promise.resolve(true) ); } diff --git a/packages/codemirror-graphql/src/__tests__/hint-test.js b/packages/codemirror-graphql/src/__tests__/hint-test.js index 1d17336071d..98a86cb6466 100644 --- a/packages/codemirror-graphql/src/__tests__/hint-test.js +++ b/packages/codemirror-graphql/src/__tests__/hint-test.js @@ -52,7 +52,7 @@ describe('graphql-hint', () => { it('attaches a GraphQL hint function with correct mode/hint options', async () => { const editor = await createEditorWithHint(); expect(editor.getHelpers(editor.getCursor(), 'hint')).to.not.have.lengthOf( - 0, + 0 ); }); @@ -72,11 +72,11 @@ describe('graphql-hint', () => { const suggestions = await getHintSuggestions('{ ', { line: 0, ch: 2 }); const fieldConfig = TestSchema.getQueryType().getFields(); const fieldNames = Object.keys(fieldConfig).filter( - name => !fieldConfig[name].isDeprecated, + name => !fieldConfig[name].isDeprecated ); checkSuggestions( fieldNames.concat(['__typename', '__schema', '__type']), - suggestions.list, + suggestions.list ); const fieldTypes = fieldNames.map(name => fieldConfig[name].type); @@ -85,7 +85,7 @@ describe('graphql-hint', () => { item => item.text !== '__schema' && item.text !== '__type' && - item.text !== '__typename', + item.text !== '__typename' ) .map(item => item.type); expect(fieldTypes).to.deep.equal(expectedTypes); @@ -99,7 +99,7 @@ describe('graphql-hint', () => { const fieldConfig = TestSchema.getType('First').getFields(); checkSuggestions( [...Object.keys(fieldConfig), '__typename'], - suggestions.list, + suggestions.list ); }); @@ -161,7 +161,7 @@ describe('graphql-hint', () => { it('provides correct directive suggestions on args definitions', async () => { const suggestions = await getHintSuggestions( 'type Type { field(arg: String @', - { line: 0, ch: 31 }, + { line: 0, ch: 31 } ); const directiveNames = ['onArg', 'onAllDefs']; checkSuggestions(directiveNames, suggestions.list); @@ -209,7 +209,7 @@ describe('graphql-hint', () => { ch: 21, }); const testInputNames = Object.keys( - TestSchema.getType('TestInput').getFields(), + TestSchema.getType('TestInput').getFields() ); checkSuggestions(testInputNames, suggestions.list); }); @@ -217,7 +217,7 @@ describe('graphql-hint', () => { it('provides fragment name suggestion', async () => { const suggestions = await getHintSuggestions( 'fragment Foo on Test { id } query { ...', - { line: 0, ch: 40 }, + { line: 0, ch: 40 } ); checkSuggestions(['Foo'], suggestions.list); }); @@ -225,7 +225,7 @@ describe('graphql-hint', () => { it('provides fragment names for fragments defined lower', async () => { const suggestions = await getHintSuggestions( 'query { ... } fragment Foo on Test { id }', - { line: 0, ch: 11 }, + { line: 0, ch: 11 } ); checkSuggestions(['Foo'], suggestions.list); }); @@ -237,7 +237,7 @@ describe('graphql-hint', () => { 'fragment Baz on Second { name } ' + 'fragment Qux on TestUnion { name } ' + 'fragment Nrf on Test { id }', - { line: 0, ch: 31 }, + { line: 0, ch: 31 } ); checkSuggestions(['Bar', 'Baz', 'Qux'], suggestions.list); }); @@ -245,7 +245,7 @@ describe('graphql-hint', () => { it('provides correct field name suggestion inside inline fragment', async () => { const suggestions = await getHintSuggestions( 'fragment Foo on TestUnion { ... on First { ', - { line: 0, ch: 43 }, + { line: 0, ch: 43 } ); const fieldNames = Object.keys(TestSchema.getType('First').getFields()); fieldNames.push('__typename'); @@ -255,7 +255,7 @@ describe('graphql-hint', () => { it('provides correct field name suggestion inside typeless inline fragment', async () => { const suggestions = await getHintSuggestions( 'fragment Foo on First { ... { ', - { line: 0, ch: 30 }, + { line: 0, ch: 30 } ); const fieldNames = Object.keys(TestSchema.getType('First').getFields()); fieldNames.push('__typename'); diff --git a/packages/codemirror-graphql/src/__tests__/lint-test.js b/packages/codemirror-graphql/src/__tests__/lint-test.js index 5ddcb34a806..9c86ad03f5e 100644 --- a/packages/codemirror-graphql/src/__tests__/lint-test.js +++ b/packages/codemirror-graphql/src/__tests__/lint-test.js @@ -44,7 +44,7 @@ describe('graphql-lint', () => { it('attaches a GraphQL lint function with correct mode/lint options', () => { const editor = createEditorWithLint(); expect(editor.getHelpers(editor.getCursor(), 'lint')).to.not.have.lengthOf( - 0, + 0 ); }); diff --git a/packages/codemirror-graphql/src/__tests__/mode-test.js b/packages/codemirror-graphql/src/__tests__/mode-test.js index 8ec5554ab97..3fd625d41eb 100644 --- a/packages/codemirror-graphql/src/__tests__/mode-test.js +++ b/packages/codemirror-graphql/src/__tests__/mode-test.js @@ -39,7 +39,7 @@ describe('graphql-mode', () => { it('parses Relay-style anonymous FragmentDefinitions', () => { CodeMirror.runMode('fragment on Test { id }', 'graphql', (token, style) => - expect(style).to.not.equal('invalidchar'), + expect(style).to.not.equal('invalidchar') ); }); @@ -47,17 +47,17 @@ describe('graphql-mode', () => { CodeMirror.runMode( '{ ... on OptionalType { name } }', 'graphql', - (token, style) => expect(style).to.not.equal('invalidchar'), + (token, style) => expect(style).to.not.equal('invalidchar') ); CodeMirror.runMode('{ ... { name } }', 'graphql', (token, style) => - expect(style).to.not.equal('invalidchar'), + expect(style).to.not.equal('invalidchar') ); CodeMirror.runMode( '{ ... @optionalDirective { name } }', 'graphql', - (token, style) => expect(style).to.not.equal('invalidchar'), + (token, style) => expect(style).to.not.equal('invalidchar') ); }); @@ -88,7 +88,7 @@ describe('graphql-mode', () => { it('parses schema-kitchen-sink query without invalidchar', () => { const schemaKitchenSink = readFileSync( join(__dirname, '/schema-kitchen-sink.graphql'), - { encoding: 'utf8' }, + { encoding: 'utf8' } ); CodeMirror.runMode(schemaKitchenSink, 'graphql', (token, style) => { @@ -110,7 +110,7 @@ describe('graphql-mode', () => { 'graphql', (token, style) => { expect(style).to.not.equal('invalidchar'); - }, + } ); CodeMirror.runMode( @@ -124,7 +124,7 @@ describe('graphql-mode', () => { 'graphql', (token, style) => { expect(style).to.not.equal('invalidchar'); - }, + } ); }); }); diff --git a/packages/codemirror-graphql/src/hint.js b/packages/codemirror-graphql/src/hint.js index 2c0c486c28b..9519225cf76 100644 --- a/packages/codemirror-graphql/src/hint.js +++ b/packages/codemirror-graphql/src/hint.js @@ -39,7 +39,7 @@ CodeMirror.registerHelper('hint', 'graphql', (editor, options) => { schema, editor.getValue(), cur, - token, + token ); /** * GraphQL language service responds to the autocompletion request with diff --git a/packages/codemirror-graphql/src/jump.js b/packages/codemirror-graphql/src/jump.js index 42bd8d03a80..8ee49b6bbbd 100644 --- a/packages/codemirror-graphql/src/jump.js +++ b/packages/codemirror-graphql/src/jump.js @@ -5,9 +5,9 @@ * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. - * + * * @flow - * + * */ import CodeMirror from 'codemirror'; diff --git a/packages/codemirror-graphql/src/utils/SchemaReference.js b/packages/codemirror-graphql/src/utils/SchemaReference.js index a04501d3da0..2ec4c5888c2 100644 --- a/packages/codemirror-graphql/src/utils/SchemaReference.js +++ b/packages/codemirror-graphql/src/utils/SchemaReference.js @@ -103,7 +103,7 @@ export function getEnumValueReference(typeInfo: any): EnumValueReference { // though it defaults to the current type. export function getTypeReference( typeInfo: any, - type?: GraphQLNamedType, + type?: GraphQLNamedType ): TypeReference { return { kind: 'Type', diff --git a/packages/codemirror-graphql/src/utils/__tests__/jsonParse-test.js b/packages/codemirror-graphql/src/utils/__tests__/jsonParse-test.js index 934c2e3e298..342098cabb7 100644 --- a/packages/codemirror-graphql/src/utils/__tests__/jsonParse-test.js +++ b/packages/codemirror-graphql/src/utils/__tests__/jsonParse-test.js @@ -23,17 +23,17 @@ describe('jsonParse', () => { checkEscapedString( '{ "test": "\\"" }', { kind: 'String', start: 2, end: 8, value: 'test' }, - { kind: 'String', start: 10, end: 14, value: '"' }, + { kind: 'String', start: 10, end: 14, value: '"' } ); checkEscapedString( '{ "test": "\\\\" }', { kind: 'String', start: 2, end: 8, value: 'test' }, - { kind: 'String', start: 10, end: 14, value: '\\' }, + { kind: 'String', start: 10, end: 14, value: '\\' } ); checkEscapedString( '{ "slash": "\\/" }', { kind: 'String', start: 2, end: 9, value: 'slash' }, - { kind: 'String', start: 11, end: 15, value: '/' }, + { kind: 'String', start: 11, end: 15, value: '/' } ); }); }); diff --git a/packages/codemirror-graphql/src/utils/hintList.js b/packages/codemirror-graphql/src/utils/hintList.js index 7aeb4765e03..fedd10cc791 100644 --- a/packages/codemirror-graphql/src/utils/hintList.js +++ b/packages/codemirror-graphql/src/utils/hintList.js @@ -40,14 +40,14 @@ function filterAndSortList(list, text) { const conciseMatches = filterNonEmpty( filterNonEmpty(byProximity, pair => pair.proximity <= 2), - pair => !pair.entry.isDeprecated, + pair => !pair.entry.isDeprecated ); const sortedMatches = conciseMatches.sort( (a, b) => (a.entry.isDeprecated ? 1 : 0) - (b.entry.isDeprecated ? 1 : 0) || a.proximity - b.proximity || - a.entry.text.length - b.entry.text.length, + a.entry.text.length - b.entry.text.length ); return sortedMatches.map(pair => pair.entry); @@ -113,7 +113,7 @@ function lexicalDistance(a, b) { d[i][j] = Math.min( d[i - 1][j] + 1, d[i][j - 1] + 1, - d[i - 1][j - 1] + cost, + d[i - 1][j - 1] + cost ); if (i > 1 && j > 1 && a[i - 1] === b[j - 2] && a[i - 2] === b[j - 1]) { diff --git a/packages/codemirror-graphql/src/utils/jump-addon.js b/packages/codemirror-graphql/src/utils/jump-addon.js index e4f006068cc..350f9def20f 100644 --- a/packages/codemirror-graphql/src/utils/jump-addon.js +++ b/packages/codemirror-graphql/src/utils/jump-addon.js @@ -134,7 +134,7 @@ function enableJumpMode(cm) { const marker = cm.markText( { line: pos.line, ch: token.start }, { line: pos.line, ch: token.end }, - { className: 'CodeMirror-jump-token' }, + { className: 'CodeMirror-jump-token' } ); cm.state.jump.marker = marker; diff --git a/packages/codemirror-graphql/src/variables/__tests__/hint-test.js b/packages/codemirror-graphql/src/variables/__tests__/hint-test.js index ee98c590624..23f082dc0ab 100644 --- a/packages/codemirror-graphql/src/variables/__tests__/hint-test.js +++ b/packages/codemirror-graphql/src/variables/__tests__/hint-test.js @@ -54,7 +54,7 @@ describe('graphql-variables-hint', () => { it('attaches a GraphQL hint function with correct mode/hint options', async () => { const editor = await createEditorWithHint('{ f }'); expect(editor.getHelpers(editor.getCursor(), 'hint')).to.not.have.lengthOf( - 0, + 0 ); }); @@ -68,7 +68,7 @@ describe('graphql-variables-hint', () => { const suggestions = await getHintSuggestions( 'query ($foo: String!, $bar: Int) { f }', '{ ', - { line: 0, ch: 2 }, + { line: 0, ch: 2 } ); checkSuggestions(['"foo": ', '"bar": '], suggestions.list); }); @@ -77,7 +77,7 @@ describe('graphql-variables-hint', () => { const suggestions = await getHintSuggestions( 'query ($foo: String!, $bar: Int) { f }', '{\n ', - { line: 1, ch: 2 }, + { line: 1, ch: 2 } ); expect(suggestions.from).to.deep.equal({ line: 1, ch: 2, sticky: null }); expect(suggestions.to).to.deep.equal({ line: 1, ch: 2, sticky: null }); @@ -87,7 +87,7 @@ describe('graphql-variables-hint', () => { const suggestions = await getHintSuggestions( 'query ($foo: String!, $bar: Int) { f }', '{\n ba', - { line: 1, ch: 4 }, + { line: 1, ch: 4 } ); checkSuggestions(['"bar": '], suggestions.list); expect(suggestions.from).to.deep.equal({ line: 1, ch: 2, sticky: null }); @@ -98,7 +98,7 @@ describe('graphql-variables-hint', () => { const suggestions = await getHintSuggestions( 'query ($foo: String!, $bar: Int) { f }', '{\n "', - { line: 1, ch: 4 }, + { line: 1, ch: 4 } ); checkSuggestions(['"foo": ', '"bar": '], suggestions.list); expect(suggestions.from).to.deep.equal({ line: 1, ch: 2, sticky: null }); @@ -109,12 +109,12 @@ describe('graphql-variables-hint', () => { const suggestions = await getHintSuggestions( 'query ($myEnum: TestEnum) { f }', '{\n "myEnum": ', - { line: 1, ch: 12 }, + { line: 1, ch: 12 } ); const TestEnum = TestSchema.getType('TestEnum'); checkSuggestions( TestEnum.getValues().map(value => `"${value.name}"`), - suggestions.list, + suggestions.list ); }); @@ -122,7 +122,7 @@ describe('graphql-variables-hint', () => { const suggestions = await getHintSuggestions( 'query ($myInput: TestInput) { f }', '{\n "myInput": ', - { line: 1, ch: 13 }, + { line: 1, ch: 13 } ); checkSuggestions(['{'], suggestions.list); }); @@ -131,12 +131,12 @@ describe('graphql-variables-hint', () => { const suggestions = await getHintSuggestions( 'query ($myInput: TestInput) { f }', '{\n "myInput": {\n ', - { line: 2, ch: 4 }, + { line: 2, ch: 4 } ); const TestInput = TestSchema.getType('TestInput'); checkSuggestions( Object.keys(TestInput.getFields()).map(name => `"${name}": `), - suggestions.list, + suggestions.list ); expect(suggestions.from).to.deep.equal({ line: 2, ch: 4, sticky: null }); expect(suggestions.to).to.deep.equal({ line: 2, ch: 4, sticky: null }); @@ -146,7 +146,7 @@ describe('graphql-variables-hint', () => { const suggestions = await getHintSuggestions( 'query ($myInput: TestInput) { f }', '{\n "myInput": {\n bool', - { line: 2, ch: 8 }, + { line: 2, ch: 8 } ); checkSuggestions(['"boolean": ', '"listBoolean": '], suggestions.list); expect(suggestions.from).to.deep.equal({ line: 2, ch: 4, sticky: null }); @@ -157,7 +157,7 @@ describe('graphql-variables-hint', () => { const suggestions = await getHintSuggestions( 'query ($myInput: TestInput) { f }', '{\n "myInput": {\n "boolean": ', - { line: 2, ch: 15 }, + { line: 2, ch: 15 } ); checkSuggestions(['true', 'false'], suggestions.list); }); diff --git a/packages/codemirror-graphql/src/variables/__tests__/lint-test.js b/packages/codemirror-graphql/src/variables/__tests__/lint-test.js index ab0c7b02a1f..05d2edf1eaa 100644 --- a/packages/codemirror-graphql/src/variables/__tests__/lint-test.js +++ b/packages/codemirror-graphql/src/variables/__tests__/lint-test.js @@ -46,20 +46,20 @@ describe('graphql-variables-lint', () => { it('attaches a GraphQL lint function with correct mode/lint options', () => { const editor = createEditorWithLint(); expect(editor.getHelpers(editor.getCursor(), 'lint')).to.not.have.lengthOf( - 0, + 0 ); }); it('catches syntax errors', async () => { expect((await printLintErrors(null, '{ foo: "bar" }'))[0].message).to.equal( - 'Expected String but found `foo`.', + 'Expected String but found `foo`.' ); }); it('catches type validation errors', async () => { const errors = await printLintErrors( 'query ($foo: Int) { f }', - ' { "foo": "NaN" }', + ' { "foo": "NaN" }' ); expect(errors[0]).to.deep.equal({ @@ -74,7 +74,7 @@ describe('graphql-variables-lint', () => { it('reports unknown variable names', async () => { const errors = await printLintErrors( 'query ($foo: Int) { f }', - ' { "food": "NaN" }', + ' { "food": "NaN" }' ); expect(errors[0]).to.deep.equal({ diff --git a/packages/codemirror-graphql/src/variables/hint.js b/packages/codemirror-graphql/src/variables/hint.js index c5ef86e781e..6fbe68befac 100644 --- a/packages/codemirror-graphql/src/variables/hint.js +++ b/packages/codemirror-graphql/src/variables/hint.js @@ -80,7 +80,7 @@ function getVariablesHint(cur, token, options) { variableNames.map(name => ({ text: `"${name}": `, type: variableToType[name], - })), + })) ); } @@ -88,7 +88,7 @@ function getVariablesHint(cur, token, options) { if (kind === 'ObjectValue' || (kind === 'ObjectField' && step === 0)) { if (typeInfo.fields) { const inputFields = Object.keys(typeInfo.fields).map( - fieldName => typeInfo.fields[fieldName], + fieldName => typeInfo.fields[fieldName] ); return hintList( cur, @@ -97,7 +97,7 @@ function getVariablesHint(cur, token, options) { text: `"${field.name}": `, type: field.type, description: field.description, - })), + })) ); } } @@ -125,7 +125,7 @@ function getVariablesHint(cur, token, options) { text: `"${value.name}"`, type: namedInputType, description: value.description, - })), + })) ); } else if (namedInputType === GraphQLBoolean) { return hintList(cur, token, [ diff --git a/packages/codemirror-graphql/src/variables/lint.js b/packages/codemirror-graphql/src/variables/lint.js index 1761783bbf5..e3a3a530c76 100644 --- a/packages/codemirror-graphql/src/variables/lint.js +++ b/packages/codemirror-graphql/src/variables/lint.js @@ -58,7 +58,7 @@ CodeMirror.registerHelper( // Then highlight any issues with the provided variables. return validateVariables(editor, variableToType, ast); - }, + } ); // Given a variableToType object, a source text, and a JSON AST, produces a @@ -74,8 +74,8 @@ function validateVariables(editor, variableToType, variablesAST) { lintError( editor, member.key, - `Variable "$${variableName}" does not appear in any GraphQL query.`, - ), + `Variable "$${variableName}" does not appear in any GraphQL query.` + ) ); } else { validateValue(type, member.value).forEach(([node, message]) => { diff --git a/packages/graphiql/src/components/DocExplorer/SearchResults.js b/packages/graphiql/src/components/DocExplorer/SearchResults.js index b326144872a..2cced352c6f 100644 --- a/packages/graphiql/src/components/DocExplorer/SearchResults.js +++ b/packages/graphiql/src/components/DocExplorer/SearchResults.js @@ -60,7 +60,7 @@ export default class SearchResults extends React.Component { matchedTypes.push(
-
, + ); } @@ -73,7 +73,7 @@ export default class SearchResults extends React.Component { if (!isMatch(fieldName, searchValue)) { if (field.args && field.args.length) { matchingArgs = field.args.filter(arg => - isMatch(arg.name, searchValue), + isMatch(arg.name, searchValue) ); if (matchingArgs.length === 0) { return; diff --git a/packages/graphiql/src/components/DocExplorer/__tests__/FieldDoc.spec.js b/packages/graphiql/src/components/DocExplorer/__tests__/FieldDoc.spec.js index 06d47809ff4..e15d5cbfeb8 100644 --- a/packages/graphiql/src/components/DocExplorer/__tests__/FieldDoc.spec.js +++ b/packages/graphiql/src/components/DocExplorer/__tests__/FieldDoc.spec.js @@ -39,7 +39,7 @@ describe('FieldDoc', () => { , + /> ); expect(W.find('MarkdownContent').text()).toEqual('No Description\n'); expect(W.find('TypeLink').text()).toEqual('String'); @@ -51,7 +51,7 @@ describe('FieldDoc', () => { , + /> ); expect(W.find('MarkdownContent').text()).toEqual('No Description\n'); expect(W.find('TypeLink').text()).toEqual('String'); @@ -63,17 +63,17 @@ describe('FieldDoc', () => { , + /> ); expect( W.find('TypeLink') .at(0) - .text(), + .text() ).toEqual('String'); expect( W.find('.doc-type-description') .at(0) - .text(), + .text() ).toEqual('Example String field with arguments\n'); expect(W.find('Argument').length).toEqual(1); expect(W.find('Argument').text()).toEqual('stringArg: String'); diff --git a/packages/graphiql/src/components/DocExplorer/__tests__/TypeDoc.spec.js b/packages/graphiql/src/components/DocExplorer/__tests__/TypeDoc.spec.js index 246546b88f0..c6cfb3357d7 100644 --- a/packages/graphiql/src/components/DocExplorer/__tests__/TypeDoc.spec.js +++ b/packages/graphiql/src/components/DocExplorer/__tests__/TypeDoc.spec.js @@ -26,13 +26,13 @@ describe('TypeDoc', () => { schema={ExampleSchema} type={ExampleQuery} onClickType={jest.fn()} - />, + /> ); const cats = W.find('.doc-category-item'); expect(cats.at(0).text()).toEqual('string: String'); expect(cats.at(1).text()).toEqual('union: exampleUnion'); expect(cats.at(2).text()).toEqual( - 'fieldWithArgs(stringArg: String): String', + 'fieldWithArgs(stringArg: String): String' ); }); @@ -45,7 +45,7 @@ describe('TypeDoc', () => { type={ExampleQuery} onClickType={onClickType} onClickField={onClickField} - />, + /> ); W.find('TypeLink') .at(0) @@ -69,7 +69,7 @@ describe('TypeDoc', () => { schema={ExampleSchema} type={ExampleQuery} onClickType={jest.fn()} - />, + /> ); let cats = W.find('.doc-category-item'); expect(cats.length).toEqual(3); @@ -81,12 +81,12 @@ describe('TypeDoc', () => { expect( W.find('.field-name') .at(3) - .text(), + .text() ).toEqual('deprecatedField'); expect( W.find('.doc-deprecation') .at(0) - .text(), + .text() ).toEqual('example deprecation reason\n'); }); @@ -95,7 +95,7 @@ describe('TypeDoc', () => { expect( W.find('.doc-category-title') .at(0) - .text(), + .text() ).toEqual('possible types'); }); @@ -104,7 +104,7 @@ describe('TypeDoc', () => { expect( W.find('.doc-category-title') .at(0) - .text(), + .text() ).toEqual('values'); const enums = W.find('EnumValue'); expect(enums.at(0).props().value.value).toEqual('Value 1'); @@ -129,7 +129,7 @@ describe('TypeDoc', () => { expect( W.find('.doc-deprecation') .at(1) - .text(), + .text() ).toEqual('Only two are needed\n'); }); }); diff --git a/packages/graphiql/src/components/GraphiQL.js b/packages/graphiql/src/components/GraphiQL.js index 8d8c11cf354..3c1b38f9caf 100644 --- a/packages/graphiql/src/components/GraphiQL.js +++ b/packages/graphiql/src/components/GraphiQL.js @@ -110,7 +110,7 @@ export class GraphiQL extends React.Component { : getSelectedOperationName( null, this._storage.get('operationName'), - queryFacts && queryFacts.operations, + queryFacts && queryFacts.operations ); // prop can be supplied to open docExplorer initially @@ -154,7 +154,7 @@ export class GraphiQL extends React.Component { // Subscribe to the browser window closing, treating it as an unmount. if (typeof window === 'object') { window.addEventListener('beforeunload', () => - this.componentWillUnmount(), + this.componentWillUnmount() ); } } @@ -203,7 +203,7 @@ export class GraphiQL extends React.Component { nextQuery, nextOperationName, this.state.operations, - nextSchema, + nextSchema ); if (updatedQueryAttributes !== undefined) { @@ -238,7 +238,7 @@ export class GraphiQL extends React.Component { this._fetchSchema(); } - }, + } ); } @@ -274,7 +274,7 @@ export class GraphiQL extends React.Component { const toolbar = find( children, - child => child.type === GraphiQL.Toolbar, + child => child.type === GraphiQL.Toolbar ) || ( 0) { const editor = this.getQueryEditor(); @@ -505,8 +505,8 @@ export class GraphiQL extends React.Component { className: 'autoInsertedLeaf', clearOnEnter: true, title: 'Automatically added leaf fields', - }, - ), + } + ) ); setTimeout(() => markers.forEach(marker => marker.clear()), 7000); let newCursorIndex = cursorIndex; @@ -531,7 +531,7 @@ export class GraphiQL extends React.Component { fetcher({ query: introspectionQuery, operationName: introspectionQueryName, - }), + }) ); if (!isPromise(fetch)) { this.setState({ @@ -552,11 +552,11 @@ export class GraphiQL extends React.Component { fetcher({ query: introspectionQuerySansSubscriptions, operationName: introspectionQueryName, - }), + }) ); if (!isPromise(fetch)) { throw new Error( - 'Fetcher did not return a Promise for introspection.', + 'Fetcher did not return a Promise for introspection.' ); } return fetch2; @@ -691,7 +691,7 @@ export class GraphiQL extends React.Component { response: GraphiQL.formatResult(result), }); } - }, + } ); this.setState({ subscription }); @@ -767,7 +767,7 @@ export class GraphiQL extends React.Component { value, this.state.operationName, this.state.operations, - this.state.schema, + this.state.schema ); this.setState({ query: value, @@ -800,7 +800,7 @@ export class GraphiQL extends React.Component { const updatedOperationName = getSelectedOperationName( prevOperations, operationName, - queryFacts.operations, + queryFacts.operations ); // Report changing of operationName if it changed. @@ -839,7 +839,7 @@ export class GraphiQL extends React.Component { (onRemoveFn = () => { elem.removeEventListener('DOMNodeRemoved', onRemoveFn); elem.removeEventListener('click', this._onClickHintInformation); - }), + }) ); }; @@ -1146,7 +1146,7 @@ function observableToPromise(observable) { reject, () => { reject(new Error('no value resolved')); - }, + } ); }); } diff --git a/packages/graphiql/src/components/HistoryQuery.js b/packages/graphiql/src/components/HistoryQuery.js index 11f3895d488..98e5eaca7a4 100644 --- a/packages/graphiql/src/components/HistoryQuery.js +++ b/packages/graphiql/src/components/HistoryQuery.js @@ -89,7 +89,7 @@ export default class HistoryQuery extends React.Component { this.props.query, this.props.variables, this.props.operationName, - this.props.label, + this.props.label ); } @@ -100,7 +100,7 @@ export default class HistoryQuery extends React.Component { this.props.variables, this.props.operationName, this.props.label, - this.props.favorite, + this.props.favorite ); } @@ -112,7 +112,7 @@ export default class HistoryQuery extends React.Component { this.props.variables, this.props.operationName, e.target.value, - this.props.favorite, + this.props.favorite ); } @@ -125,7 +125,7 @@ export default class HistoryQuery extends React.Component { this.props.variables, this.props.operationName, e.target.value, - this.props.favorite, + this.props.favorite ); } } diff --git a/packages/graphiql/src/components/ResultViewer.js b/packages/graphiql/src/components/ResultViewer.js index 84ff08e8d76..640dabd9edc 100644 --- a/packages/graphiql/src/components/ResultViewer.js +++ b/packages/graphiql/src/components/ResultViewer.js @@ -71,7 +71,7 @@ export class ResultViewer extends React.Component { } ReactDOM.render(
{infoElements}
, tooltipDiv); return tooltipDiv; - }, + } ); } diff --git a/packages/graphiql/src/components/ToolbarSelect.js b/packages/graphiql/src/components/ToolbarSelect.js index d3a80602e81..6d6d2a23f2c 100644 --- a/packages/graphiql/src/components/ToolbarSelect.js +++ b/packages/graphiql/src/components/ToolbarSelect.js @@ -47,7 +47,7 @@ export class ToolbarSelect extends React.Component { return ( ); - }, + } ); return ( { it('should throw error without fetcher', () => { expect(() => mount().simulateError( - Error('GraphiQL requires a fetcher function'), - ), + Error('GraphiQL requires a fetcher function') + ) ); }); @@ -100,7 +100,7 @@ describe('GraphiQL', () => { it('should not throw error if schema missing and query provided', () => { expect(() => - mount(), + mount() ).not.toThrow(); }); @@ -111,7 +111,7 @@ describe('GraphiQL', () => { it('accepts a custom default query', () => { const graphiQL = mount( - , + ); expect(graphiQL.state().query).toEqual('GraphQL Party!!'); }); @@ -125,14 +125,22 @@ describe('GraphiQL', () => { }); it('accepts a defaultVariableEditorOpen param', () => { - let graphiQL = mount(); + let graphiQL = mount(); expect(graphiQL.state().variableEditorOpen).toEqual(false); expect(graphiQL.state().defaultVariableEditorOpen).toEqual(undefined); - graphiQL = mount(); + graphiQL = mount( + + ); expect(graphiQL.state().variableEditorOpen).toEqual(true); - graphiQL = mount(); + graphiQL = mount( + + ); expect(graphiQL.state().variableEditorOpen).toEqual(false); }); }); diff --git a/packages/graphiql/src/utility/QueryStore.js b/packages/graphiql/src/utility/QueryStore.js index 18717aa9078..fc30f4e3e28 100644 --- a/packages/graphiql/src/utility/QueryStore.js +++ b/packages/graphiql/src/utility/QueryStore.js @@ -21,7 +21,7 @@ export default class QueryStore { x => x.query === item.query && x.variables === item.variables && - x.operationName === item.operationName, + x.operationName === item.operationName ); } @@ -30,7 +30,7 @@ export default class QueryStore { x => x.query === item.query && x.variables === item.variables && - x.operationName === item.operationName, + x.operationName === item.operationName ); if (itemIndex !== -1) { this.items.splice(itemIndex, 1, item); @@ -43,7 +43,7 @@ export default class QueryStore { x => x.query === item.query && x.variables === item.variables && - x.operationName === item.operationName, + x.operationName === item.operationName ); if (itemIndex !== -1) { this.items.splice(itemIndex, 1); diff --git a/packages/graphiql/src/utility/__tests__/getQueryFacts.spec.js b/packages/graphiql/src/utility/__tests__/getQueryFacts.spec.js index 8fd635217b8..a0a353998dd 100644 --- a/packages/graphiql/src/utility/__tests__/getQueryFacts.spec.js +++ b/packages/graphiql/src/utility/__tests__/getQueryFacts.spec.js @@ -44,7 +44,7 @@ describe('collectVariables', () => { TestSchema, parse(` query ($foo: Int, $bar: String) { id } - `), + `) ); expect(Object.keys(variableToType)).toEqual(['foo', 'bar']); expect(variableToType.foo).toEqual(GraphQLInt); @@ -57,7 +57,7 @@ describe('collectVariables', () => { parse(` query A($foo: Int, $bar: String) { id } query B($foo: Int, $baz: Float) { id } - `), + `) ); expect(Object.keys(variableToType)).toEqual(['foo', 'bar', 'baz']); expect(variableToType.foo).toEqual(GraphQLInt); diff --git a/packages/graphiql/src/utility/find.js b/packages/graphiql/src/utility/find.js index 3ec90f89627..4833313d37a 100644 --- a/packages/graphiql/src/utility/find.js +++ b/packages/graphiql/src/utility/find.js @@ -10,7 +10,7 @@ export default function find( list: Array, - predicate: (item: T) => boolean, + predicate: (item: T) => boolean ): ?T { for (let i = 0; i < list.length; i++) { if (predicate(list[i])) { diff --git a/packages/graphiql/src/utility/getSelectedOperationName.js b/packages/graphiql/src/utility/getSelectedOperationName.js index 0b1d3432036..134f693136d 100644 --- a/packages/graphiql/src/utility/getSelectedOperationName.js +++ b/packages/graphiql/src/utility/getSelectedOperationName.js @@ -12,7 +12,7 @@ export default function getSelectedOperationName( prevOperations, prevSelectedOperationName, - operations, + operations ) { // If there are not enough operations to bother with, return nothing. if (!operations || operations.length < 1) { diff --git a/packages/graphiql/src/utility/mergeAst.js b/packages/graphiql/src/utility/mergeAst.js index 9459f106f6f..a307fb3af8a 100644 --- a/packages/graphiql/src/utility/mergeAst.js +++ b/packages/graphiql/src/utility/mergeAst.js @@ -22,8 +22,8 @@ function resolveDefinition(fragments, obj) { self.findIndex( _selection => _selection.kind === Kind.FRAGMENT_SPREAD && - selection.name.value === _selection.name.value, - ), + selection.name.value === _selection.name.value + ) ) .map(selection => resolveDefinition(fragments, selection)); } diff --git a/packages/graphiql/src/utility/onHasCompletion.js b/packages/graphiql/src/utility/onHasCompletion.js index 18a2a94ae45..d87b4bf51f3 100644 --- a/packages/graphiql/src/utility/onHasCompletion.js +++ b/packages/graphiql/src/utility/onHasCompletion.js @@ -50,7 +50,7 @@ export default function onHasCompletion(cm, data, onHintInformationRender) { deprecation = null; onRemoveFn = null; } - }), + }) ); } diff --git a/packages/graphql-language-service-interface/package.json b/packages/graphql-language-service-interface/package.json index 82ec8dec62a..15ef9fb0ab0 100644 --- a/packages/graphql-language-service-interface/package.json +++ b/packages/graphql-language-service-interface/package.json @@ -22,8 +22,8 @@ "main": "dist/index.js", "scripts": { "test": "node ../../resources/runTests.js", - "build": "yarn run build-js && yarn run build-flow", - "build-js": "node ../../resources/buildJs.js", + "build": "yarn run build-ts && yarn run build-flow", + "build-ts": "tsc", "build-flow": "node ../../resources/buildFlow.js", "prepublish": "node ../../resources/prepublish.js" }, diff --git a/packages/graphql-language-service-parser/package.json b/packages/graphql-language-service-parser/package.json index b263ab0b17c..0814f2db9b5 100644 --- a/packages/graphql-language-service-parser/package.json +++ b/packages/graphql-language-service-parser/package.json @@ -22,8 +22,8 @@ "main": "./dist/index.js", "typings": "./dist/index.d.ts", "scripts": { - "build": "yarn run build-js && yarn run build-flow", - "build-js": "node ../../resources/buildJs.js", + "build": "yarn run build-ts && yarn run build-flow", + "build-ts": "tsc", "build-flow": "node ../../resources/buildFlow.js", "prepublish": "node ../../resources/prepublish.js" }, diff --git a/packages/graphql-language-service-server/src/GraphQLCache.js b/packages/graphql-language-service-server/src/GraphQLCache.js index 28b95d82944..8c19827effd 100644 --- a/packages/graphql-language-service-server/src/GraphQLCache.js +++ b/packages/graphql-language-service-server/src/GraphQLCache.js @@ -57,7 +57,7 @@ const { } = Kind; export async function getGraphQLCache( - configDir: Uri, + configDir: Uri ): Promise { const graphQLConfig = await getGraphQLConfig(configDir); return new GraphQLCache(configDir, graphQLConfig); @@ -87,7 +87,7 @@ export class GraphQLCache implements GraphQLCacheInterface { getFragmentDependencies = async ( query: string, - fragmentDefinitions: ?Map, + fragmentDefinitions: ?Map ): Promise> => { // If there isn't context for fragment references, // return an empty array. @@ -110,7 +110,7 @@ export class GraphQLCache implements GraphQLCacheInterface { getFragmentDependenciesForAST = async ( parsedQuery: ASTNode, - fragmentDefinitions: Map, + fragmentDefinitions: Map ): Promise> => { if (!fragmentDefinitions) { return []; @@ -160,7 +160,7 @@ export class GraphQLCache implements GraphQLCacheInterface { }; getFragmentDefinitions = async ( - projectConfig: GraphQLProjectConfig, + projectConfig: GraphQLProjectConfig ): Promise> => { // This function may be called from other classes. // If then, check the cache first. @@ -171,10 +171,10 @@ export class GraphQLCache implements GraphQLCacheInterface { const filesFromInputDirs = await this._readFilesFromInputDirs( rootDir, - projectConfig.includes, + projectConfig.includes ); const list = filesFromInputDirs.filter(fileInfo => - projectConfig.includesFile(fileInfo.filePath), + projectConfig.includesFile(fileInfo.filePath) ); const { @@ -190,7 +190,7 @@ export class GraphQLCache implements GraphQLCacheInterface { getObjectTypeDependencies = async ( query: string, - objectTypeDefinitions: ?Map, + objectTypeDefinitions: ?Map ): Promise> => { // If there isn't context for object type references, // return an empty array. @@ -210,13 +210,13 @@ export class GraphQLCache implements GraphQLCacheInterface { } return this.getObjectTypeDependenciesForAST( parsedQuery, - objectTypeDefinitions, + objectTypeDefinitions ); }; getObjectTypeDependenciesForAST = async ( parsedQuery: ASTNode, - objectTypeDefinitions: Map, + objectTypeDefinitions: Map ): Promise> => { if (!objectTypeDefinitions) { return []; @@ -272,7 +272,7 @@ export class GraphQLCache implements GraphQLCacheInterface { }; getObjectTypeDefinitions = async ( - projectConfig: GraphQLProjectConfig, + projectConfig: GraphQLProjectConfig ): Promise> => { // This function may be called from other classes. // If then, check the cache first. @@ -282,10 +282,10 @@ export class GraphQLCache implements GraphQLCacheInterface { } const filesFromInputDirs = await this._readFilesFromInputDirs( rootDir, - projectConfig.includes, + projectConfig.includes ); const list = filesFromInputDirs.filter(fileInfo => - projectConfig.includesFile(fileInfo.filePath), + projectConfig.includesFile(fileInfo.filePath) ); const { objectTypeDefinitions, @@ -299,7 +299,7 @@ export class GraphQLCache implements GraphQLCacheInterface { handleWatchmanSubscribeEvent = ( rootDir: string, - projectConfig: GraphQLProjectConfig, + projectConfig: GraphQLProjectConfig ) => (result: Object) => { if (result.files && result.files.length > 0) { const graphQLFileMap = this._graphQLFileListCache.get(rootDir); @@ -351,8 +351,8 @@ export class GraphQLCache implements GraphQLCacheInterface { graphQLFileMap, { size, mtime }, filePath, - exists, - ), + exists + ) ); } @@ -365,7 +365,7 @@ export class GraphQLCache implements GraphQLCacheInterface { _readFilesFromInputDirs = ( rootDir: string, - includes: string[], + includes: string[] ): Promise> => { let pattern: string; @@ -403,21 +403,21 @@ export class GraphQLCache implements GraphQLCacheInterface { if (error) { reject(error); } - }, + } ); globResult.on('end', () => { resolve( Object.keys(globResult.statCache) .filter( - filePath => typeof globResult.statCache[filePath] === 'object', + filePath => typeof globResult.statCache[filePath] === 'object' ) .map(filePath => ({ filePath, mtime: Math.trunc( - globResult.statCache[filePath].mtime.getTime() / 1000, + globResult.statCache[filePath].mtime.getTime() / 1000 ), size: globResult.statCache[filePath].size, - })), + })) ); }); }); @@ -427,7 +427,7 @@ export class GraphQLCache implements GraphQLCacheInterface { graphQLFileMap: Map, metrics: { size: number, mtime: number }, filePath: Uri, - exists: boolean, + exists: boolean ): Promise> { const fileAndContent = exists ? await this.promiseToReadGraphQLFile(filePath) @@ -452,7 +452,7 @@ export class GraphQLCache implements GraphQLCacheInterface { async updateFragmentDefinition( rootDir: Uri, filePath: Uri, - contents: Array, + contents: Array ): Promise { const cache = this._fragmentDefinitionsCache.get(rootDir); const asts = contents.map(({ query }) => { @@ -495,7 +495,7 @@ export class GraphQLCache implements GraphQLCacheInterface { async updateFragmentDefinitionCache( rootDir: Uri, filePath: Uri, - exists: boolean, + exists: boolean ): Promise { const fileAndContent = exists ? await this.promiseToReadGraphQLFile(filePath) @@ -517,7 +517,7 @@ export class GraphQLCache implements GraphQLCacheInterface { async updateObjectTypeDefinition( rootDir: Uri, filePath: Uri, - contents: Array, + contents: Array ): Promise { const cache = this._typeDefinitionsCache.get(rootDir); const asts = contents.map(({ query }) => { @@ -564,7 +564,7 @@ export class GraphQLCache implements GraphQLCacheInterface { async updateObjectTypeDefinitionCache( rootDir: Uri, filePath: Uri, - exists: boolean, + exists: boolean ): Promise { const fileAndContent = exists ? await this.promiseToReadGraphQLFile(filePath) @@ -582,7 +582,7 @@ export class GraphQLCache implements GraphQLCacheInterface { this.updateObjectTypeDefinition( rootDir, filePath, - fileAndContent.queries, + fileAndContent.queries ); } } @@ -590,7 +590,7 @@ export class GraphQLCache implements GraphQLCacheInterface { _extendSchema( schema: GraphQLSchema, schemaPath: ?string, - schemaCacheKey: ?string, + schemaCacheKey: ?string ): GraphQLSchema { const graphQLFileMap = this._graphQLFileListCache.get(this._configDir); const typeExtensions = []; @@ -651,7 +651,7 @@ export class GraphQLCache implements GraphQLCacheInterface { getSchema = async ( appName: ?string, - queryHasExtensions?: ?boolean = false, + queryHasExtensions?: ?boolean = false ): Promise => { const projectConfig = this._graphQLConfig.getProjectConfig(appName); @@ -661,7 +661,9 @@ export class GraphQLCache implements GraphQLCacheInterface { const schemaPath = projectConfig.schemaPath; const endpointInfo = this._getDefaultEndpoint(projectConfig); - const {endpointKey, schemaKey} = this._getSchemaCacheKeysForProject(projectConfig); + const { endpointKey, schemaKey } = this._getSchemaCacheKeysForProject( + projectConfig + ); let schemaCacheKey = null; let schema = null; @@ -710,7 +712,7 @@ export class GraphQLCache implements GraphQLCacheInterface { parse(directivesSDL, { allowLegacySDLImplementsInterfaces: true, allowLegacySDLEmptyFields: true, - }), + }) ); } @@ -729,7 +731,9 @@ export class GraphQLCache implements GraphQLCacheInterface { }; _invalidateSchemaCacheForProject(projectConfig: GraphQLProjectConfig) { - const {endpointKey, schemaKey} = this._getSchemaCacheKeysForProject(projectConfig); + const { endpointKey, schemaKey } = this._getSchemaCacheKeysForProject( + projectConfig + ); endpointKey && this._schemaMap.delete(endpointKey); schemaKey && this._schemaMap.delete(schemaKey); } @@ -738,9 +742,13 @@ export class GraphQLCache implements GraphQLCacheInterface { const endpointInfo = this._getDefaultEndpoint(projectConfig); const projectName = this._getProjectName(projectConfig); return { - endpointKey: endpointInfo ? `${endpointInfo.endpointName}:${projectName}` : null, - schemaKey: projectConfig.schemaPath ? `${projectConfig.schemaPath}:${projectName}` : null, - } + endpointKey: endpointInfo + ? `${endpointInfo.endpointName}:${projectName}` + : null, + schemaKey: projectConfig.schemaPath + ? `${projectConfig.schemaPath}:${projectName}` + : null, + }; } _getProjectName(projectConfig: GraphQLProjectConfig) { @@ -748,7 +756,7 @@ export class GraphQLCache implements GraphQLCacheInterface { } _getDefaultEndpoint( - projectConfig: GraphQLProjectConfig, + projectConfig: GraphQLProjectConfig ): ?{ endpointName: string, endpoint: GraphQLEndpoint } { // Jumping through hoops to get the default endpoint by name (needed for cache key) const endpointsExtension = projectConfig.endpointsExtension; @@ -759,7 +767,7 @@ export class GraphQLCache implements GraphQLCacheInterface { const defaultRawEndpoint = endpointsExtension.getRawEndpoint(); const rawEndpointsMap = endpointsExtension.getRawEndpointsMap(); const endpointName = Object.keys(rawEndpointsMap).find( - name => rawEndpointsMap[name] === defaultRawEndpoint, + name => rawEndpointsMap[name] === defaultRawEndpoint ); if (!endpointName) { @@ -777,7 +785,7 @@ export class GraphQLCache implements GraphQLCacheInterface { * and create fragmentDefinitions and GraphQL files cache. */ readAllGraphQLFiles = async ( - list: Array, + list: Array ): Promise<{ objectTypeDefinitions: Map, fragmentDefinitions: Map, @@ -807,8 +815,8 @@ export class GraphQLCache implements GraphQLCacheInterface { ...response, mtime: fileInfo.mtime, size: fileInfo.size, - }), - ), + }) + ) ); await Promise.all(promises); // eslint-disable-line no-await-in-loop } @@ -821,7 +829,7 @@ export class GraphQLCache implements GraphQLCacheInterface { * map of fragmentDefinitions and GraphQL file cache. */ processGraphQLFiles = ( - responses: Array, + responses: Array ): { objectTypeDefinitions: Map, fragmentDefinitions: Map, @@ -877,7 +885,7 @@ export class GraphQLCache implements GraphQLCacheInterface { * including a parsed AST. */ promiseToReadGraphQLFile = ( - filePath: Uri, + filePath: Uri ): Promise<{ filePath: Uri, content: string, @@ -907,8 +915,8 @@ export class GraphQLCache implements GraphQLCacheInterface { parse(query, { allowLegacySDLImplementsInterfaces: true, allowLegacySDLEmptyFields: true, - }), - ), + }) + ) ); } catch (_) { // If query has syntax errors, go ahead and still resolve @@ -918,7 +926,7 @@ export class GraphQLCache implements GraphQLCacheInterface { } } resolve({ filePath, content, asts, queries }); - }), + }) ); }; } diff --git a/packages/graphql-language-service-server/src/GraphQLWatchman.js b/packages/graphql-language-service-server/src/GraphQLWatchman.js index 7542a734eba..fd4fa090f0c 100644 --- a/packages/graphql-language-service-server/src/GraphQLWatchman.js +++ b/packages/graphql-language-service-server/src/GraphQLWatchman.js @@ -40,7 +40,7 @@ export class GraphQLWatchman { // {'version': '3.8.0', 'capabilities': {'relative_root': true}}. resolve(); } - }, + } ); this._client.on('error', reject); }); @@ -48,7 +48,7 @@ export class GraphQLWatchman { async listFiles( entryPath: Uri, - options?: { [name: string]: any } = {}, + options?: { [name: string]: any } = {} ): Promise> { const { watch, relative_path } = await this.watchProject(entryPath); const result = await this.runCommand('query', watch, { @@ -83,7 +83,7 @@ export class GraphQLWatchman { reject(error); } resolve(response); - }), + }) ).catch(error => { throw new Error(error); }); @@ -100,7 +100,7 @@ export class GraphQLWatchman { async subscribe( entryPath: Uri, - callback: (result: Object) => void, + callback: (result: Object) => void ): Promise { const { watch, relative_path } = await this.watchProject(entryPath); diff --git a/packages/graphql-language-service-server/src/Logger.js b/packages/graphql-language-service-server/src/Logger.js index d819e5db8cd..35963145f63 100644 --- a/packages/graphql-language-service-server/src/Logger.js +++ b/packages/graphql-language-service-server/src/Logger.js @@ -40,7 +40,7 @@ export class Logger implements VSCodeLogger { dir, `graphql-language-service-log-${ os.userInfo().username - }-${getDateString()}.log`, + }-${getDateString()}.log` ); this._stream = null; diff --git a/packages/graphql-language-service-server/src/MessageProcessor.js b/packages/graphql-language-service-server/src/MessageProcessor.js index 14bf97419fc..0c415f7dc6d 100644 --- a/packages/graphql-language-service-server/src/MessageProcessor.js +++ b/packages/graphql-language-service-server/src/MessageProcessor.js @@ -83,7 +83,7 @@ export class MessageProcessor { async handleInitializeRequest( params: InitializeRequest.type, token: CancellationToken, - configDir?: string, + configDir?: string ): Promise { if (!params) { throw new Error('`params` argument is required to initialize.'); @@ -99,11 +99,11 @@ export class MessageProcessor { }; const rootPath = dirname( - findGraphQLConfigFile(configDir ? configDir.trim() : params.rootPath), + findGraphQLConfigFile(configDir ? configDir.trim() : params.rootPath) ); if (!rootPath) { throw new Error( - '`--configDir` option or `rootPath` argument is required.', + '`--configDir` option or `rootPath` argument is required.' ); } @@ -124,7 +124,7 @@ export class MessageProcessor { JSON.stringify({ type: 'usage', messageType: 'initialize', - }), + }) ); return serverCapabilities; @@ -134,7 +134,7 @@ export class MessageProcessor { // installed. Otherwise, rely on LSP watched files did change events. async _subcribeWatchman( config: GraphQLConfig, - watchmanClient: GraphQLWatchman, + watchmanClient: GraphQLWatchman ) { if (!watchmanClient) { return; @@ -162,8 +162,8 @@ export class MessageProcessor { projectConfig.configDir, this._graphQLCache.handleWatchmanSubscribeEvent( config.configDir, - projectConfig, - ), + projectConfig + ) ); }); } catch (err) { @@ -179,7 +179,7 @@ export class MessageProcessor { } async handleDidOpenOrSaveNotification( - params: NotificationMessage, + params: NotificationMessage ): Promise { if (!this._isInitialized) { return null; @@ -215,12 +215,12 @@ export class MessageProcessor { const results = await this._languageService.getDiagnostics( query, uri, - this._isRelayCompatMode(query) ? false : true, + this._isRelayCompatMode(query) ? false : true ); if (results && results.length > 0) { diagnostics.push(...processDiagnosticsMessage(results, query, range)); } - }), + }) ); this._logger.log( @@ -231,14 +231,14 @@ export class MessageProcessor { .getGraphQLConfig() .getProjectNameForFile(uri), fileName: uri, - }), + }) ); return { uri, diagnostics }; } async handleDidChangeNotification( - params: NotificationMessage, + params: NotificationMessage ): Promise { if (!this._isInitialized) { return null; @@ -254,7 +254,7 @@ export class MessageProcessor { !params.textDocument.uri ) { throw new Error( - '`textDocument`, `textDocument.uri`, and `contentChanges` arguments are required.', + '`textDocument`, `textDocument.uri`, and `contentChanges` arguments are required.' ); } @@ -289,7 +289,7 @@ export class MessageProcessor { if (results && results.length > 0) { diagnostics.push(...processDiagnosticsMessage(results, query, range)); } - }), + }) ); this._logger.log( @@ -300,7 +300,7 @@ export class MessageProcessor { .getGraphQLConfig() .getProjectNameForFile(uri), fileName: uri, - }), + }) ); return { uri, diagnostics }; @@ -331,7 +331,7 @@ export class MessageProcessor { .getGraphQLConfig() .getProjectNameForFile(uri), fileName: uri, - }), + }) ); } @@ -345,7 +345,7 @@ export class MessageProcessor { } validateDocumentAndPosition( - params: CompletionRequest.type | HoverRequest.type, + params: CompletionRequest.type | HoverRequest.type ): void { if ( !params || @@ -354,14 +354,14 @@ export class MessageProcessor { !params.position ) { throw new Error( - '`textDocument`, `textDocument.uri`, and `position` arguments are required.', + '`textDocument`, `textDocument.uri`, and `position` arguments are required.' ); } } async handleCompletionRequest( params: CompletionRequest.type, - token: CancellationToken, + token: CancellationToken ): Promise> { if (!this._isInitialized) { // $FlowFixMe @@ -404,7 +404,7 @@ export class MessageProcessor { const result = await this._languageService.getAutocompleteSuggestions( query, position, - textDocument.uri, + textDocument.uri ); this._logger.log( @@ -415,7 +415,7 @@ export class MessageProcessor { .getGraphQLConfig() .getProjectNameForFile(textDocument.uri), fileName: textDocument.uri, - }), + }) ); return { items: result, isIncomplete: false }; @@ -423,7 +423,7 @@ export class MessageProcessor { async handleHoverRequest( params: HoverRequest.type, - token: CancellationToken, + token: CancellationToken ): Promise { if (!this._isInitialized) { return []; @@ -459,7 +459,7 @@ export class MessageProcessor { const result = await this._languageService.getHoverInformation( query, position, - textDocument.uri, + textDocument.uri ); return { @@ -468,7 +468,7 @@ export class MessageProcessor { } async handleWatchedFilesChangedNotification( - params: DidChangeWatchedFilesParams, + params: DidChangeWatchedFilesParams ): Promise { if (!this._isInitialized || this._watchmanClient) { return null; @@ -491,14 +491,14 @@ export class MessageProcessor { contents.map(async ({ query, range }) => { const results = await this._languageService.getDiagnostics( query, - uri, + uri ); if (results && results.length > 0) { return processDiagnosticsMessage(results, query, range); } else { return []; } - }), + }) )).reduce((left, right) => left.concat(right)); this._logger.log( @@ -509,7 +509,7 @@ export class MessageProcessor { .getGraphQLConfig() .getProjectNameForFile(uri), fileName: uri, - }), + }) ); return { uri, diagnostics }; @@ -517,21 +517,21 @@ export class MessageProcessor { this._graphQLCache.updateFragmentDefinitionCache( this._graphQLCache.getGraphQLConfig().configDir, change.uri, - false, + false ); this._graphQLCache.updateObjectTypeDefinitionCache( this._graphQLCache.getGraphQLConfig().configDir, change.uri, - false, + false ); } - }), + }) ); } async handleDefinitionRequest( params: DefinitionRequest.type, - token: CancellationToken, + token: CancellationToken ): Promise> { if (!this._isInitialized) { return []; @@ -567,7 +567,7 @@ export class MessageProcessor { const result = await this._languageService.getDefinition( query, position, - textDocument.uri, + textDocument.uri ); const formatted = result ? result.definitions.map(res => { @@ -596,7 +596,7 @@ export class MessageProcessor { .getGraphQLConfig() .getProjectNameForFile(textDocument.uri), fileName: textDocument.uri, - }), + }) ); return formatted; } @@ -610,27 +610,27 @@ export class MessageProcessor { async _updateFragmentDefinition( uri: Uri, - contents: Array, + contents: Array ): Promise { const rootDir = this._graphQLCache.getGraphQLConfig().configDir; await this._graphQLCache.updateFragmentDefinition( rootDir, new URL(uri).pathname, - contents, + contents ); } async _updateObjectTypeDefinition( uri: Uri, - contents: Array, + contents: Array ): Promise { const rootDir = this._graphQLCache.getGraphQLConfig().configDir; await this._graphQLCache.updateObjectTypeDefinition( rootDir, new URL(uri).pathname, - contents, + contents ); } @@ -648,7 +648,7 @@ export class MessageProcessor { _invalidateCache( textDocument: Object, uri: Uri, - contents: Array, + contents: Array ): void { if (this._textDocumentCache.has(uri)) { const cachedDocument = this._textDocumentCache.get(uri); @@ -678,7 +678,7 @@ export class MessageProcessor { // are not found. export function getQueryAndRange( text: string, - uri: string, + uri: string ): Array { // Check if the text content includes a GraphQLV query. // If the text doesn't include GraphQL queries, do not proceed. @@ -700,7 +700,7 @@ export function getQueryAndRange( const lines = query.split('\n'); const range = new Range( new Position(0, 0), - new Position(lines.length - 1, lines[lines.length - 1].length - 1), + new Position(lines.length - 1, lines[lines.length - 1].length - 1) ); return [{ query, range }]; } @@ -709,14 +709,14 @@ export function getQueryAndRange( function processDiagnosticsMessage( results: Array, query: string, - range: ?RangeType, + range: ?RangeType ): Array { const queryLines = query.split('\n'); const totalLines = queryLines.length; const lastLineLength = queryLines[totalLines - 1].length; const lastCharacterPosition = new Position(totalLines, lastLineLength); const processedResults = results.filter(diagnostic => - diagnostic.range.end.lessThanOrEqualTo(lastCharacterPosition), + diagnostic.range.end.lessThanOrEqualTo(lastCharacterPosition) ); if (range) { @@ -726,12 +726,12 @@ function processDiagnosticsMessage( range: new Range( new Position( diagnostic.range.start.line + offset.line, - diagnostic.range.start.character, + diagnostic.range.start.character ), new Position( diagnostic.range.end.line + offset.line, - diagnostic.range.end.character, - ), + diagnostic.range.end.character + ) ), })); } diff --git a/packages/graphql-language-service-server/src/__mocks__/MockWatchmanClient.js b/packages/graphql-language-service-server/src/__mocks__/MockWatchmanClient.js index fe8dd0cf775..0aaa379de08 100644 --- a/packages/graphql-language-service-server/src/__mocks__/MockWatchmanClient.js +++ b/packages/graphql-language-service-server/src/__mocks__/MockWatchmanClient.js @@ -18,7 +18,7 @@ class MockWatchmanClient { listFiles( entryPath: Uri, - options?: { [name: string]: any } = {}, + options?: { [name: string]: any } = {} ): Promise> { return Promise.resolve([]); } diff --git a/packages/graphql-language-service-server/src/__tests__/GraphQLCache-test.js b/packages/graphql-language-service-server/src/__tests__/GraphQLCache-test.js index 65fa608d999..4fc9b0cf2a0 100644 --- a/packages/graphql-language-service-server/src/__tests__/GraphQLCache-test.js +++ b/packages/graphql-language-service-server/src/__tests__/GraphQLCache-test.js @@ -81,7 +81,7 @@ describe('GraphQLCache', () => { it('extend the schema with appropriate custom directive', async () => { const schema = await cache.getSchema('testWithCustomDirectives'); expect( - wihtoutASTNode(schema.getDirective('customDirective')), + wihtoutASTNode(schema.getDirective('customDirective')) ).toMatchObject( expect.objectContaining({ args: [], @@ -90,14 +90,14 @@ describe('GraphQLCache', () => { // isRepeatable: false, locations: ['FIELD'], name: 'customDirective', - }), + }) ); }); it('extend the schema with appropriate custom directive 2', async () => { const schema = await cache.getSchema('testWithSchema'); expect( - wihtoutASTNode(schema.getDirective('customDirective')), + wihtoutASTNode(schema.getDirective('customDirective')) ).toMatchObject( expect.objectContaining({ args: [], @@ -106,7 +106,7 @@ describe('GraphQLCache', () => { // isRepeatable: false, locations: ['FRAGMENT_SPREAD'], name: 'customDirective', - }), + }) ); }); }); @@ -118,7 +118,7 @@ describe('GraphQLCache', () => { expect(cache._schemaMap.size).toEqual(1); const handler = cache.handleWatchmanSubscribeEvent( __dirname, - projectConfig, + projectConfig ); const testResult = { root: __dirname, @@ -139,7 +139,7 @@ describe('GraphQLCache', () => { it('handles invalidating the endpoint cache', async () => { const projectConfig = graphQLRC.getProjectConfig( - 'testWithEndpointAndSchema', + 'testWithEndpointAndSchema' ); const introspectionResult = await graphQLRC .getProjectConfig('testWithSchema') @@ -159,7 +159,7 @@ describe('GraphQLCache', () => { expect(cache._schemaMap.size).toEqual(1); const handler = cache.handleWatchmanSubscribeEvent( __dirname, - projectConfig, + projectConfig ); const testResult = { root: __dirname, @@ -216,7 +216,7 @@ describe('GraphQLCache', () => { const contents = getQueryAndRange(text, 'test.js'); const result = await cache.getFragmentDependenciesForAST( parse(contents[0].query), - fragmentDefinitions, + fragmentDefinitions ); expect(result.length).toEqual(2); }); @@ -226,7 +226,7 @@ describe('GraphQLCache', () => { const result = await cache.getFragmentDependenciesForAST( ast, - fragmentDefinitions, + fragmentDefinitions ); expect(result.length).toEqual(1); }); @@ -289,7 +289,7 @@ describe('GraphQLCache', () => { it('finds named types referenced from the SDL', async () => { const result = await cache.getObjectTypeDependenciesForAST( parsedQuery, - namedTypeDefinitions, + namedTypeDefinitions ); expect(result.length).toEqual(1); }); diff --git a/packages/graphql-language-service-server/src/__tests__/MessageProcessor-test.js b/packages/graphql-language-service-server/src/__tests__/MessageProcessor-test.js index a67ac9e4c92..596a09737e0 100644 --- a/packages/graphql-language-service-server/src/__tests__/MessageProcessor-test.js +++ b/packages/graphql-language-service-server/src/__tests__/MessageProcessor-test.js @@ -176,7 +176,7 @@ describe('MessageProcessor', () => { schemaPath, includes: `${queryDir}/*.graphql`, }, - 'not/a/real/config', + 'not/a/real/config' ); await messageProcessor._subcribeWatchman(config, mockWatchmanClient); @@ -192,7 +192,7 @@ describe('MessageProcessor', () => { }, }, }, - 'not/a/real/config', + 'not/a/real/config' ); await messageProcessor._subcribeWatchman(config, mockWatchmanClient); diff --git a/packages/graphql-language-service-server/src/findGraphQLTags.js b/packages/graphql-language-service-server/src/findGraphQLTags.js index f24124f5de4..28825b5f886 100644 --- a/packages/graphql-language-service-server/src/findGraphQLTags.js +++ b/packages/graphql-language-service-server/src/findGraphQLTags.js @@ -23,7 +23,7 @@ const PARSER_OPTIONS = { 'jsx', 'doExpressions', 'objectRestSpread', - ['decorators', {decoratorsBeforeExport: false}], + ['decorators', { decoratorsBeforeExport: false }], 'classProperties', 'classPrivateProperties', 'classPrivateMethods', @@ -39,14 +39,14 @@ const PARSER_OPTIONS = { 'bigInt', 'optionalCatchBinding', 'throwExpressions', - ['pipelineOperator', {proposal: 'minimal'}], + ['pipelineOperator', { proposal: 'minimal' }], 'nullishCoalescingOperator', ], strictMode: false, }; export function findGraphQLTags( - text: string, + text: string ): Array<{ tag: string, template: string, range: Range }> { const result = []; const ast = parse(text, PARSER_OPTIONS); @@ -77,7 +77,7 @@ export function findGraphQLTags( const loc = property.value.loc; const range = new Range( new Position(loc.start.line - 1, loc.start.column), - new Position(loc.end.line - 1, loc.end.column), + new Position(loc.end.line - 1, loc.end.column) ); result.push({ tag: tagName, @@ -93,7 +93,7 @@ export function findGraphQLTags( const loc = fragments.loc; const range = new Range( new Position(loc.start.line - 1, loc.start.column), - new Position(loc.end.line - 1, loc.end.column), + new Position(loc.end.line - 1, loc.end.column) ); result.push({ tag: tagName, @@ -114,7 +114,7 @@ export function findGraphQLTags( const loc = node.quasi.quasis[0].loc; const range = new Range( new Position(loc.start.line - 1, loc.start.column), - new Position(loc.end.line - 1, loc.end.column), + new Position(loc.end.line - 1, loc.end.column) ); result.push({ tag: tagName, @@ -134,7 +134,7 @@ const CREATE_CONTAINER_FUNCTIONS = { createRefetchContainer: true, }; -const IDENTIFIERS = {graphql: true, gql: true}; +const IDENTIFIERS = { graphql: true, gql: true }; const IGNORED_KEYS = { comments: true, diff --git a/packages/graphql-language-service-server/src/startServer.js b/packages/graphql-language-service-server/src/startServer.js index 65ec592bdcf..6bc860cfaa0 100644 --- a/packages/graphql-language-service-server/src/startServer.js +++ b/packages/graphql-language-service-server/src/startServer.js @@ -61,7 +61,7 @@ export default (async function startServer(options: Options): Promise { // Do that, and return at the end of this block. if (!options.port) { process.stderr.write( - '--port is required to establish socket connection.', + '--port is required to establish socket connection.' ); process.exit(1); return; @@ -102,79 +102,79 @@ export default (async function startServer(options: Options): Promise { function addHandlers( connection: MessageConnection, configDir?: string, - logger: Logger, + logger: Logger ): void { const messageProcessor = new MessageProcessor(logger, new GraphQLWatchman()); connection.onNotification( DidOpenTextDocumentNotification.type, async params => { const diagnostics = await messageProcessor.handleDidOpenOrSaveNotification( - params, + params ); if (diagnostics) { connection.sendNotification( PublishDiagnosticsNotification.type, - diagnostics, + diagnostics ); } - }, + } ); connection.onNotification( DidSaveTextDocumentNotification.type, async params => { const diagnostics = await messageProcessor.handleDidOpenOrSaveNotification( - params, + params ); if (diagnostics) { connection.sendNotification( PublishDiagnosticsNotification.type, - diagnostics, + diagnostics ); } - }, + } ); connection.onNotification( DidChangeTextDocumentNotification.type, async params => { const diagnostics = await messageProcessor.handleDidChangeNotification( - params, + params ); if (diagnostics) { connection.sendNotification( PublishDiagnosticsNotification.type, - diagnostics, + diagnostics ); } - }, + } ); connection.onNotification(DidCloseTextDocumentNotification.type, params => - messageProcessor.handleDidCloseNotification(params), + messageProcessor.handleDidCloseNotification(params) ); connection.onRequest(ShutdownRequest.type, () => - messageProcessor.handleShutdownRequest(), + messageProcessor.handleShutdownRequest() ); connection.onNotification(ExitNotification.type, () => - messageProcessor.handleExitNotification(), + messageProcessor.handleExitNotification() ); // Ignore cancel requests connection.onNotification('$/cancelRequest', () => ({})); connection.onRequest(InitializeRequest.type, (params, token) => - messageProcessor.handleInitializeRequest(params, token, configDir), + messageProcessor.handleInitializeRequest(params, token, configDir) ); connection.onRequest(CompletionRequest.type, params => - messageProcessor.handleCompletionRequest(params), + messageProcessor.handleCompletionRequest(params) ); connection.onRequest(CompletionResolveRequest.type, item => item); connection.onRequest(DefinitionRequest.type, params => - messageProcessor.handleDefinitionRequest(params), + messageProcessor.handleDefinitionRequest(params) ); connection.onRequest(HoverRequest.type, params => - messageProcessor.handleHoverRequest(params), + messageProcessor.handleHoverRequest(params) ); connection.onNotification(DidChangeWatchedFilesNotification.type, params => - messageProcessor.handleWatchedFilesChangedNotification(params), + messageProcessor.handleWatchedFilesChangedNotification(params) ); } diff --git a/packages/graphql-language-service-types/package.json b/packages/graphql-language-service-types/package.json index 0de5d72ae58..5cfc0277c14 100644 --- a/packages/graphql-language-service-types/package.json +++ b/packages/graphql-language-service-types/package.json @@ -22,8 +22,8 @@ "main": "dist/index.js", "typings": "src/index", "scripts": { - "build": "yarn run build-js && yarn run build-flow", - "build-js": "node ../../resources/buildJs.js", + "build": "yarn run build-ts && yarn run build-flow", + "build-ts": "tsc", "build-flow": "node ../../resources/buildFlow.js", "prepublish": "node ../../resources/prepublish.js" }, diff --git a/packages/graphql-language-service-utils/package.json b/packages/graphql-language-service-utils/package.json index c297f78106f..9999c931190 100644 --- a/packages/graphql-language-service-utils/package.json +++ b/packages/graphql-language-service-utils/package.json @@ -23,8 +23,8 @@ "types": "src/index.ts", "scripts": { "test": "node ../../resources/runTests.js", - "build": "yarn run build-js && yarn run build-flow", - "build-js": "node ../../resources/buildJs.js", + "build": "yarn run build-ts && yarn run build-flow", + "build-ts": "tsc", "build-flow": "node ../../resources/buildFlow.js", "prepublish": "node ../../resources/prepublish.js" }, diff --git a/packages/graphql-language-service/src/cli.js b/packages/graphql-language-service/src/cli.js index 6c87c8bc75f..4eb5df040cc 100644 --- a/packages/graphql-language-service/src/cli.js +++ b/packages/graphql-language-service/src/cli.js @@ -23,14 +23,14 @@ const { argv } = yargs ' [-f | --file] {filePath}\n' + ' [-s | --schema] {schemaPath}\n' + ' [-m | --method] {method}\n' + - ' [-p | --port] {port}\n', + ' [-p | --port] {port}\n' ) .help('h') .alias('h', 'help') .demand( 1, 'At least one command is required.\n' + - 'Commands: "server, validate, autocomplete, outline"\n', + 'Commands: "server, validate, autocomplete, outline"\n' ) .option('t', { alias: 'text', @@ -99,7 +99,7 @@ switch (command) { case 'server': process.on('uncaughtException', error => { process.stdout.write( - 'An error was thrown from GraphQL language service: ' + String(error), + 'An error was thrown from GraphQL language service: ' + String(error) ); process.exit(0); }); @@ -107,7 +107,7 @@ switch (command) { watchmanClient.capabilityCheck({}, (error, res) => { if (error) { process.stderr.write( - `Cannot find installed watchman service with an error: ${error}`, + `Cannot find installed watchman service with an error: ${error}` ); process.exit(0); } diff --git a/packages/graphql-language-service/src/client.js b/packages/graphql-language-service/src/client.js index 08c619d312c..69877d4f57b 100644 --- a/packages/graphql-language-service/src/client.js +++ b/packages/graphql-language-service/src/client.js @@ -41,7 +41,7 @@ export default function main(command: string, argv: Object): void { const filePath = argv.file && argv.file.trim(); invariant( argv.text || argv.file, - 'A path to the GraphQL file or its contents is required.', + 'A path to the GraphQL file or its contents is required.' ); const text = ensureText(argv.text, filePath); @@ -72,11 +72,11 @@ export default function main(command: string, argv: Object): void { function _getAutocompleteSuggestions( queryText: string, point: Position, - schemaPath: string, + schemaPath: string ): EXIT_CODE { invariant( schemaPath, - 'A schema path is required to provide GraphQL autocompletion', + 'A schema path is required to provide GraphQL autocompletion' ); try { @@ -99,7 +99,7 @@ function _getAutocompleteSuggestions( function _getDiagnostics( filePath: string, queryText: string, - schemaPath?: string, + schemaPath?: string ): EXIT_CODE { try { // `schema` is not strictly requied as GraphQL diagnostics may still notify diff --git a/resources/runTests.js b/resources/runTests.js index 4cf42c5c484..90f2b8724d3 100644 --- a/resources/runTests.js +++ b/resources/runTests.js @@ -14,5 +14,5 @@ exec( 'jest', '--config', path.join(__dirname, '../', 'jest.config.js'), - '--rootDir', + '--rootDir' ); diff --git a/yarn.lock b/yarn.lock index ed54eb674ca..6185786a27f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2136,7 +2136,7 @@ acorn-globals@^4.1.0, acorn-globals@^4.3.0: acorn "^6.0.1" acorn-walk "^6.0.1" -acorn-jsx@^5.0.0: +acorn-jsx@^5.0.2: version "5.0.2" resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.2.tgz#84b68ea44b373c4f8686023a551f61a21b7c4a4f" integrity sha512-tiNTrP1MP0QrChmD2DdupCr6HWSFeKVw5d/dHTu4Y7rkAkRhU/Dt7dphAfIUyxtHpl/eBVip5uTNSpQJHylpAw== @@ -2165,16 +2165,11 @@ acorn@^5.2.1, acorn@^5.5.3: resolved "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== -acorn@^6.0.1, acorn@^6.0.4, acorn@^6.0.7: +acorn@^6.0.1, acorn@^6.0.4: version "6.3.0" resolved "https://registry.npmjs.org/acorn/-/acorn-6.3.0.tgz#0087509119ffa4fc0a0041d1e93a417e68cb856e" integrity sha512-/czfa8BwS88b9gWQVhc8eknunSA2DoJpJyTQkhheIf5E48u1N0R4q/YxxsAeqRrmK9TQ/uYfgLDfZo91UlANIA== -acorn@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/acorn/-/acorn-7.0.0.tgz#26b8d1cd9a9b700350b71c0905546f64d1284e7a" - integrity sha512-PaF/MduxijYYt7unVGRuds1vBC9bFxbNf+VWqhOClfdgy7RlVkQqt610ig1/yxTgsDIfW1cWDel5EBbOy3jdtQ== - acorn@^7.0.0: version "7.1.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c" @@ -2217,7 +2212,7 @@ airbnb-prop-types@^2.13.2: prop-types-exact "^1.2.0" react-is "^16.9.0" -ajv@^6.10.2, ajv@^6.5.5, ajv@^6.9.1: +ajv@^6.10.0, ajv@^6.10.2, ajv@^6.5.5: version "6.10.2" resolved "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw== @@ -2232,11 +2227,6 @@ amdefine@>=0.0.4: resolved "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU= -ansi-colors@3.2.3: - version "3.2.3" - resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz#57d35b8686e851e2cc04c403f1c00203976a1813" - integrity sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw== - ansi-colors@3.2.3: version "3.2.3" resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.3.tgz#57d35b8686e851e2cc04c403f1c00203976a1813" @@ -2753,11 +2743,6 @@ browser-stdout@1.3.0: resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" integrity sha1-81HTKWnTL6XXpVZxVCY9korjvR8= -browser-stdout@1.3.1: - version "1.3.1" - resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" - integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== - browser-stdout@1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" @@ -4409,10 +4394,10 @@ escodegen@~1.1.0: optionalDependencies: source-map "~0.1.30" -eslint-config-prettier@4.3.0: - version "4.3.0" - resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-4.3.0.tgz#c55c1fcac8ce4518aeb77906984e134d9eb5a4f0" - integrity sha512-sZwhSTHVVz78+kYD3t5pCWSYEdVSBR0PXnwjDRsUs8ytIrK8PLXw+6FKp8r3Z7rx4ZszdetWlXYKOHoUrrwPlA== +eslint-config-prettier@6.3.0: + version "6.3.0" + resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.3.0.tgz#e73b48e59dc49d950843f3eb96d519e2248286a3" + integrity sha512-EWaGjlDAZRzVFveh2Jsglcere2KK5CJBhkNSa1xs3KfMUGdRiT7lG089eqPdvlzWHpAqaekubOsOMu8W8Yk71A== dependencies: get-stdin "^6.0.0" @@ -4439,17 +4424,17 @@ eslint-plugin-babel@5.3.0: dependencies: eslint-rule-composer "^0.3.0" -eslint-plugin-dependencies@2.4.0: - version "2.4.0" - resolved "https://registry.npmjs.org/eslint-plugin-dependencies/-/eslint-plugin-dependencies-2.4.0.tgz#e0d3f32c097281a8afd6c6bef7bb025585e92d6f" - integrity sha512-IaW2phNpktrok2eDziZLYxmNaGysXjNj6NVji7LEv/qagHG2oshsmV+mUSxAGG5Jv9seuRBdX1YXEIaNlhkFJg== +eslint-plugin-flowtype@4.3.0: + version "4.3.0" + resolved "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-4.3.0.tgz#06d0837ac341caf369e7e6dbb112dd7fd21acf17" + integrity sha512-elvqoadMHnYqSYN1YXn02DR7SFW8Kc2CLe8na3m2GdQPQhIY+BgCd2quVJ1AbW3aO0zcyE9loVJ7Szy8A/xlMA== dependencies: lodash "^4.17.15" -eslint-plugin-flowtype@3.10.3: - version "3.10.3" - resolved "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-3.10.3.tgz#4a249e2fa98679d87cddbc00e22241e2466abe2e" - integrity sha512-b1OzI5drhiDmIG52jiZVR7IWQkiwN1vLD+VqvYuLnpzGBwfdw/mjdXz+qN7XN1IVKQ6pUSV0t4F9TxKoJNkpRA== +eslint-plugin-import@^2.18.2: + version "2.18.2" + resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.18.2.tgz#02f1180b90b077b33d447a17a2326ceb400aceb6" + integrity sha512-5ohpsHAiUBRNaBWAF08izwUGlbrJoJJ+W9/TBwsGoR1MnlgfwMIKrFeSjWbt6moabiXW9xNvtFz+97KHRfI4HQ== dependencies: array-includes "^3.0.3" contains-path "^0.1.0" @@ -4468,10 +4453,10 @@ eslint-plugin-prefer-object-spread@1.2.1: resolved "https://registry.npmjs.org/eslint-plugin-prefer-object-spread/-/eslint-plugin-prefer-object-spread-1.2.1.tgz#27fb91853690cceb3ae6101d9c8aecc6a67a402c" integrity sha1-J/uRhTaQzOs65hAdnIrsxqZ6QCw= -eslint-plugin-react@7.13.0: - version "7.13.0" - resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.13.0.tgz#bc13fd7101de67996ea51b33873cd9dc2b7e5758" - integrity sha512-uA5LrHylu8lW/eAH3bEQe9YdzpPaFd9yAJTwTi/i/BKTD7j6aQMKVAdGM/ML72zD6womuSK7EiGtMKuK06lWjQ== +eslint-plugin-react@7.14.3: + version "7.14.3" + resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.14.3.tgz#911030dd7e98ba49e1b2208599571846a66bdf13" + integrity sha512-EzdyyBWC4Uz2hPYBiEJrKCUi2Fn+BJ9B/pJQcjw5X+x/H2Nm59S4MJIvL4O5NEE0+WbnQwEBxWY03oUk+Bc3FA== dependencies: array-includes "^3.0.3" doctrine "^2.1.0" @@ -4488,14 +4473,6 @@ eslint-rule-composer@^0.3.0: resolved "https://registry.npmjs.org/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz#79320c927b0c5c0d3d3d2b76c8b4a488f25bbaf9" integrity sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg== -eslint-scope@^4.0.3: - version "4.0.3" - resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" - integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== - dependencies: - esrecurse "^4.1.0" - estraverse "^4.1.1" - eslint-scope@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.0.0.tgz#e87c8887c73e8d1ec84f1ca591645c358bfc8fb9" @@ -4504,7 +4481,7 @@ eslint-scope@^5.0.0: esrecurse "^4.1.0" estraverse "^4.1.1" -eslint-utils@^1.3.1: +eslint-utils@^1.4.2: version "1.4.2" resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.2.tgz#166a5180ef6ab7eb462f162fd0e6f2463d7309ab" integrity sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q== @@ -4516,10 +4493,10 @@ eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0: resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== -eslint@^5.16.0: - version "5.16.0" - resolved "https://registry.npmjs.org/eslint/-/eslint-5.16.0.tgz#a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea" - integrity sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg== +eslint@^6.4.0: + version "6.5.1" + resolved "https://registry.npmjs.org/eslint/-/eslint-6.5.1.tgz#828e4c469697d43bb586144be152198b91e96ed6" + integrity sha512-32h99BoLYStT1iq1v2P9uwpyznQ4M2jRiFB6acitKz52Gqn+vPaMDUTB1bYi1WN4Nquj2w+t+bimYUG83DC55A== dependencies: "@babel/code-frame" "^7.0.0" ajv "^6.10.0" @@ -4559,10 +4536,10 @@ eslint@^5.16.0: text-table "^0.2.0" v8-compile-cache "^2.0.3" -espree@^5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a" - integrity sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A== +espree@^6.1.1: + version "6.1.1" + resolved "https://registry.npmjs.org/espree/-/espree-6.1.1.tgz#7f80e5f7257fc47db450022d723e356daeb1e5de" + integrity sha512-EYbr8XZUhWbYCqQRW0duU5LxzL5bETN6AjKBGy1302qqzPaCH10QbRg3Wvco79Z8x9WbiE8HYB4e75xl6qUYvQ== dependencies: acorn "^7.0.0" acorn-jsx "^5.0.2" @@ -5684,11 +5661,6 @@ hash.js@^1.0.0, hash.js@^1.0.3: inherits "^2.0.3" minimalistic-assert "^1.0.1" -he@1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" - integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== - he@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" @@ -5982,7 +5954,7 @@ inline-source-map@~0.6.0: dependencies: source-map "~0.5.3" -inquirer@^6.2.0, inquirer@^6.2.2: +inquirer@^6.2.0, inquirer@^6.4.1: version "6.5.2" resolved "https://registry.npmjs.org/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ== @@ -6825,7 +6797,7 @@ js-levenshtein@^1.1.3: resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-yaml@3.13.1, js-yaml@^3.10.0, js-yaml@^3.13.0, js-yaml@^3.13.1: +js-yaml@3.13.1, js-yaml@^3.10.0, js-yaml@^3.13.1: version "3.13.1" resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== @@ -7301,7 +7273,7 @@ lodash@4.17.14: resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba" integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw== -lodash@^4.15.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.4, lodash@^4.2.1: +lodash@^4.15.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.4, lodash@^4.2.1: version "4.17.15" resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== @@ -8640,11 +8612,6 @@ path-is-absolute@1.0.1, path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= -path-is-inside@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" - integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= - path-key@^2.0.0, path-key@^2.0.1: version "2.0.1" resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" @@ -9609,7 +9576,7 @@ resolve@1.1.7: resolved "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= -resolve@1.x, resolve@^1.1.4, resolve@^1.1.6, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.4.0, resolve@^1.8.1: +resolve@1.x, resolve@^1.1.4, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.4.0, resolve@^1.5.0, resolve@^1.8.1: version "1.12.0" resolved "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w== @@ -9792,7 +9759,7 @@ semver@6.2.0: resolved "https://registry.npmjs.org/semver/-/semver-6.2.0.tgz#4d813d9590aaf8a9192693d6c85b9344de5901db" integrity sha512-jdFC1VdUGT/2Scgbimf7FSx9iJLXoqfglSF+gJeuNWVpiE37OIbc1jywR/GJyFdz3mnkz2/id0L0J/cr0izR5A== -semver@^6.0.0, semver@^6.2.0, semver@^6.3.0: +semver@^6.0.0, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: version "6.3.0" resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== @@ -10364,14 +10331,14 @@ strip-indent@^2.0.0: resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= -strip-json-comments@2.0.1, strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: +strip-json-comments@2.0.1, strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= strip-json-comments@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7" integrity sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw== strong-log-transformer@^2.0.0: @@ -10983,7 +10950,7 @@ uuid@^3.0.1, uuid@^3.3.2: v8-compile-cache@^2.0.3: version "2.1.0" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e" + resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e" integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g== v8flags@^3.1.1: